]> git.mdlowis.com Git - proto/labwc.git/commitdiff
Fix coding style following 824282dd
authorJohan Malm <jgm323@gmail.com>
Wed, 25 Aug 2021 18:59:49 +0000 (19:59 +0100)
committerJohan Malm <jgm323@gmail.com>
Wed, 25 Aug 2021 18:59:49 +0000 (19:59 +0100)
include/labwc.h
src/cursor.c
src/desktop.c
src/keyboard.c
src/server.c

index 7714411cc27dcdf78a888c613184f6c7ec388d3b..141b0749b5a68b0b6a1f5edc3f4377f8bbb98c24 100644 (file)
@@ -382,11 +382,11 @@ void action(struct server *server, const char *action, const char *command);
 /* update onscreen display 'alt-tab' texture */
 void osd_update(struct server *server);
 
-/* wlroots "input inhibitor" extension (required for swaylock) blocks
+/* 
+ * wlroots "input inhibitor" extension (required for swaylock) blocks
  * any client other than the requesting client from receiving events
  */
 bool input_inhibit_blocks_surface(struct seat *seat,
-                                 struct wl_resource *resource);
-
+       struct wl_resource *resource);
 
 #endif /* __LABWC_H */
index 7070959372c489d002b0bc8f2cf4e2b1261a0a28..126b84f21eccce981808392e22b8d69d018b6305 100644 (file)
@@ -105,10 +105,10 @@ set_cursor(struct server *server, const char *cursor_name)
                server->seat.xcursor_manager, cursor_name, server->seat.cursor);
 }
 
-bool input_inhibit_blocks_surface(struct seat *seat,
-                                 struct wl_resource *resource)
+bool
+input_inhibit_blocks_surface(struct seat *seat, struct wl_resource *resource)
 {
-       struct wl_client * inhibiting_client =
+       struct wl_client *inhibiting_client =
                seat->active_client_while_inhibited;
        return (inhibiting_client != NULL) &&
                inhibiting_client != wl_resource_get_client(resource);
@@ -171,7 +171,7 @@ process_cursor_motion(struct server *server, uint32_t time)
        damage_all_outputs(server);
 
        if (surface &&
-           ! input_inhibit_blocks_surface(&server->seat, surface->resource)) {
+           !input_inhibit_blocks_surface(&server->seat, surface->resource)) {
                bool focus_changed =
                        wlr_seat->pointer_state.focused_surface != surface;
                /*
@@ -419,9 +419,11 @@ cursor_init(struct seat *seat)
        wl_signal_add(&seat->cursor->events.frame, &seat->cursor_frame);
 
        seat->request_cursor.notify = request_cursor_notify;
-       wl_signal_add(&seat->seat->events.request_set_cursor, &seat->request_cursor);
+       wl_signal_add(&seat->seat->events.request_set_cursor,
+               &seat->request_cursor);
        seat->request_set_selection.notify = request_set_selection_notify;
-       wl_signal_add(&seat->seat->events.request_set_selection, &seat->request_set_selection);
+       wl_signal_add(&seat->seat->events.request_set_selection,
+               &seat->request_set_selection);
 
        seat->request_set_primary_selection.notify =
                request_set_primary_selection_notify;
index 4c122fb0f27445e4f654311a07b5822d615d93bf..ad3edcdac2003980d22dac9822449fcde7b5bd2d 100644 (file)
@@ -76,8 +76,9 @@ desktop_set_focus_view_only(struct seat *seat, struct view *view)
        if (!view || view->minimized || !view->mapped) {
                return;
        }
-       if(input_inhibit_blocks_surface(seat, view->surface->resource))
-           return;
+       if (input_inhibit_blocks_surface(seat, view->surface->resource)) {
+               return;
+       }
 
        struct wlr_surface *prev_surface;
        prev_surface = seat->seat->keyboard_state.focused_surface;
@@ -99,8 +100,9 @@ desktop_focus_view(struct seat *seat, struct view *view)
                seat_focus_surface(seat, NULL);
                return;
        }
-       if(input_inhibit_blocks_surface(seat, view->surface->resource))
-           return;
+       if (input_inhibit_blocks_surface(seat, view->surface->resource)) {
+               return;
+       }
 
        if (view->minimized) {
                /* this will unmap and then focus */
@@ -131,7 +133,7 @@ desktop_focus_view(struct seat *seat, struct view *view)
 
 /*
  * Some xwayland apps produce unmapped surfaces on startup and also leave
- * some unmapped surfaces kicking around on 'close' (for example leafpad's
+ * some unmapped surfaces kicking around on 'close' (for example leafpad's
  * "about" dialogue). Whilst this is not normally a problem, we have to be
  * careful when cycling between views. The only views we should focus are
  * those that are already mapped and those that have been minimized.
index 3111a97903a8903a08d6440ce3b7cf98375a5966..ebf9c99ea11da67b3756299908a509f39d16917f 100644 (file)
@@ -43,7 +43,7 @@ handle_keybinding(struct server *server, uint32_t modifiers, xkb_keysym_t sym)
 
 static bool
 handle_compositor_keybindings(struct wl_listener *listener,
-                             struct wlr_event_keyboard_key *event)
+               struct wlr_event_keyboard_key *event)
 {
        struct seat *seat = wl_container_of(listener, seat, keyboard_key);
        struct server *server = seat->server;
@@ -66,7 +66,7 @@ handle_compositor_keybindings(struct wl_listener *listener,
                        /* end cycle */
                        desktop_focus_view(&server->seat, server->cycle_view);
                        server->cycle_view = NULL;
-                       /* XXX should we handled=true here? */
+                       /* TODO should we handled=true here? */
                } else if (event->state == WL_KEYBOARD_KEY_STATE_PRESSED) {
                        /* cycle to next */
                        server->cycle_view =
@@ -96,13 +96,10 @@ handle_compositor_keybindings(struct wl_listener *listener,
        }
        return handled;
 }
+
 static void
 keyboard_key_notify(struct wl_listener *listener, void *data)
 {
-        /* XXX need to check if input inhibited before doing any
-        * compositor bindings
-        */
-
        /* This event is raised when a key is pressed or released. */
        struct seat *seat = wl_container_of(listener, seat, keyboard_key);
        struct server *server = seat->server;
@@ -112,9 +109,10 @@ keyboard_key_notify(struct wl_listener *listener, void *data)
 
        bool handled = false;
 
-       if(!seat->active_client_while_inhibited)
-               /* ignore labwc keybindings if input is inhibited */
+       /* ignore labwc keybindings if input is inhibited */
+       if (!seat->active_client_while_inhibited) {
                handled = handle_compositor_keybindings(listener, event);
+       }
 
        if (!handled) {
                wlr_seat_set_keyboard(wlr_seat, device);
index 4542264aa39ca49655c8fa56e5137fac106a9127..c66a2660c68371bb1a05367b15f8a0635a155e91 100644 (file)
@@ -79,62 +79,68 @@ drop_permissions(void)
        }
 }
 
-static void seat_inhibit_input(struct seat *seat,  struct wl_client *active_client)
+static void
+seat_inhibit_input(struct seat *seat,  struct wl_client *active_client)
 {
        seat->active_client_while_inhibited = active_client;
 
-       if(seat->focused_layer &&
-          (wl_resource_get_client(seat->focused_layer->resource) !=
-           active_client))
-       {
+       if (seat->focused_layer &&
+           (wl_resource_get_client(seat->focused_layer->resource) !=
+           active_client)) {
                seat_set_focus_layer(seat, NULL);
        }
-       struct wlr_surface * previous_kb_surface = seat->seat->keyboard_state.focused_surface;
+       struct wlr_surface *previous_kb_surface =
+               seat->seat->keyboard_state.focused_surface;
        if (previous_kb_surface &&
            wl_resource_get_client(previous_kb_surface->resource) != active_client) {
                seat_focus_surface(seat, NULL);   /* keyboard focus */
        }
 
-       struct wlr_seat_client * previous_ptr_client = seat->seat->pointer_state.focused_client;
+       struct wlr_seat_client *previous_ptr_client =
+               seat->seat->pointer_state.focused_client;
        if (previous_ptr_client &&
            (previous_ptr_client->client != active_client)) {
                wlr_seat_pointer_clear_focus(seat->seat);
        }
 }
 
-static void seat_disinhibit_input(struct seat *seat)
+static void
+seat_disinhibit_input(struct seat *seat)
 {
        seat->active_client_while_inhibited = NULL;
-       // Triggers a refocus of the topmost surface layer if necessary
-       // TODO: Make layer surface focus per-output based on cursor position
 
+       /*
+        * Triggers a refocus of the topmost surface layer if necessary
+        * TODO: Make layer surface focus per-output based on cursor position
+        */
        struct output *output;
-       wl_list_for_each(output, &seat->server->outputs, link)
+       wl_list_for_each(output, &seat->server->outputs, link) {
                arrange_layers(output);
+       }
 }
 
 
 
-static void handle_input_inhibit(struct wl_listener *listener, void *data) {
+static void
+handle_input_inhibit(struct wl_listener *listener, void *data)
+{
        wlr_log(WLR_INFO, "activate input inhibit");
 
-       struct server *server = wl_container_of(
-           listener, server, input_inhibit_activate);
-
-       seat_inhibit_input(&server->seat,
-           server->input_inhibit->active_client);
+       struct server *server =
+               wl_container_of(listener, server, input_inhibit_activate);
+       seat_inhibit_input(&server->seat, server->input_inhibit->active_client);
 }
 
-static void handle_input_disinhibit(struct wl_listener *listener, void *data) {
+static void
+handle_input_disinhibit(struct wl_listener *listener, void *data)
+{
        wlr_log(WLR_INFO, "deactivate input inhibit");
 
-       struct server *server = wl_container_of(
-           listener, server, input_inhibit_deactivate);
-
+       struct server *server =
+               wl_container_of(listener, server, input_inhibit_deactivate);
        seat_disinhibit_input(&server->seat);
 }
 
-
 void
 server_init(struct server *server)
 {
@@ -260,17 +266,19 @@ server_init(struct server *server)
        wlr_data_control_manager_v1_create(server->wl_display);
        wlr_gamma_control_manager_v1_create(server->wl_display);
 
-       // struct wlr_input_inhibit_manager *input_inhibit_mgr = NULL;
-       server->input_inhibit = wlr_input_inhibit_manager_create(server->wl_display);
+       server->input_inhibit =
+               wlr_input_inhibit_manager_create(server->wl_display);
        if (!server->input_inhibit) {
-               wlr_log(WLR_ERROR, "unable to create the input inhibit manager");
+               wlr_log(WLR_ERROR, "unable to create input inhibit manager");
                exit(EXIT_FAILURE);
        }
 
-       wl_signal_add(&server->input_inhibit->events.activate, &server->input_inhibit_activate);
+       wl_signal_add(&server->input_inhibit->events.activate,
+               &server->input_inhibit_activate);
        server->input_inhibit_activate.notify = handle_input_inhibit;
 
-       wl_signal_add(&server->input_inhibit->events.deactivate, &server->input_inhibit_deactivate);
+       wl_signal_add(&server->input_inhibit->events.deactivate,
+               &server->input_inhibit_deactivate);
        server->input_inhibit_deactivate.notify = handle_input_disinhibit;
 
        server->foreign_toplevel_manager =