]> Dogcows Code - chaz/tint2/commitdiff
merge change described in issue 122 (by jackp)
authorThierry Lorthiois <lorthiois@bbsoft.fr>
Fri, 28 Aug 2009 23:14:53 +0000 (23:14 +0000)
committerThierry Lorthiois <lorthiois@bbsoft.fr>
Fri, 28 Aug 2009 23:14:53 +0000 (23:14 +0000)
ChangeLog
src/panel.c
src/panel.h
src/tint.c

index ff5f65b42e408747f2177d5b161510aa7003fca8..92b13501ce8e32e4dcc9d1f96689d6e12fb6ff0d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-08-29
+- merge change described in issue 122 (by jackp)
+  made right click easier
+
 2009-08-28
 - add some HSB config
 
index 3bc5aa541c6ca1aba14bc293f532d6e5dbb852fa..0a43d7f833d6f8cbb2acbe7b9002616923e3f028 100644 (file)
@@ -38,6 +38,8 @@ int mouse_middle;
 int mouse_right;
 int mouse_scroll_up;
 int mouse_scroll_down;
+int mouse_tilt_left;
+int mouse_tilt_right;
 
 int panel_mode;
 int wm_menu;
index b9915e66a3d1d98c287805547a4c0d77275009a6..9974b27a1ae65ea2243b07d86a9531762c4527fd 100644 (file)
@@ -32,6 +32,8 @@ extern int mouse_middle;
 extern int mouse_right;
 extern int mouse_scroll_up;
 extern int mouse_scroll_down;
+extern int mouse_tilt_left;
+extern int mouse_tilt_right;
 
 //panel mode
 enum { SINGLE_DESKTOP=0, MULTI_DESKTOP };
index 51c4c220e3b6afba744b87c3d479f8765362e182..f08692c03a21ec7a617250ad40dec97d67716065 100644 (file)
@@ -112,8 +112,94 @@ void cleanup()
 }
 
 
+Taskbar *click_taskbar (Panel *panel, XEvent *e)
+{
+       GSList *l0;
+       Taskbar *tskbar = NULL;
+       if (panel_horizontal) {
+               int x = e->xbutton.x;
+               for (l0 = panel->area.list; l0 ; l0 = l0->next) {
+                       tskbar = l0->data;
+                       if (!tskbar->area.on_screen) continue;
+                       if (x >= tskbar->area.posx && x <= (tskbar->area.posx + tskbar->area.width))
+                               break;
+               }
+       }
+       else {
+               int y = e->xbutton.y;
+               for (l0 = panel->area.list; l0 ; l0 = l0->next) {
+                       tskbar = l0->data;
+                       if (!tskbar->area.on_screen) continue;
+                       if (y >= tskbar->area.posy && y <= (tskbar->area.posy + tskbar->area.height))
+                               break;
+               }
+       }
+       return tskbar;
+}
+
+
+Task *click_task (Panel *panel, XEvent *e)
+{
+       GSList *l0;
+       Taskbar *tskbar;
+
+       if ( (tskbar = click_taskbar(panel, e)) ) {
+               if (panel_horizontal) {
+                       int x = e->xbutton.x;
+                       Task *tsk;
+                       for (l0 = tskbar->area.list; l0 ; l0 = l0->next) {
+                               tsk = l0->data;
+                               if (x >= tsk->area.posx && x <= (tsk->area.posx + tsk->area.width)) {
+                                       return tsk;
+                               }
+                       }
+               }
+               else {
+                       int y = e->xbutton.y;
+                       Task *tsk;
+                       for (l0 = tskbar->area.list; l0 ; l0 = l0->next) {
+                               tsk = l0->data;
+                               if (y >= tsk->area.posy && y <= (tsk->area.posy + tsk->area.height)) {
+                                       return tsk;
+                               }
+                       }
+               }
+       }
+       return NULL;
+}
+
+
+int click_padding(Panel *panel, XEvent *e)
+{
+       if (panel_horizontal) {
+               if (e->xbutton.x < panel->area.paddingxlr || e->xbutton.x > panel->area.width-panel->area.paddingxlr)
+               return 1;
+       }
+       else {
+               if (e->xbutton.y < panel->area.paddingxlr || e->xbutton.y > panel->area.height-panel->area.paddingxlr)
+               return 1;
+       }
+       return 0;
+}
+
+
+int click_clock(Panel *panel, XEvent *e)
+{
+       Clock clk = panel->clock;
+       if (panel_horizontal) {
+               if (clk.area.on_screen && e->xbutton.x >= clk.area.posx && e->xbutton.x <= (clk.area.posx + clk.area.width))
+                       return TRUE;
+       } else {
+               if (clk.area.on_screen && e->xbutton.y >= clk.area.posy && e->xbutton.y <= (clk.area.posy + clk.area.height))
+                       return TRUE;
+       }
+       return FALSE;
+}
+
+
 void window_action (Task *tsk, int action)
 {
+   if (!tsk) return;
        switch (action) {
                case CLOSE:
                        set_close (tsk->win);
@@ -148,7 +234,7 @@ void event_button_press (XEvent *e)
 {
    Panel *panel = get_panel(e->xany.window);
        if (!panel) return;
-
+/*
        if (wm_menu) {
                if ((panel_horizontal && (e->xbutton.x < panel->area.paddingxlr || e->xbutton.x > panel->area.width-panel->area.paddingxlr || e->xbutton.y < panel->area.paddingy || e->xbutton.y > panel->area.paddingy+panel->g_taskbar.height)) || (!panel_horizontal && (e->xbutton.y < panel->area.paddingxlr || e->xbutton.y > panel->area.height-panel->area.paddingxlr || e->xbutton.x < panel->area.paddingy || e->xbutton.x > panel->area.paddingy+panel->g_taskbar.width))) {
                        // forward the click to the desktop window (thanks conky)
@@ -164,15 +250,25 @@ void event_button_press (XEvent *e)
                        return;
                }
        }
-
-       if (e->xbutton.button != 1) return;
-
-   if (panel_mode != MULTI_DESKTOP) {
-      // drag and drop disabled
-      XLowerWindow (server.dsp, panel->main_win);
-      return;
+*/
+       if (panel_mode == MULTI_DESKTOP)
+               task_drag = click_task(panel, e);
+
+   if (wm_menu && !task_drag && !click_clock(panel, e) && (e->xbutton.button != 1) ) {
+               // forward the click to the desktop window (thanks conky)
+               XUngrabPointer(server.dsp, e->xbutton.time);
+               e->xbutton.window = server.root_win;
+               // icewm doesn't open under the mouse.
+               // and xfce doesn't open at all.
+               //e->xbutton.x = e->xbutton.x_root;
+               //e->xbutton.y = e->xbutton.y_root;
+               //printf("**** %d, %d\n", e->xbutton.x, e->xbutton.y);
+               XSetInputFocus(server.dsp, e->xbutton.window, RevertToParent, e->xbutton.time);
+               XSendEvent(server.dsp, e->xbutton.window, False, ButtonPressMask, e);
+               return;
    }
-
+/*
+       if (e->xbutton.button != 1) return;
    GSList *l0;
    Taskbar *tskbar;
        if (panel_horizontal) {
@@ -213,7 +309,7 @@ void event_button_press (XEvent *e)
                        }
                }
        }
-
+*/
    XLowerWindow (server.dsp, panel->main_win);
 }
 
@@ -223,6 +319,13 @@ void event_button_release (XEvent *e)
    Panel *panel = get_panel(e->xany.window);
        if (!panel) return;
 
+       if (wm_menu && click_padding(panel, e)) {
+                       // forward the click to the desktop window (thanks conky)
+                       e->xbutton.window = server.root_win;
+                       XSendEvent(server.dsp, e->xbutton.window, False, ButtonReleaseMask, e);
+                       return;
+       }
+/*
        if (wm_menu) {
                if ((panel_horizontal && (e->xbutton.x < panel->area.paddingxlr || e->xbutton.x > panel->area.width-panel->area.paddingxlr || e->xbutton.y < panel->area.paddingy || e->xbutton.y > panel->area.paddingy+panel->g_taskbar.height)) || (!panel_horizontal && (e->xbutton.y < panel->area.paddingxlr || e->xbutton.y > panel->area.height-panel->area.paddingxlr || e->xbutton.x < panel->area.paddingy || e->xbutton.x > panel->area.paddingy+panel->g_taskbar.width))) {
                        // forward the click to the desktop window (thanks conky)
@@ -231,10 +334,9 @@ void event_button_release (XEvent *e)
                        return;
                }
        }
+*/
 
    int action = TOGGLE_ICONIFY;
-   int x = e->xbutton.x;
-   int y = e->xbutton.y;
    switch (e->xbutton.button) {
       case 2:
          action = mouse_middle;
@@ -248,8 +350,57 @@ void event_button_release (XEvent *e)
       case 5:
          action = mouse_scroll_down;
          break;
+      case 6:
+         action = mouse_tilt_left;
+         break;
+      case 7:
+         action = mouse_tilt_right;
+         break;
+   }
+
+       if ( click_clock(panel, e)) {
+               clock_action(e->xbutton.button);
+               XLowerWindow (server.dsp, panel->main_win);
+               task_drag = 0;
+               return;
+       }
+
+       Taskbar *tskbar;
+       if ( !(tskbar = click_taskbar(panel, e)) ) {
+               // TODO: check better solution to keep window below
+               XLowerWindow (server.dsp, panel->main_win);
+               task_drag = 0;
+               return;
+       }
+
+   // drag and drop task
+   if (task_drag) {
+      if (tskbar != task_drag->area.parent && action == TOGGLE_ICONIFY) {
+         if (task_drag->desktop != ALLDESKTOP && panel_mode == MULTI_DESKTOP) {
+            windows_set_desktop(task_drag->win, tskbar->desktop);
+            if (tskbar->desktop == server.desktop)
+               set_active(task_drag->win);
+            task_drag = 0;
+         }
+         return;
+      }
+      else task_drag = 0;
    }
 
+   // switch desktop
+   if (panel_mode == MULTI_DESKTOP && action != mouse_tilt_left && action != mouse_tilt_right) {
+      if (tskbar->desktop != server.desktop && action != CLOSE)
+         set_desktop (tskbar->desktop);
+       }
+
+   // action on task
+   window_action( click_task(panel, e), action);
+
+   // to keep window below
+   XLowerWindow (server.dsp, panel->main_win);
+/*
+   int x = e->xbutton.x;
+   int y = e->xbutton.y;
    // search taskbar
    Taskbar *tskbar;
    GSList *l0;
@@ -326,6 +477,7 @@ suite:
 
    // to keep window below
    XLowerWindow (server.dsp, panel->main_win);
+       */
 }
 
 
This page took 0.039218 seconds and 4 git commands to generate.