Change button from int to uint32_t
authorDaniel Stone <daniel@fooishbar.org>
Fri, 4 May 2012 10:21:55 +0000 (11:21 +0100)
committerKristian Høgsberg <krh@bitplanet.net>
Mon, 7 May 2012 16:57:11 +0000 (12:57 -0400)
Since you can't really have a negative button number.

Signed-off-by: Daniel Stone <daniel@fooishbar.org>
13 files changed:
clients/clickdot.c
clients/desktop-shell.c
clients/dnd.c
clients/eventdemo.c
clients/flower.c
clients/gears.c
clients/resizor.c
clients/tablet-shell.c
clients/terminal.c
clients/view.c
clients/window.c
clients/window.h
src/compositor-x11.c

index 1930dfe..6d70618 100644 (file)
@@ -110,7 +110,7 @@ key_handler(struct window *window, struct input *input, uint32_t time,
 static void
 button_handler(struct widget *widget,
               struct input *input, uint32_t time,
-              int button, uint32_t state, void *data)
+              uint32_t button, uint32_t state, void *data)
 {
        struct clickdot *clickdot = data;
 
index 0a6341a..3617cf9 100644 (file)
@@ -256,7 +256,7 @@ panel_launcher_leave_handler(struct widget *widget,
 static void
 panel_launcher_button_handler(struct widget *widget,
                              struct input *input, uint32_t time,
-                             int button, uint32_t state, void *data)
+                             uint32_t button, uint32_t state, void *data)
 {
        struct panel_launcher *launcher;
 
@@ -269,7 +269,7 @@ panel_launcher_button_handler(struct widget *widget,
 static void
 panel_button_handler(struct widget *widget,
                     struct input *input, uint32_t time,
-                    int button, uint32_t state, void *data)
+                    uint32_t button, uint32_t state, void *data)
 {
        struct panel *panel = data;
 
@@ -481,7 +481,7 @@ unlock_dialog_redraw_handler(struct widget *widget, void *data)
 static void
 unlock_dialog_button_handler(struct widget *widget,
                             struct input *input, uint32_t time,
-                            int button, uint32_t state, void *data)
+                            uint32_t button, uint32_t state, void *data)
 {
        struct unlock_dialog *dialog = data;
        struct desktop *desktop = dialog->desktop;
index 1d1f592..54fc1f2 100644 (file)
@@ -361,7 +361,7 @@ create_drag_cursor(struct dnd_drag *dnd_drag,
 static void
 dnd_button_handler(struct widget *widget,
                   struct input *input, uint32_t time,
-                  int button, uint32_t state, void *data)
+                  uint32_t button, uint32_t state, void *data)
 {
        struct dnd *dnd = data;
        int32_t x, y;
index bda9630..6ecb7d7 100644 (file)
@@ -211,7 +211,7 @@ key_handler(struct window *window, struct input *input, uint32_t time,
  */
 static void
 button_handler(struct widget *widget, struct input *input, uint32_t time,
-              int button, uint32_t state, void *data)
+              uint32_t button, uint32_t state, void *data)
 {
        int32_t x, y;
 
index 7e8cba7..0827c14 100644 (file)
@@ -142,7 +142,7 @@ motion_handler(struct widget *widget, struct input *input,
 static void
 button_handler(struct widget *widget,
               struct input *input, uint32_t time,
-              int button, uint32_t state, void *data)
+              uint32_t button, uint32_t state, void *data)
 {
        struct flower *flower = data;
 
index 4dea8f2..9d0fba1 100644 (file)
@@ -251,7 +251,7 @@ motion_handler(struct widget *widget, struct input *input,
 
 static void
 button_handler(struct widget *widget, struct input *input,
-               uint32_t time, int button, uint32_t state, void *data)
+               uint32_t time, uint32_t button, uint32_t state, void *data)
 {
        struct gears *gears = data;
 
index 37c400b..dfbbf59 100644 (file)
@@ -178,7 +178,7 @@ show_menu(struct resizor *resizor, struct input *input, uint32_t time)
 static void
 button_handler(struct widget *widget,
               struct input *input, uint32_t time,
-              int button, uint32_t state, void *data)
+              uint32_t button, uint32_t state, void *data)
 {
        struct resizor *resizor = data;
 
index 9ba9701..3797f88 100644 (file)
@@ -217,7 +217,7 @@ lockscreen_draw(struct widget *widget, void *data)
 static void
 lockscreen_button_handler(struct widget *widget,
                          struct input *input, uint32_t time,
-                         int button, uint32_t state, void *data)
+                         uint32_t button, uint32_t state, void *data)
 {
        struct lockscreen *lockscreen = data;
 
index 659763f..fd6fb5e 100644 (file)
@@ -2213,7 +2213,7 @@ keyboard_focus_handler(struct window *window,
 static void
 button_handler(struct widget *widget,
               struct input *input, uint32_t time,
-              int button, uint32_t state, void *data)
+              uint32_t button, uint32_t state, void *data)
 {
        struct terminal *terminal = data;
 
index c17bb12..1937fc1 100644 (file)
@@ -138,7 +138,7 @@ view_page_down(struct view *view)
 
 static void
 button_handler(struct widget *widget, struct input *input, uint32_t time,
-               int button, uint32_t state, void *data)
+               uint32_t button, uint32_t state, void *data)
 {
         struct view *view = data;
 
index ce67e69..2657140 100644 (file)
@@ -1220,7 +1220,7 @@ frame_motion_handler(struct widget *widget,
 static void
 frame_button_handler(struct widget *widget,
                     struct input *input, uint32_t time,
-                    int button, uint32_t state, void *data)
+                    uint32_t button, uint32_t state, void *data)
 
 {
        struct frame *frame = data;
@@ -2363,7 +2363,7 @@ menu_leave_handler(struct widget *widget, struct input *input, void *data)
 static void
 menu_button_handler(struct widget *widget,
                    struct input *input, uint32_t time,
-                   int button, uint32_t state, void *data)
+                   uint32_t button, uint32_t state, void *data)
 
 {
        struct menu *menu = data;
index d2abb3d..1dd5f0c 100644 (file)
@@ -190,7 +190,7 @@ typedef int (*widget_motion_handler_t)(struct widget *widget,
                                       int32_t x, int32_t y, void *data);
 typedef void (*widget_button_handler_t)(struct widget *widget,
                                        struct input *input, uint32_t time,
-                                       int button, uint32_t state,
+                                       uint32_t button, uint32_t state,
                                        void *data);
 
 struct window *
index 304a4d5..d363572 100644 (file)
@@ -485,7 +485,7 @@ x11_compositor_deliver_button_event(struct x11_compositor *c,
 {
        xcb_button_press_event_t *button_event =
                (xcb_button_press_event_t *) event;
-       int button;
+       uint32_t button;
 
        switch (button_event->detail) {
        default: