]> Dogcows Code - chaz/tint2/commitdiff
fixed issue 90 and issue 81 : window manager s menu in panel padding
authorThierry Lorthiois <lorthiois@bbsoft.fr>
Fri, 5 Jun 2009 21:58:09 +0000 (21:58 +0000)
committerThierry Lorthiois <lorthiois@bbsoft.fr>
Fri, 5 Jun 2009 21:58:09 +0000 (21:58 +0000)
ChangeLog
src/tint.c
src/tint2

index 07bbd861da2d7130f4dc15846ebeceeccfae0c51..41a0044109cf7db225fcd83152dfd4f2d5d0a97d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-06-06
+- fixed issue 90 and issue 81 : window manager's menu in panel padding
+  works on openbox and pekwm. doesn't work on xfce, windowmaker ?
+  tint2 send mouse event to your window manager on left/right padding
+  and on top/bottom panel padding.
+
 2009-06-05
 - fixed issue 46 and 59 : urgent task
   limitation : just one urgent task at a time
index 8353faf1b6d103ab4f210b4f5239864381d9df83..568375be0c38e085aa3f50b4e6e8ca5270d779d9 100644 (file)
@@ -136,6 +136,17 @@ void event_button_press (XEvent *e)
    Panel *panel = get_panel(e->xany.window);
        if (!panel) return;
 
+       if ((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)) {
+               // forward the click to the desktop window (thanks conky)
+               XUngrabPointer(server.dsp, e->xbutton.time);
+               e->xbutton.window = server.root_win;
+               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;
+
    if (panel_mode != MULTI_DESKTOP) {
       // drag and drop disabled
       XLowerWindow (server.dsp, panel->main_win);
@@ -145,7 +156,6 @@ void event_button_press (XEvent *e)
    GSList *l0;
    Taskbar *tskbar;
    int x = e->xbutton.x;
-   //int y = e->xbutton.y; // unused
    for (l0 = panel->area.list; l0 ; l0 = l0->next) {
       tskbar = l0->data;
       if (!tskbar->area.on_screen) continue;
@@ -170,11 +180,16 @@ void event_button_press (XEvent *e)
 
 void event_button_release (XEvent *e)
 {
-   // TODO: convert event_button_press(int x, int y) to area->event_button_press()
-
    Panel *panel = get_panel(e->xany.window);
        if (!panel) return;
 
+       if ((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)) {
+               // 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;
+       }
+
    int action = TOGGLE_ICONIFY;
    int x = e->xbutton.x;
    //int y = e->xbutton.y; // unused
@@ -551,8 +566,7 @@ load_config:
 
             switch (e.type) {
                case ButtonPress:
-                  //printf("ButtonPress %lx\n", e.xproperty.window);
-                  if (e.xbutton.button == 1) event_button_press (&e);
+                  event_button_press (&e);
                   break;
 
                case ButtonRelease:
index 0c4e7488e812483ed7b6cbcfba605e4db026d83d..b33f3204d706d4beff778342994e3b60c56246c6 100755 (executable)
Binary files a/src/tint2 and b/src/tint2 differ
This page took 0.02927 seconds and 4 git commands to generate.