summaryrefslogtreecommitdiff
path: root/atspi/atspi-registry.c
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@gnome.org>2022-12-06 20:44:48 -0600
committerFederico Mena Quintero <federico@gnome.org>2022-12-06 20:50:13 -0600
commitb10fcf21b1ef49dd3d6297ac657434ece3b23578 (patch)
treed560f8449f3ae75fea343887dcb6d5f4df7b434c /atspi/atspi-registry.c
parentbf4d71a38b970699f63ce7b701e9bf4c9d31f717 (diff)
downloadat-spi2-core-b10fcf21b1ef49dd3d6297ac657434ece3b23578.tar.gz
Reformat all the *.[ch] files with clang-format
I ran this on each directory with C files: clang-format -i *.[ch] "-i" is the in-place option. I also adjusted the order of #includes for some files which failed to build after that: Clang-format reorders blocks of #include directives alphabetically, but they can be grouped and separated by blank lines. If there is a blank line between blocks, like #include "zork.h" #include "bar.h" #include "foo.h" then it will not put zork.h after the other two. The last two header files will be sorted alphabetically. We can adjust the formatting of chunks of code by hand with comments like these: /* clang-format off */ this code { is, formatted, by, hand; } /* clang-format on */ See https://clang.llvm.org/docs/ClangFormat.html for the general manual and https://clang.llvm.org/docs/ClangFormatStyleOptions.html for the style options and the comments described above.
Diffstat (limited to 'atspi/atspi-registry.c')
-rw-r--r--atspi/atspi-registry.c131
1 files changed, 67 insertions, 64 deletions
diff --git a/atspi/atspi-registry.c b/atspi/atspi-registry.c
index 1ec36599..19cb7e2e 100644
--- a/atspi/atspi-registry.c
+++ b/atspi/atspi-registry.c
@@ -41,9 +41,9 @@
typedef struct
{
AtspiDeviceListener *listener;
- GArray *key_set;
- AtspiKeyMaskType modmask;
- AtspiKeyEventMask event_types;
+ GArray *key_set;
+ AtspiKeyMaskType modmask;
+ AtspiKeyEventMask event_types;
gint sync_type;
} DeviceListenerEntry;
@@ -53,7 +53,7 @@ static GList *device_listeners;
* atspi_get_desktop_count:
*
* Gets the number of virtual desktops.
- * NOTE: multiple virtual desktops are not implemented yet; as a
+ * NOTE: multiple virtual desktops are not implemented yet; as a
* consequence, this function always returns 1.
*
* Returns: a #gint indicating the number of active virtual desktops.
@@ -76,10 +76,11 @@ atspi_get_desktop_count ()
* Returns: (transfer full): a pointer to the @i-th virtual desktop's
* #AtspiAccessible representation.
**/
-AtspiAccessible*
+AtspiAccessible *
atspi_get_desktop (gint i)
{
- if (i != 0) return NULL;
+ if (i != 0)
+ return NULL;
return _atspi_ref_accessible (atspi_bus_registry, atspi_path_root);
}
@@ -116,19 +117,19 @@ notify_keystroke_listener (DeviceListenerEntry *e)
gchar *path = _atspi_device_listener_get_path (e->listener);
dbus_uint32_t d_modmask = e->modmask;
dbus_uint32_t d_event_types = e->event_types;
- AtspiEventListenerMode listener_mode;
- gboolean retval = FALSE;
+ AtspiEventListenerMode listener_mode;
+ gboolean retval = FALSE;
DBusError d_error;
listener_mode.synchronous =
- (dbus_bool_t) ((e->sync_type & ATSPI_KEYLISTENER_SYNCHRONOUS)!=0);
+ (dbus_bool_t) ((e->sync_type & ATSPI_KEYLISTENER_SYNCHRONOUS) != 0);
listener_mode.preemptive =
- (dbus_bool_t) ((e->sync_type & ATSPI_KEYLISTENER_CANCONSUME)!=0);
+ (dbus_bool_t) ((e->sync_type & ATSPI_KEYLISTENER_CANCONSUME) != 0);
listener_mode.global =
- (dbus_bool_t) ((e->sync_type & ATSPI_KEYLISTENER_ALL_WINDOWS)!=0);
+ (dbus_bool_t) ((e->sync_type & ATSPI_KEYLISTENER_ALL_WINDOWS) != 0);
dbus_error_init (&d_error);
- dbind_method_call_reentrant (_atspi_bus(), atspi_bus_registry,
+ dbind_method_call_reentrant (_atspi_bus (), atspi_bus_registry,
atspi_path_dec, atspi_interface_dec,
"RegisterKeystrokeListener", &d_error,
"oa(iisi)uu(bbb)=>b", path, e->key_set,
@@ -194,24 +195,24 @@ unregister_listener (gpointer data, GObject *object)
* @sync_type: an #AtspiKeyListenerSyncType parameter indicating
* the behavior of the notification/listener transaction.
* @error: (allow-none): a pointer to a %NULL #GError pointer, or %NULL
- *
+ *
* Registers a listener for keystroke events, either pre-emptively for
* all windows (%ATSPI_KEYLISTENER_ALL_WINDOWS),
* non-preemptively (%ATSPI_KEYLISTENER_NOSYNC), or
* pre-emptively at the toolkit level (%ATSPI_KEYLISTENER_CANCONSUME).
* If ALL_WINDOWS or CANCONSUME are used, the event is consumed
- * upon receipt if one of @listener's callbacks returns %TRUE
+ * upon receipt if one of @listener's callbacks returns %TRUE
* (other sync_type values may be available in the future).
*
* Returns: %TRUE if successful, otherwise %FALSE.
**/
gboolean
-atspi_register_keystroke_listener (AtspiDeviceListener *listener,
- GArray *key_set,
- AtspiKeyMaskType modmask,
- AtspiKeyEventMask event_types,
- AtspiKeyListenerSyncType sync_type,
- GError **error)
+atspi_register_keystroke_listener (AtspiDeviceListener *listener,
+ GArray *key_set,
+ AtspiKeyMaskType modmask,
+ AtspiKeyEventMask event_types,
+ AtspiKeyListenerSyncType sync_type,
+ GError **error)
{
DeviceListenerEntry *e;
@@ -230,18 +231,18 @@ atspi_register_keystroke_listener (AtspiDeviceListener *listener,
e->key_set->len = key_set->len;
for (i = 0; i < key_set->len; i++)
{
- AtspiKeyDefinition *kd = ((AtspiKeyDefinition *) key_set->data) + i;
- AtspiKeyDefinition *d_kd = ((AtspiKeyDefinition *) e->key_set->data) + i;
+ AtspiKeyDefinition *kd = ((AtspiKeyDefinition *) key_set->data) + i;
+ AtspiKeyDefinition *d_kd = ((AtspiKeyDefinition *) e->key_set->data) + i;
d_kd->keycode = kd->keycode;
- d_kd->keysym = kd->keysym;
- if (kd->keystring)
- {
- d_kd->keystring = kd->keystring;
- }
- else
+ d_kd->keysym = kd->keysym;
+ if (kd->keystring)
+ {
+ d_kd->keystring = kd->keystring;
+ }
+ else
{
- d_kd->keystring = "";
- }
+ d_kd->keystring = "";
+ }
}
}
else
@@ -276,10 +277,10 @@ atspi_register_keystroke_listener (AtspiDeviceListener *listener,
**/
gboolean
atspi_deregister_keystroke_listener (AtspiDeviceListener *listener,
- GArray *key_set,
- AtspiKeyMaskType modmask,
- AtspiKeyEventMask event_types,
- GError **error)
+ GArray *key_set,
+ AtspiKeyMaskType modmask,
+ AtspiKeyEventMask event_types,
+ GError **error)
{
GArray *d_key_set;
gchar *path;
@@ -305,18 +306,18 @@ atspi_deregister_keystroke_listener (AtspiDeviceListener *listener,
d_key_set->len = key_set->len;
for (i = 0; i < key_set->len; ++i)
{
- AtspiKeyDefinition *kd = ((AtspiKeyDefinition *) key_set->data) + i;
- AtspiKeyDefinition *d_kd = ((AtspiKeyDefinition *) d_key_set->data) + i;
+ AtspiKeyDefinition *kd = ((AtspiKeyDefinition *) key_set->data) + i;
+ AtspiKeyDefinition *d_kd = ((AtspiKeyDefinition *) d_key_set->data) + i;
d_kd->keycode = kd->keycode;
- d_kd->keysym = kd->keysym;
- if (kd->keystring)
- {
- d_kd->keystring = kd->keystring;
- }
- else
+ d_kd->keysym = kd->keysym;
+ if (kd->keystring)
{
- d_kd->keystring = "";
- }
+ d_kd->keystring = kd->keystring;
+ }
+ else
+ {
+ d_kd->keystring = "";
+ }
}
}
else
@@ -324,7 +325,7 @@ atspi_deregister_keystroke_listener (AtspiDeviceListener *listener,
d_key_set = g_array_sized_new (FALSE, TRUE, sizeof (AtspiKeyDefinition), 0);
}
- dbind_method_call_reentrant (_atspi_bus(), atspi_bus_registry,
+ dbind_method_call_reentrant (_atspi_bus (), atspi_bus_registry,
atspi_path_dec, atspi_interface_dec,
"DeregisterKeystrokeListener", &d_error,
"oa(iisi)uu", path, d_key_set, d_modmask,
@@ -339,9 +340,9 @@ atspi_deregister_keystroke_listener (AtspiDeviceListener *listener,
for (l = device_listeners; l;)
{
/* TODO: This code is all wrong / doesn't match what is in
- * deviceeventcontroller.c. It would be nice to deprecate these methods
- * in favor of methods that return an ID for the registration that can
- * be passed to a deregister function, for instance. */
+ * deviceeventcontroller.c. It would be nice to deprecate these methods
+ * in favor of methods that return an ID for the registration that can
+ * be passed to a deregister function, for instance. */
DeviceListenerEntry *e = l->data;
if (e->modmask == modmask && e->event_types == event_types)
{
@@ -366,9 +367,10 @@ atspi_deregister_keystroke_listener (AtspiDeviceListener *listener,
* Returns: Always returns %FALSE.
**/
gboolean
-atspi_register_device_event_listener (AtspiDeviceListener *listener,
- AtspiDeviceEventMask event_types,
- void *filter, GError **error)
+atspi_register_device_event_listener (AtspiDeviceListener *listener,
+ AtspiDeviceEventMask event_types,
+ void *filter,
+ GError **error)
{
/* See https://gitlab.gnome.org/GNOME/at-spi2-core/-/issues/94 for why this code is removed */
return FALSE;
@@ -388,7 +390,7 @@ atspi_register_device_event_listener (AtspiDeviceListener *listener,
**/
gboolean
atspi_deregister_device_event_listener (AtspiDeviceListener *listener,
- void *filter,
+ void *filter,
GError **error)
{
/* See https://gitlab.gnome.org/GNOME/at-spi2-core/-/issues/94 for why this code is removed */
@@ -426,23 +428,24 @@ using_mutter ()
**/
gboolean
atspi_generate_keyboard_event (glong keyval,
- const gchar *keystring,
- AtspiKeySynthType synth_type, GError **error)
+ const gchar *keystring,
+ AtspiKeySynthType synth_type,
+ GError **error)
{
dbus_uint32_t d_synth_type = synth_type;
dbus_int32_t d_keyval = keyval;
DBusError d_error;
if (using_mutter ())
- {
- if (_atspi_mutter_generate_keyboard_event (keyval, keystring, synth_type, error))
- return TRUE;
- }
+ {
+ if (_atspi_mutter_generate_keyboard_event (keyval, keystring, synth_type, error))
+ return TRUE;
+ }
dbus_error_init (&d_error);
if (!keystring)
keystring = "";
- dbind_method_call_reentrant (_atspi_bus(), atspi_bus_registry, atspi_path_dec, atspi_interface_dec, "GenerateKeyboardEvent", &d_error, "isu", d_keyval, keystring, d_synth_type);
+ dbind_method_call_reentrant (_atspi_bus (), atspi_bus_registry, atspi_path_dec, atspi_interface_dec, "GenerateKeyboardEvent", &d_error, "isu", d_keyval, keystring, d_synth_type);
if (dbus_error_is_set (&d_error))
{
g_warning ("GenerateKeyboardEvent failed: %s", d_error.message);
@@ -478,13 +481,13 @@ atspi_generate_mouse_event (glong x, glong y, const gchar *name, GError **error)
g_return_val_if_fail (name != NULL, FALSE);
if (using_mutter ())
- {
- if (_atspi_mutter_generate_mouse_event (x, y, name, error))
- return TRUE;
- }
+ {
+ if (_atspi_mutter_generate_mouse_event (x, y, name, error))
+ return TRUE;
+ }
dbus_error_init (&d_error);
- dbind_method_call_reentrant (_atspi_bus(), atspi_bus_registry,
+ dbind_method_call_reentrant (_atspi_bus (), atspi_bus_registry,
atspi_path_dec, atspi_interface_dec,
"GenerateMouseEvent", &d_error, "iis",
d_x, d_y, name);