]> git.sur5r.net Git - i3/i3/commitdiff
Correctly re-implement scrolling on window decorations
authorMichael Stapelberg <michael@stapelberg.de>
Fri, 13 May 2011 19:57:45 +0000 (21:57 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Fri, 13 May 2011 19:58:17 +0000 (21:58 +0200)
Got lost when refactoring the click handling in 24463718cc2ae6d44d75104bb8ade636985ff86c

Fixes: #390
src/click.c

index 2092b6e7224d41a6a06d65e9e6f625efa29001c1..74e5988547732b4af0c0f0f63a3b3bcd20f09e6e 100644 (file)
@@ -160,23 +160,35 @@ static int route_click(Con *con, xcb_button_press_event_t *event, bool mod_press
     /* get the floating con */
     Con *floatingcon = con_inside_floating(con);
     const bool proportional = (event->state & BIND_SHIFT);
+    const bool in_stacked = (con->parent->layout == L_STACKED || con->parent->layout == L_TABBED);
 
-    /* 1: focus this con */
-    con_focus(con);
+    /* 1: see if the user scrolled on the decoration of a stacked/tabbed con */
+    if (in_stacked &&
+        dest == CLICK_DECORATION &&
+        (event->detail == XCB_BUTTON_INDEX_4 ||
+         event->detail == XCB_BUTTON_INDEX_5)) {
+        DLOG("Scrolling on a window decoration\n");
+        orientation_t orientation = (con->parent->layout == L_STACKED ? VERT : HORIZ);
+        if (event->detail == XCB_BUTTON_INDEX_4)
+            tree_next('p', orientation);
+        else tree_next('n', orientation);
+        goto done;
+    }
 
-    const bool in_stacked = (con->parent->layout == L_STACKED || con->parent->layout == L_TABBED);
+    /* 2: focus this con */
+    con_focus(con);
 
-    /* 2: for floating containers, we also want to raise them on click */
+    /* 3: for floating containers, we also want to raise them on click */
     if (floatingcon != NULL) {
         floating_raise_con(floatingcon);
 
-        /* 3: floating_modifier plus left mouse button drags */
+        /* 4: floating_modifier plus left mouse button drags */
         if (mod_pressed && event->detail == 1) {
             floating_drag_window(floatingcon, event);
             return 1;
         }
 
-        /* 3: resize (floating) if this was a click on the left/right/bottom
+        /* 5: resize (floating) if this was a click on the left/right/bottom
          * border. also try resizing (tiling) if it was a click on the top
          * border, but continue if that does not work */
         if (mod_pressed && event->detail == 3) {
@@ -198,7 +210,7 @@ static int route_click(Con *con, xcb_button_press_event_t *event, bool mod_press
             return 1;
         }
 
-        /* 4: dragging, if this was a click on a decoration (which did not lead
+        /* 6: dragging, if this was a click on a decoration (which did not lead
          * to a resize) */
         if (!in_stacked && dest == CLICK_DECORATION) {
             floating_drag_window(floatingcon, event);
@@ -217,12 +229,12 @@ static int route_click(Con *con, xcb_button_press_event_t *event, bool mod_press
         goto done;
     }
 
-    /* 3: floating modifier pressed, initiate a resize */
+    /* 7: floating modifier pressed, initiate a resize */
     if (mod_pressed && event->detail == 3) {
         if (floating_mod_on_tiled_client(con, event))
             return 1;
     }
-    /* 4: otherwise, check for border/decoration clicks and resize */
+    /* 8: otherwise, check for border/decoration clicks and resize */
     else if (dest == CLICK_BORDER || dest == CLICK_DECORATION) {
         DLOG("Should trry resizing (tiling)\n");
         tiling_resize(con, event, dest);