/* $Id: events.c 29311 2009-01-24 23:42:37Z olivier $ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. oroborus - (c) 2001 Ken Lynch xfwm4 - (c) 2002-2009 Olivier Fourdan */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include #include #include #include #include #include #include #include #include #include #ifdef HAVE_RANDR #include #endif #include #include "misc.h" #include "workspaces.h" #include "settings.h" #include "mywindow.h" #include "frame.h" #include "client.h" #include "moveresize.h" #include "cycle.h" #include "placement.h" #include "stacking.h" #include "transients.h" #include "focus.h" #include "netwm.h" #include "menu.h" #include "hints.h" #include "startup_notification.h" #include "compositor.h" #include "events.h" #include "event_filter.h" #include "xsync.h" #ifndef CHECK_BUTTON_TIME #define CHECK_BUTTON_TIME 0 #endif #define WIN_IS_BUTTON(win) ((win == MYWINDOW_XWINDOW(c->buttons[HIDE_BUTTON])) || \ (win == MYWINDOW_XWINDOW(c->buttons[CLOSE_BUTTON])) || \ (win == MYWINDOW_XWINDOW(c->buttons[MAXIMIZE_BUTTON])) || \ (win == MYWINDOW_XWINDOW(c->buttons[SHADE_BUTTON])) || \ (win == MYWINDOW_XWINDOW(c->buttons[STICK_BUTTON]))) #define DBL_CLICK_GRAB (ButtonMotionMask | \ PointerMotionMask | \ ButtonPressMask | \ ButtonReleaseMask) static GdkAtom atom_rcfiles = GDK_NONE; static xfwmWindow menu_event_window; static int edge_scroll_x = 0; static int edge_scroll_y = 0; /* Forward decl. */ static eventFilterStatus handleEvent (DisplayInfo *display_info, XEvent * ev); static void menu_callback (Menu * menu, MenuOp op, Window xid, gpointer menu_data, gpointer item_data); static void show_window_menu (Client *c, gint px, gint py, guint button, guint32 time); static gboolean show_popup_cb (GtkWidget * widget, GdkEventButton * ev, gpointer data); static gboolean client_event_cb (GtkWidget * widget, GdkEventClient * ev, gpointer data); typedef enum { XFWM_BUTTON_UNDEFINED = 0, XFWM_BUTTON_DRAG = 1, XFWM_BUTTON_CLICK = 2, XFWM_BUTTON_CLICK_AND_DRAG = 3, XFWM_BUTTON_DOUBLE_CLICK = 4 } XfwmButtonClickType; typedef struct _XfwmButtonClickData XfwmButtonClickData; struct _XfwmButtonClickData { DisplayInfo *display_info; Window w; guint button; guint clicks; guint timeout; gint x; gint y; gint xcurrent; gint ycurrent; gboolean allow_double_click; }; static gboolean typeOfClick_break (gpointer data) { XfwmButtonClickData *passdata; passdata = (XfwmButtonClickData *) data; if (passdata->timeout) { g_source_remove (passdata->timeout); passdata->timeout = 0; } gtk_main_quit (); return (TRUE); } static eventFilterStatus typeOfClick_event_filter (XEvent * xevent, gpointer data) { XfwmButtonClickData *passdata; eventFilterStatus status; gboolean keep_going; keep_going = TRUE; passdata = (XfwmButtonClickData *) data; status = EVENT_FILTER_STOP; /* Update the display time */ myDisplayUpdateCurrentTime (passdata->display_info, xevent); if ((xevent->type == ButtonRelease) || (xevent->type == ButtonPress)) { if (xevent->xbutton.button == passdata->button) { passdata->clicks++; } if (((XfwmButtonClickType) passdata->clicks == XFWM_BUTTON_DOUBLE_CLICK) || (!(passdata->allow_double_click) && (XfwmButtonClickType) passdata->clicks == XFWM_BUTTON_CLICK)) { keep_going = FALSE; } } else if (xevent->type == MotionNotify) { passdata->xcurrent = xevent->xmotion.x_root; passdata->ycurrent = xevent->xmotion.y_root; } else if ((xevent->type == DestroyNotify) || (xevent->type == UnmapNotify)) { if (xevent->xany.window == passdata->w) { /* Discard, mark the click as undefined */ passdata->clicks = (guint) XFWM_BUTTON_UNDEFINED; keep_going = FALSE; } status = EVENT_FILTER_CONTINUE; } else { status = EVENT_FILTER_CONTINUE; } if ((ABS (passdata->x - passdata->xcurrent) > 1) || (ABS (passdata->y - passdata->ycurrent) > 1) || (!keep_going)) { TRACE ("event loop now finished"); typeOfClick_break (data); } return status; } static XfwmButtonClickType typeOfClick (ScreenInfo *screen_info, Window w, XEvent * ev, gboolean allow_double_click) { DisplayInfo *display_info; XfwmButtonClickData passdata; gboolean g; g_return_val_if_fail (screen_info != NULL, XFWM_BUTTON_UNDEFINED); g_return_val_if_fail (ev != NULL, XFWM_BUTTON_UNDEFINED); g_return_val_if_fail (w != None, XFWM_BUTTON_UNDEFINED); display_info = screen_info->display_info; XFlush (display_info->dpy); g = myScreenGrabPointer (screen_info, DBL_CLICK_GRAB, None, ev->xbutton.time); if (!g) { TRACE ("grab failed in typeOfClick"); gdk_beep (); myScreenUngrabPointer (screen_info, ev->xbutton.time); return XFWM_BUTTON_UNDEFINED; } passdata.display_info = display_info; passdata.button = ev->xbutton.button; passdata.w = w; passdata.x = ev->xbutton.x_root; passdata.y = ev->xbutton.y_root; passdata.xcurrent = passdata.x; passdata.ycurrent = passdata.y; passdata.clicks = 1; passdata.allow_double_click = allow_double_click; passdata.timeout = g_timeout_add_full (G_PRIORITY_DEFAULT, display_info->dbl_click_time, (GSourceFunc) typeOfClick_break, (gpointer) &passdata, NULL); TRACE ("entering typeOfClick loop"); eventFilterPush (display_info->xfilter, typeOfClick_event_filter, &passdata); gtk_main (); eventFilterPop (display_info->xfilter); TRACE ("leaving typeOfClick loop"); myScreenUngrabPointer (screen_info, myDisplayGetCurrentTime (display_info)); XFlush (display_info->dpy); return (XfwmButtonClickType) passdata.clicks; } #if CHECK_BUTTON_TIME static gboolean check_button_time (XButtonEvent *ev) { static guint32 last_button_time = CurrentTime; if (last_button_time > ev->time) { return FALSE; } last_button_time = ev->time; return TRUE; } #endif static void toggle_show_desktop (ScreenInfo *screen_info) { screen_info->show_desktop = !screen_info->show_desktop; setHint (screen_info->display_info, screen_info->xroot, NET_SHOWING_DESKTOP, screen_info->show_desktop); sendRootMessage (screen_info, NET_SHOWING_DESKTOP, screen_info->show_desktop, myDisplayGetCurrentTime (screen_info->display_info)); } static eventFilterStatus handleMotionNotify (DisplayInfo *display_info, XMotionEvent * ev) { TRACE ("entering handleMotionNotify"); return EVENT_FILTER_REMOVE; } static eventFilterStatus handleKeyPress (DisplayInfo *display_info, XKeyEvent * ev) { eventFilterStatus status; ScreenInfo *screen_info; ScreenInfo *ev_screen_info; Client *c; int key; TRACE ("entering handleKeyEvent"); ev_screen_info = myDisplayGetScreenFromRoot (display_info, ev->root); if (!ev_screen_info) { XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); return EVENT_FILTER_PASS; } status = EVENT_FILTER_PASS; c = clientGetFocus (); if (c) { screen_info = c->screen_info; key = myScreenGetKeyPressed (screen_info, ev); status = EVENT_FILTER_REMOVE; switch (key) { case KEY_MOVE: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); clientMove (c, (XEvent *) ev); break; case KEY_RESIZE: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); clientResize (c, CORNER_BOTTOM_RIGHT, (XEvent *) ev); break; case KEY_CYCLE_WINDOWS: case KEY_CYCLE_REVERSE_WINDOWS: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); clientCycle (c, ev); break; case KEY_CLOSE_WINDOW: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); clientClose (c); break; case KEY_HIDE_WINDOW: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); if (CLIENT_CAN_HIDE_WINDOW (c)) { clientWithdraw (c, c->win_workspace, TRUE); } break; case KEY_MAXIMIZE_WINDOW: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); clientToggleMaximized (c, WIN_STATE_MAXIMIZED, TRUE); break; case KEY_MAXIMIZE_VERT: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); clientToggleMaximized (c, WIN_STATE_MAXIMIZED_VERT, TRUE); break; case KEY_MAXIMIZE_HORIZ: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); clientToggleMaximized (c, WIN_STATE_MAXIMIZED_HORIZ, TRUE); break; case KEY_SHADE_WINDOW: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); clientToggleShaded (c); break; case KEY_STICK_WINDOW: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); if (FLAG_TEST(c->xfwm_flags, XFWM_FLAG_HAS_STICK)) { clientToggleSticky (c, TRUE); frameQueueDraw (c, FALSE); } break; case KEY_RAISE_WINDOW: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); clientRaise (c, None); break; case KEY_LOWER_WINDOW: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); clientLower (c, None); break; case KEY_TOGGLE_ABOVE: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); clientToggleLayerAbove (c); break; case KEY_TOGGLE_FULLSCREEN: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); clientToggleFullscreen (c); break; case KEY_MOVE_NEXT_WORKSPACE: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); workspaceSwitch (screen_info, screen_info->current_ws + 1, c, TRUE, ev->time); break; case KEY_MOVE_PREV_WORKSPACE: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); workspaceSwitch (screen_info, screen_info->current_ws - 1, c, TRUE, ev->time); break; case KEY_MOVE_UP_WORKSPACE: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); workspaceMove (screen_info, -1, 0, c, ev->time); break; case KEY_MOVE_DOWN_WORKSPACE: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); workspaceMove (screen_info, 1, 0, c, ev->time); break; case KEY_MOVE_LEFT_WORKSPACE: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); workspaceMove (screen_info, 0, -1, c, ev->time); break; case KEY_MOVE_RIGHT_WORKSPACE: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); workspaceMove (screen_info, 0, 1, c, ev->time); break; case KEY_MOVE_WORKSPACE_1: case KEY_MOVE_WORKSPACE_2: case KEY_MOVE_WORKSPACE_3: case KEY_MOVE_WORKSPACE_4: case KEY_MOVE_WORKSPACE_5: case KEY_MOVE_WORKSPACE_6: case KEY_MOVE_WORKSPACE_7: case KEY_MOVE_WORKSPACE_8: case KEY_MOVE_WORKSPACE_9: case KEY_MOVE_WORKSPACE_10: case KEY_MOVE_WORKSPACE_11: case KEY_MOVE_WORKSPACE_12: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); if (key - KEY_MOVE_WORKSPACE_1 < screen_info->workspace_count) { clientRaise (c, None); workspaceSwitch (screen_info, key - KEY_MOVE_WORKSPACE_1, c, TRUE, ev->time); } break; case KEY_POPUP_MENU: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); show_window_menu (c, frameX (c) + frameLeft (c), frameY (c) + frameTop (c), Button1, ev->time); break; case KEY_FILL_WINDOW: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); clientFill (c, CLIENT_FILL); break; case KEY_FILL_VERT: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); clientFill (c, CLIENT_FILL_VERT); break; case KEY_FILL_HORIZ: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); clientFill (c, CLIENT_FILL_HORIZ); break; default: break; } } else { key = myScreenGetKeyPressed (ev_screen_info, ev); switch (key) { case KEY_CYCLE_WINDOWS: status = EVENT_FILTER_REMOVE; XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); if (ev_screen_info->clients) { clientCycle (ev_screen_info->clients->prev, ev); } break; case KEY_CLOSE_WINDOW: status = EVENT_FILTER_REMOVE; XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); if (display_info->session) { logout_session (display_info->session); } break; default: break; } } switch (key) { case KEY_NEXT_WORKSPACE: status = EVENT_FILTER_REMOVE; XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); workspaceSwitch (ev_screen_info, ev_screen_info->current_ws + 1, NULL, TRUE, ev->time); break; case KEY_PREV_WORKSPACE: status = EVENT_FILTER_REMOVE; XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); workspaceSwitch (ev_screen_info, ev_screen_info->current_ws - 1, NULL, TRUE, ev->time); break; case KEY_UP_WORKSPACE: status = EVENT_FILTER_REMOVE; XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); workspaceMove(ev_screen_info, -1, 0, NULL, ev->time); break; case KEY_DOWN_WORKSPACE: status = EVENT_FILTER_REMOVE; XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); workspaceMove(ev_screen_info, 1, 0, NULL, ev->time); break; case KEY_LEFT_WORKSPACE: status = EVENT_FILTER_REMOVE; XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); workspaceMove(ev_screen_info, 0, -1, NULL, ev->time); break; case KEY_RIGHT_WORKSPACE: status = EVENT_FILTER_REMOVE; XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); workspaceMove(ev_screen_info, 0, 1, NULL, ev->time); break; case KEY_ADD_WORKSPACE: status = EVENT_FILTER_REMOVE; XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); workspaceSetCount (ev_screen_info, ev_screen_info->workspace_count + 1); break; case KEY_DEL_WORKSPACE: status = EVENT_FILTER_REMOVE; XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); workspaceSetCount (ev_screen_info, ev_screen_info->workspace_count - 1); break; case KEY_ADD_ADJACENT_WORKSPACE: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); workspaceInsert (ev_screen_info, ev_screen_info->current_ws + 1); break; case KEY_DEL_ACTIVE_WORKSPACE: XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); workspaceDelete (ev_screen_info, ev_screen_info->current_ws); break; case KEY_WORKSPACE_1: case KEY_WORKSPACE_2: case KEY_WORKSPACE_3: case KEY_WORKSPACE_4: case KEY_WORKSPACE_5: case KEY_WORKSPACE_6: case KEY_WORKSPACE_7: case KEY_WORKSPACE_8: case KEY_WORKSPACE_9: case KEY_WORKSPACE_10: case KEY_WORKSPACE_11: case KEY_WORKSPACE_12: status = EVENT_FILTER_REMOVE; XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); if (key - KEY_WORKSPACE_1 < ev_screen_info->workspace_count) { workspaceSwitch (ev_screen_info, key - KEY_WORKSPACE_1, NULL, TRUE, ev->time); } break; case KEY_SHOW_DESKTOP: status = EVENT_FILTER_REMOVE; XAllowEvents (display_info->dpy, AsyncKeyboard, ev->time); toggle_show_desktop (ev_screen_info); break; default: break; } return status; } static eventFilterStatus handleKeyRelease (DisplayInfo *display_info, XKeyEvent * ev) { TRACE ("entering handleKeyRelease"); return EVENT_FILTER_PASS; } /* User has clicked on an edge or corner. * Button 1 : Raise and resize * Button 2 : Move * Button 3 : Resize */ static void edgeButton (Client * c, int part, XButtonEvent * ev) { ScreenInfo *screen_info; int state; screen_info = c->screen_info; state = ev->state & MODIFIER_MASK; if (ev->button == Button2) { XfwmButtonClickType tclick; tclick = typeOfClick (screen_info, c->window, (XEvent *) ev, FALSE); if (tclick == XFWM_BUTTON_CLICK) { clientLower (c, None); } else if (tclick != XFWM_BUTTON_UNDEFINED) { clientMove (c, (XEvent *) ev); } } else if ((ev->button == Button1) || (ev->button == Button3)) { if ((ev->button == Button1) || ((screen_info->params->easy_click) && (state == screen_info->params->easy_click))) { if (!(c->type & WINDOW_TYPE_DONT_FOCUS)) { clientSetFocus (screen_info, c, ev->time, NO_FOCUS_FLAG); } clientRaise (c, None); } clientResize (c, part, (XEvent *) ev); } } static int edgeGetPart (Client *c, XButtonEvent * ev) { int part, x_corner_pixels, y_corner_pixels, x_distance, y_distance; /* Corner is 1/3 of the side */ x_corner_pixels = MAX(c->width / 3, 50); y_corner_pixels = MAX(c->height / 3, 50); /* Distance from event to edge of client window */ x_distance = c->width / 2 - abs(c->width / 2 - ev->x); y_distance = c->height / 2 - abs(c->height / 2 - ev->y); /* Set a sensible default value */ part = CORNER_BOTTOM_RIGHT; if (x_distance < x_corner_pixels && y_distance < y_corner_pixels) { /* In a corner */ if (ev->x < c->width / 2) { if (ev->y < c->height / 2) { part = CORNER_TOP_LEFT; } else { part = CORNER_BOTTOM_LEFT; } } else { if (ev->y < c->height / 2) { part = CORNER_TOP_RIGHT; } else { part = CORNER_BOTTOM_RIGHT; } } } else { /* Not a corner - some side */ if (x_distance / x_corner_pixels < y_distance / y_corner_pixels) { /* Left or right side */ if (ev->x < c->width / 2) { part = CORNER_COUNT + SIDE_LEFT; } else { part = CORNER_COUNT + SIDE_RIGHT; } } else { /* Top or bottom side */ if (ev->y < c->height / 2) { part = CORNER_COUNT + SIDE_TOP; } else { part = CORNER_COUNT + SIDE_BOTTOM; } } } return part; } static void button1Action (Client * c, XButtonEvent * ev) { ScreenInfo *screen_info; DisplayInfo *display_info; XEvent copy_event; XfwmButtonClickType tclick; g_return_if_fail (c != NULL); g_return_if_fail (ev != NULL); screen_info = c->screen_info; display_info = screen_info->display_info; if (!(c->type & WINDOW_TYPE_DONT_FOCUS)) { clientSetFocus (screen_info, c, ev->time, NO_FOCUS_FLAG); } clientRaise (c, None); memcpy(©_event, ev, sizeof(XEvent)); tclick = typeOfClick (screen_info, c->window, ©_event, TRUE); if ((tclick == XFWM_BUTTON_DRAG) || (tclick == XFWM_BUTTON_CLICK_AND_DRAG)) { clientMove (c, (XEvent *) ev); } else if (tclick == XFWM_BUTTON_DOUBLE_CLICK) { switch (screen_info->params->double_click_action) { case DBL_CLICK_ACTION_MAXIMIZE: clientToggleMaximized (c, WIN_STATE_MAXIMIZED, TRUE); break; case DBL_CLICK_ACTION_SHADE: clientToggleShaded (c); break; case DBL_CLICK_ACTION_FILL: clientFill(c, CLIENT_FILL); break; case DBL_CLICK_ACTION_HIDE: if (CLIENT_CAN_HIDE_WINDOW (c)) { clientWithdraw (c, c->win_workspace, TRUE); } break; default: break; } } } static void titleButton (Client * c, int state, XButtonEvent * ev) { ScreenInfo *screen_info; DisplayInfo *display_info; g_return_if_fail (c != NULL); g_return_if_fail (ev != NULL); /* Get Screen data from the client itself */ screen_info = c->screen_info; display_info = screen_info->display_info; if (ev->button == Button1) { button1Action (c, ev); } else if (ev->button == Button2) { clientLower (c, None); } else if (ev->button == Button3) { /* We need to copy the event to keep the original event untouched for gtk to handle it (in case we open up the menu) */ XEvent copy_event; XfwmButtonClickType tclick; memcpy(©_event, ev, sizeof(XEvent)); tclick = typeOfClick (screen_info, c->window, ©_event, FALSE); if (tclick == XFWM_BUTTON_DRAG) { clientMove (c, (XEvent *) ev); } else if (tclick != XFWM_BUTTON_UNDEFINED) { if (!(c->type & WINDOW_TYPE_DONT_FOCUS)) { clientSetFocus (screen_info, c, ev->time, NO_FOCUS_FLAG); } if (screen_info->params->raise_on_click) { clientRaise (c, None); } ev->window = ev->root; if (screen_info->button_handler_id) { g_signal_handler_disconnect (GTK_OBJECT (myScreenGetGtkWidget (screen_info)), screen_info->button_handler_id); } screen_info->button_handler_id = g_signal_connect (GTK_OBJECT (myScreenGetGtkWidget (screen_info)), "button_press_event", GTK_SIGNAL_FUNC (show_popup_cb), (gpointer) c); /* Let GTK handle this for us. */ } } else if (ev->button == Button4) { /* Mouse wheel scroll up */ if (state == AltMask) { clientIncOpacity(c); } else if (!FLAG_TEST (c->flags, CLIENT_FLAG_SHADED)) { clientShade (c); } } else if (ev->button == Button5) { /* Mouse wheel scroll down */ if (state == AltMask) { clientDecOpacity(c); } else if (FLAG_TEST (c->flags, CLIENT_FLAG_SHADED)) { clientUnshade (c); } } else if (ev->button == Button6) { /* Mouse wheel scroll left, or left side button */ clientDecOpacity(c); } else if (ev->button == Button7) { /* Mouse wheel scroll right, or right side button */ clientIncOpacity(c); } } static void rootScrollButton (DisplayInfo *display_info, XButtonEvent * ev) { static guint32 lastscroll = CurrentTime; ScreenInfo *screen_info; if ((ev->time - lastscroll) < 25) /* ms */ { /* Too many events in too little time, drop this event... */ return; } lastscroll = ev->time; /* Get the screen structure from the root of the event */ screen_info = myDisplayGetScreenFromRoot (display_info, ev->root); if (!screen_info) { return; } if (ev->button == Button4) { workspaceSwitch (screen_info, screen_info->current_ws - 1, NULL, TRUE, ev->time); } else if (ev->button == Button5) { workspaceSwitch (screen_info, screen_info->current_ws + 1, NULL, TRUE, ev->time); } } static eventFilterStatus handleButtonPress (DisplayInfo *display_info, XButtonEvent * ev) { ScreenInfo *screen_info; Client *c; Window win; int state, part; gboolean replay; TRACE ("entering handleButtonPress"); replay = FALSE; c = myDisplayGetClientFromWindow (display_info, ev->window, SEARCH_FRAME | SEARCH_WINDOW); if (c) { state = ev->state & MODIFIER_MASK; win = ev->subwindow; screen_info = c->screen_info; if ((ev->button == Button1) && (screen_info->params->easy_click) && (state == screen_info->params->easy_click)) { button1Action (c, ev); } else if ((ev->button == Button2) && (screen_info->params->easy_click) && (state == screen_info->params->easy_click)) { clientLower (c, None); } else if ((ev->button == Button3) && (screen_info->params->easy_click) && (state == screen_info->params->easy_click)) { part = edgeGetPart (c, ev); edgeButton (c, part, ev); } else if (WIN_IS_BUTTON (win)) { if (ev->button <= Button3) { if (!(c->type & WINDOW_TYPE_DONT_FOCUS)) { clientSetFocus (screen_info, c, ev->time, NO_FOCUS_FLAG); } if (screen_info->params->raise_on_click) { clientClearDelayedRaise (); clientRaise (c, None); } clientButtonPress (c, win, ev); } } else if (win == MYWINDOW_XWINDOW (c->title)) { titleButton (c, state, ev); } else if (win == MYWINDOW_XWINDOW (c->buttons[MENU_BUTTON])) { if (ev->button == Button1) { /* We need to copy the event to keep the original event untouched for gtk to handle it (in case we open up the menu) */ XEvent copy_event; XfwmButtonClickType tclick; memcpy(©_event, ev, sizeof(XEvent)); tclick = typeOfClick (screen_info, c->window, ©_event, TRUE); if (tclick == XFWM_BUTTON_DOUBLE_CLICK) { clientClose (c); } else if (tclick != XFWM_BUTTON_UNDEFINED) { if (!(c->type & WINDOW_TYPE_DONT_FOCUS)) { clientSetFocus (screen_info, c, ev->time, NO_FOCUS_FLAG); } if (screen_info->params->raise_on_click) { clientClearDelayedRaise (); clientRaise (c, None); } ev->window = ev->root; if (screen_info->button_handler_id) { g_signal_handler_disconnect (GTK_OBJECT (myScreenGetGtkWidget (screen_info)), screen_info->button_handler_id); } screen_info->button_handler_id = g_signal_connect (GTK_OBJECT (myScreenGetGtkWidget (screen_info)), "button_press_event", GTK_SIGNAL_FUNC (show_popup_cb), (gpointer) c); /* Let GTK handle this for us. */ } } } else if ((win == MYWINDOW_XWINDOW (c->corners[CORNER_TOP_LEFT])) && (state == 0)) { edgeButton (c, CORNER_TOP_LEFT, ev); } else if ((win == MYWINDOW_XWINDOW (c->corners[CORNER_TOP_RIGHT])) && (state == 0)) { edgeButton (c, CORNER_TOP_RIGHT, ev); } else if ((win == MYWINDOW_XWINDOW (c->corners[CORNER_BOTTOM_LEFT])) && (state == 0)) { edgeButton (c, CORNER_BOTTOM_LEFT, ev); } else if ((win == MYWINDOW_XWINDOW (c->corners[CORNER_BOTTOM_RIGHT])) && (state == 0)) { edgeButton (c, CORNER_BOTTOM_RIGHT, ev); } else if ((win == MYWINDOW_XWINDOW (c->sides[SIDE_BOTTOM])) && (state == 0)) { edgeButton (c, CORNER_COUNT + SIDE_BOTTOM, ev); } else if ((win == MYWINDOW_XWINDOW (c->sides[SIDE_TOP])) && (state == 0)) { edgeButton (c, CORNER_COUNT + SIDE_TOP, ev); } else if ((win == MYWINDOW_XWINDOW (c->sides[SIDE_LEFT])) && (state == 0)) { edgeButton (c, CORNER_COUNT + SIDE_LEFT, ev); } else if ((win == MYWINDOW_XWINDOW (c->sides[SIDE_RIGHT])) && (state == 0)) { edgeButton (c, CORNER_COUNT + SIDE_RIGHT, ev); } else if (ev->window == c->window) { replay = TRUE; clientPassGrabMouseButton (c); if (((screen_info->params->raise_with_any_button) && (c->type & WINDOW_REGULAR_FOCUSABLE)) || (ev->button == Button1)) { if (!(c->type & WINDOW_TYPE_DONT_FOCUS)) { clientSetFocus (screen_info, c, ev->time, NO_FOCUS_FLAG); } if ((screen_info->params->raise_on_click) || !FLAG_TEST (c->xfwm_flags, XFWM_FLAG_HAS_BORDER)) { clientClearDelayedRaise (); clientRaise (c, None); } } } } else { /* The event did not occur in one of our known good clients... Get the screen structure from the root of the event. */ screen_info = myDisplayGetScreenFromRoot (display_info, ev->root); if (screen_info) { if ((ev->window == screen_info->xroot) && (screen_info->params->scroll_workspaces) && ((ev->button == Button4) || (ev->button == Button5))) { rootScrollButton (display_info, ev); } else { XUngrabPointer (display_info->dpy, ev->time); XSendEvent (display_info->dpy, screen_info->xfwm4_win, FALSE, SubstructureNotifyMask, (XEvent *) ev); } } } /* Release pending events */ XAllowEvents (display_info->dpy, replay ? ReplayPointer : SyncPointer, CurrentTime); return EVENT_FILTER_REMOVE; } static eventFilterStatus handleButtonRelease (DisplayInfo *display_info, XButtonEvent * ev) { ScreenInfo *screen_info; TRACE ("entering handleButtonRelease"); /* Get the screen structure from the root of the event */ screen_info = myDisplayGetScreenFromRoot (display_info, ev->root); if (screen_info) { XSendEvent (display_info->dpy, screen_info->xfwm4_win, FALSE, SubstructureNotifyMask, (XEvent *) ev); } /* Release pending events */ XAllowEvents (display_info->dpy, SyncPointer, CurrentTime); return EVENT_FILTER_REMOVE; } static eventFilterStatus handleDestroyNotify (DisplayInfo *display_info, XDestroyWindowEvent * ev) { eventFilterStatus status; GList *list_of_windows; Client *c; #ifdef ENABLE_KDE_SYSTRAY_PROXY ScreenInfo *screen_info; #endif TRACE ("entering handleDestroyNotify"); TRACE ("DestroyNotify on window (0x%lx)", ev->window); status = EVENT_FILTER_PASS; #ifdef ENABLE_KDE_SYSTRAY_PROXY screen_info = myDisplayGetScreenFromSystray (display_info, ev->window); if (screen_info) { /* systray window is gone */ screen_info->systray = None; return EVENT_FILTER_REMOVE; } #endif c = myDisplayGetClientFromWindow (display_info, ev->window, SEARCH_WINDOW); if (c) { TRACE ("DestroyNotify for \"%s\" (0x%lx)", c->name, c->window); list_of_windows = clientListTransientOrModal (c); clientPassFocus (c->screen_info, c, list_of_windows); clientUnframe (c, FALSE); g_list_free (list_of_windows); status = EVENT_FILTER_REMOVE; } return status; } static eventFilterStatus handleMapRequest (DisplayInfo *display_info, XMapRequestEvent * ev) { eventFilterStatus status; Client *c; TRACE ("entering handleMapRequest"); TRACE ("MapRequest on window (0x%lx)", ev->window); status = EVENT_FILTER_PASS; if (ev->window == None) { TRACE ("Mapping None ???"); return status; } c = myDisplayGetClientFromWindow (display_info, ev->window, SEARCH_WINDOW); if (c) { ScreenInfo *screen_info = c->screen_info; TRACE ("handleMapRequest: clientShow"); if (FLAG_TEST (c->xfwm_flags, XFWM_FLAG_MAP_PENDING)) { TRACE ("Ignoring MapRequest on window (0x%lx)", ev->window); status = EVENT_FILTER_REMOVE; } clientShow (c, TRUE); clientClearAllShowDesktop (screen_info); if (FLAG_TEST (c->flags, CLIENT_FLAG_STICKY) || (c->win_workspace == screen_info->current_ws)) { clientFocusNew(c); } status = EVENT_FILTER_REMOVE; } else { TRACE ("handleMapRequest: clientFrame"); clientFrame (display_info, ev->window, FALSE); status = EVENT_FILTER_REMOVE; } return status; } static eventFilterStatus handleMapNotify (DisplayInfo *display_info, XMapEvent * ev) { Client *c; TRACE ("entering handleMapNotify"); TRACE ("MapNotify on window (0x%lx)", ev->window); c = myDisplayGetClientFromWindow (display_info, ev->window, SEARCH_WINDOW); if (c) { TRACE ("MapNotify for \"%s\" (0x%lx)", c->name, c->window); if (FLAG_TEST (c->xfwm_flags, XFWM_FLAG_MAP_PENDING)) { FLAG_UNSET (c->xfwm_flags, XFWM_FLAG_MAP_PENDING); } return EVENT_FILTER_REMOVE; } return EVENT_FILTER_PASS; } static eventFilterStatus handleUnmapNotify (DisplayInfo *display_info, XUnmapEvent * ev) { eventFilterStatus status; ScreenInfo *screen_info; GList *list_of_windows; Client *c; TRACE ("entering handleUnmapNotify"); TRACE ("UnmapNotify on window (0x%lx)", ev->window); status = EVENT_FILTER_PASS; if (ev->from_configure) { TRACE ("Ignoring UnmapNotify caused by parent's resize"); return status; } screen_info = myDisplayGetScreenFromWindow (display_info, ev->window); if (screen_info && (ev->event != ev->window) && (ev->event != screen_info->xroot || !ev->send_event)) { TRACE ("handleUnmapNotify (): Event ignored"); return status; } c = myDisplayGetClientFromWindow (display_info, ev->window, SEARCH_WINDOW); if (c) { TRACE ("UnmapNotify for \"%s\" (0x%lx)", c->name, c->window); TRACE ("ignore_unmap for \"%s\" is %i", c->name, c->ignore_unmap); status = EVENT_FILTER_REMOVE; if (FLAG_TEST (c->xfwm_flags, XFWM_FLAG_MAP_PENDING)) { /* * This UnmapNotify event is caused by reparenting * so we just ignore it, so the window won't return * to withdrawn state by mistake. */ TRACE ("Client \"%s\" is not mapped, event ignored", c->name); return status; } screen_info = c->screen_info; /* * ICCCM spec states that a client wishing to switch * to WithdrawnState should send a synthetic UnmapNotify * with the event field set to root if the client window * is already unmapped. * Therefore, bypass the ignore_unmap counter and * unframe the client. */ if ((ev->event == screen_info->xroot) && (ev->send_event)) { TRACE ("ICCCM UnmapNotify for \"%s\"", c->name); list_of_windows = clientListTransientOrModal (c); clientPassFocus (screen_info, c, list_of_windows); clientUnframe (c, FALSE); g_list_free (list_of_windows); return status; } if (c->ignore_unmap) { c->ignore_unmap--; TRACE ("ignore_unmap for \"%s\" is now %i", c->name, c->ignore_unmap); } else { TRACE ("unmapping \"%s\" as ignore_unmap is %i", c->name, c->ignore_unmap); list_of_windows = clientListTransientOrModal (c); clientPassFocus (screen_info, c, list_of_windows); clientUnframe (c, FALSE); g_list_free (list_of_windows); } } return status; } static eventFilterStatus handleConfigureNotify (DisplayInfo *display_info, XConfigureEvent * ev) { TRACE ("entering handleConfigureNotify"); return EVENT_FILTER_PASS; } static eventFilterStatus handleConfigureRequest (DisplayInfo *display_info, XConfigureRequestEvent * ev) { Client *c; XWindowChanges wc; TRACE ("entering handleConfigureRequest"); TRACE ("ConfigureRequest on window (0x%lx)", ev->window); wc.x = ev->x; wc.y = ev->y; wc.width = ev->width; wc.height = ev->height; wc.sibling = ev->above; wc.stack_mode = ev->detail; wc.border_width = ev->border_width; c = myDisplayGetClientFromWindow (display_info, ev->window, SEARCH_WINDOW); if (!c) { /* Some app tend or try to manipulate the wm frame to achieve fullscreen mode */ c = myDisplayGetClientFromWindow (display_info, ev->window, SEARCH_FRAME); if (c) { TRACE ("client %s (0x%lx) is attempting to manipulate its frame!", c->name, c->window); if (ev->value_mask & CWX) { wc.x += frameLeft (c); } if (ev->value_mask & CWY) { wc.y += frameTop (c); } if (ev->value_mask & CWWidth) { wc.width -= frameLeft (c) + frameRight (c); } if (ev->value_mask & CWHeight) { wc.height -= frameTop (c) + frameBottom (c); } /* We don't allow changing stacking order by accessing the frame window because that would break the layer management in xfwm4 */ ev->value_mask &= ~(CWSibling | CWStackMode); } } if (c) { TRACE ("handleConfigureRequest managed window \"%s\" (0x%lx)", c->name, c->window); if (FLAG_TEST (c->xfwm_flags, XFWM_FLAG_MOVING_RESIZING)) { /* Sorry, but it's not the right time for configure request */ return EVENT_FILTER_REMOVE; } clientAdjustCoordGravity (c, c->gravity, &ev->value_mask, &wc); clientMoveResizeWindow (c, &wc, ev->value_mask); } else { TRACE ("unmanaged configure request for win 0x%lx", ev->window); XConfigureWindow (display_info->dpy, ev->window, ev->value_mask, &wc); } return EVENT_FILTER_REMOVE; } static eventFilterStatus handleEnterNotify (DisplayInfo *display_info, XCrossingEvent * ev) { static guint32 lastresist = CurrentTime; ScreenInfo *screen_info; Client *c; int b; gboolean warp_pointer, need_redraw; /* See http://rfc-ref.org/RFC-TEXTS/1013/chapter12.html for details */ TRACE ("entering handleEnterNotify"); if ((ev->mode == NotifyGrab) || (ev->mode == NotifyUngrab) || (ev->detail > NotifyNonlinearVirtual)) { /* We're not interested in such notifications */ return EVENT_FILTER_PASS; } TRACE ("EnterNotify on window (0x%lx)", ev->window); warp_pointer = FALSE; need_redraw = FALSE; c = myDisplayGetClientFromWindow (display_info, ev->window, SEARCH_FRAME | SEARCH_BUTTON); if (c) { screen_info = c->screen_info; TRACE ("EnterNotify window is \"%s\"", c->name); if (!(screen_info->params->click_to_focus) && clientAcceptFocus (c)) { if (!(c->type & (WINDOW_DOCK | WINDOW_DESKTOP))) { if(screen_info->params->focus_delay) { clientClearDelayedFocus (); clientAddDelayedFocus (c); } else { clientSetFocus (c->screen_info, c, ev->time, NO_FOCUS_FLAG); } } else { clientClearDelayedFocus (); } } if (c == clientGetFocus ()) { for (b = 0; b < BUTTON_COUNT; b++) { if (MYWINDOW_XWINDOW(c->buttons[b]) == ev->window) { if (!xfwmPixmapNone(clientGetButtonPixmap(c, b, PRELIGHT))) { c->button_status[b] = BUTTON_STATE_PRELIGHT; need_redraw = TRUE; } } } if (need_redraw) { frameQueueDraw (c, FALSE); } } /* No need to process the event any further */ return EVENT_FILTER_REMOVE; } /* The event was not for a client window */ if (display_info->nb_screens > 1) { /* Wrap workspace/wrap windows is disabled with multiscreen */ return EVENT_FILTER_REMOVE; } /* Get the screen structure from the root of the event */ screen_info = myDisplayGetScreenFromRoot (display_info, ev->root); if (!screen_info) { return EVENT_FILTER_PASS; } if (screen_info->workspace_count && screen_info->params->wrap_workspaces && screen_info->params->wrap_resistance) { int msx, msy, maxx, maxy; int rx, ry; msx = ev->x_root; msy = ev->y_root; maxx = screen_info->width - 1; maxy = screen_info->height - 1; rx = 0; ry = 0; warp_pointer = FALSE; if ((msx == 0) || (msx == maxx)) { if ((ev->time - lastresist) > 250) /* ms */ { edge_scroll_x = 0; } else { edge_scroll_x++; } if (msx == 0) { rx = 1; } else { rx = -1; } warp_pointer = TRUE; lastresist = ev->time; } if ((msy == 0) || (msy == maxy)) { if ((ev->time - lastresist) > 250) /* ms */ { edge_scroll_y = 0; } else { edge_scroll_y++; } if (msy == 0) { ry = 1; } else { ry = -1; } warp_pointer = TRUE; lastresist = ev->time; } if (edge_scroll_x > screen_info->params->wrap_resistance) { edge_scroll_x = 0; if (msx == 0) { if (workspaceMove (screen_info, 0, -1, NULL, ev->time)) { rx = 4 * maxx / 5; } } else { if (workspaceMove (screen_info, 0, 1, NULL, ev->time)) { rx = -4 * maxx / 5; } } warp_pointer = TRUE; } if (edge_scroll_y > screen_info->params->wrap_resistance) { edge_scroll_y = 0; if (msy == 0) { if (workspaceMove (screen_info, -1, 0, NULL, ev->time)) { ry = 4 * maxy / 5; } } else { if (workspaceMove (screen_info, 1, 0, NULL, ev->time)) { ry = -4 * maxy / 5; } } warp_pointer = TRUE; } if (warp_pointer) { XWarpPointer (display_info->dpy, None, None, 0, 0, 0, 0, rx, ry); XFlush (display_info->dpy); } } return EVENT_FILTER_REMOVE; } static eventFilterStatus handleLeaveNotify (DisplayInfo *display_info, XCrossingEvent * ev) { Client *c; int b; gboolean need_redraw; TRACE ("entering handleLeaveNotify"); need_redraw = FALSE; c = myDisplayGetClientFromWindow (display_info, ev->window, SEARCH_FRAME | SEARCH_BUTTON); if (c) { for (b = 0; b < BUTTON_COUNT; b++) { if ((c->button_status[b] == BUTTON_STATE_PRELIGHT) || (c->button_status[b] == BUTTON_STATE_PRESSED)) { if (MYWINDOW_XWINDOW(c->buttons[b]) == ev->window) { c->button_status[b] = BUTTON_STATE_NORMAL; need_redraw = TRUE; } } } if (need_redraw) { frameQueueDraw (c, FALSE); } /* No need to process the event any further */ return EVENT_FILTER_REMOVE; } return EVENT_FILTER_PASS; } static eventFilterStatus handleFocusIn (DisplayInfo *display_info, XFocusChangeEvent * ev) { ScreenInfo *screen_info; Client *c, *user_focus, *current_focus; /* See http://rfc-ref.org/RFC-TEXTS/1013/chapter12.html for details */ TRACE ("entering handleFocusIn"); TRACE ("handleFocusIn (0x%lx) mode = %s", ev->window, (ev->mode == NotifyNormal) ? "NotifyNormal" : (ev->mode == NotifyWhileGrabbed) ? "NotifyWhileGrabbed" : (ev->mode == NotifyGrab) ? "NotifyGrab" : (ev->mode == NotifyUngrab) ? "NotifyUngrab" : "(unknown)"); TRACE ("handleFocusIn (0x%lx) detail = %s", ev->window, (ev->detail == NotifyAncestor) ? "NotifyAncestor" : (ev->detail == NotifyVirtual) ? "NotifyVirtual" : (ev->detail == NotifyInferior) ? "NotifyInferior" : (ev->detail == NotifyNonlinear) ? "NotifyNonlinear" : (ev->detail == NotifyNonlinearVirtual) ? "NotifyNonlinearVirtual" : (ev->detail == NotifyPointer) ? "NotifyPointer" : (ev->detail == NotifyPointerRoot) ? "NotifyPointerRoot" : (ev->detail == NotifyDetailNone) ? "NotifyDetailNone" : "(unknown)"); screen_info = myDisplayGetScreenFromWindow (display_info, ev->window); if (!screen_info) { /* Not for us */ return EVENT_FILTER_PASS; } if ((ev->window == screen_info->xroot) && ((ev->detail == NotifyDetailNone) || ((ev->mode == NotifyNormal) && (ev->detail == NotifyInferior)))) { /* Handle unexpected focus transition to root (means that an unknown window has vanished and the focus is returned to the root). */ c = clientGetFocusOrPending (); clientSetFocus (screen_info, c, getXServerTime (display_info), FOCUS_FORCE); return EVENT_FILTER_PASS; } if ((ev->mode == NotifyGrab) || (ev->mode == NotifyUngrab)) { /* We're not interested in such notifications */ return EVENT_FILTER_PASS; } c = myDisplayGetClientFromWindow (display_info, ev->window, SEARCH_FRAME | SEARCH_WINDOW); user_focus = clientGetUserFocus (); current_focus = clientGetFocus (); TRACE ("FocusIn on window (0x%lx)", ev->window); if ((c) && (c != current_focus) && (FLAG_TEST (c->xfwm_flags, XFWM_FLAG_VISIBLE))) { TRACE ("Focus transfered to \"%s\" (0x%lx)", c->name, c->window); screen_info = c->screen_info; clientUpdateFocus (screen_info, c, FOCUS_SORT); if ((user_focus != c) && (user_focus != NULL)) { /* Focus stealing prevention: Some apps tend to focus the window directly. If focus stealing prevention is enabled, we revert the user set focus to the window that we think has focus and then set the demand attention flag. Note that focus stealing prevention is ignored between windows of the same group or between windows that have a transient relationship, as some apps tend to play with focus with their "own" windows. */ if (screen_info->params->prevent_focus_stealing && !clientSameGroup (c, user_focus) && !clientIsTransientOrModalFor (c, user_focus)) { TRACE ("Setting focus back to \"%s\" (0x%lx)", user_focus->name, user_focus->window); clientSetFocus (user_focus->screen_info, user_focus, getXServerTime (display_info), NO_FOCUS_FLAG); if (current_focus) { TRACE ("Setting WM_STATE_DEMANDS_ATTENTION flag on \"%s\" (0x%lx)", c->name, c->window); FLAG_SET (c->flags, CLIENT_FLAG_DEMANDS_ATTENTION); clientSetNetState (c); } } } if (screen_info->params->raise_on_focus) { clientResetDelayedRaise (screen_info); } } return EVENT_FILTER_REMOVE; } static eventFilterStatus handleFocusOut (DisplayInfo *display_info, XFocusChangeEvent * ev) { Client *c; /* See http://rfc-ref.org/RFC-TEXTS/1013/chapter12.html for details */ TRACE ("entering handleFocusOut"); TRACE ("handleFocusOut (0x%lx) mode = %s", ev->window, (ev->mode == NotifyNormal) ? "NotifyNormal" : (ev->mode == NotifyWhileGrabbed) ? "NotifyWhileGrabbed" : "(unknown)"); TRACE ("handleFocusOut (0x%lx) detail = %s", ev->window, (ev->detail == NotifyAncestor) ? "NotifyAncestor" : (ev->detail == NotifyVirtual) ? "NotifyVirtual" : (ev->detail == NotifyInferior) ? "NotifyInferior" : (ev->detail == NotifyNonlinear) ? "NotifyNonlinear" : (ev->detail == NotifyNonlinearVirtual) ? "NotifyNonlinearVirtual" : (ev->detail == NotifyPointer) ? "NotifyPointer" : (ev->detail == NotifyPointerRoot) ? "NotifyPointerRoot" : (ev->detail == NotifyDetailNone) ? "NotifyDetailNone" : "(unknown)"); if ((ev->mode == NotifyGrab) || (ev->mode == NotifyUngrab) || (ev->detail == NotifyInferior) || (ev->detail > NotifyNonlinearVirtual)) { /* We're not interested in such notifications */ return EVENT_FILTER_PASS; } if ((ev->mode == NotifyNormal) && ((ev->detail == NotifyNonlinear) || (ev->detail == NotifyNonlinearVirtual))) { c = myDisplayGetClientFromWindow (display_info, ev->window, SEARCH_FRAME | SEARCH_WINDOW); TRACE ("FocusOut on window (0x%lx)", ev->window); if ((c) && (c == clientGetFocus ())) { TRACE ("focus lost from \"%s\" (0x%lx)", c->name, c->window); clientPassGrabMouseButton (NULL); clientUpdateFocus (c->screen_info, NULL, NO_FOCUS_FLAG); clientClearDelayedRaise (); } } return EVENT_FILTER_REMOVE; } static eventFilterStatus handlePropertyNotify (DisplayInfo *display_info, XPropertyEvent * ev) { eventFilterStatus status; ScreenInfo *screen_info; Client *c; TRACE ("entering handlePropertyNotify"); status = EVENT_FILTER_PASS; c = myDisplayGetClientFromWindow (display_info, ev->window, SEARCH_WINDOW | SEARCH_WIN_USER_TIME); if (c) { status = EVENT_FILTER_REMOVE; screen_info = c->screen_info; if (ev->atom == XA_WM_NORMAL_HINTS) { TRACE ("client \"%s\" (0x%lx) has received a XA_WM_NORMAL_HINTS notify", c->name, c->window); clientGetWMNormalHints (c, TRUE); } else if ((ev->atom == XA_WM_NAME) || (ev->atom == display_info->atoms[NET_WM_NAME]) || (ev->atom == display_info->atoms[WM_CLIENT_MACHINE])) { TRACE ("client \"%s\" (0x%lx) has received a XA_WM_NAME/NET_WM_NAME/WM_CLIENT_MACHINE notify", c->name, c->window); clientUpdateName (c); } else if (ev->atom == display_info->atoms[MOTIF_WM_HINTS]) { TRACE ("client \"%s\" (0x%lx) has received a MOTIF_WM_HINTS notify", c->name, c->window); clientGetMWMHints (c, TRUE); } else if (ev->atom == XA_WM_HINTS) { TRACE ("client \"%s\" (0x%lx) has received a XA_WM_HINTS notify", c->name, c->window); c->wmhints = XGetWMHints (display_info->dpy, c->window); if (c->wmhints) { if (c->wmhints->flags & WindowGroupHint) { c->group_leader = c->wmhints->window_group; } if ((c->wmhints->flags & IconPixmapHint) && (screen_info->params->show_app_icon)) { clientUpdateIcon (c); } if (HINTS_ACCEPT_INPUT (c->wmhints)) { FLAG_SET (c->wm_flags, WM_FLAG_INPUT); } else { FLAG_UNSET (c->wm_flags, WM_FLAG_INPUT); } } clientUpdateUrgency (c); } else if (ev->atom == display_info->atoms[WM_PROTOCOLS]) { TRACE ("client \"%s\" (0x%lx) has received a WM_PROTOCOLS notify", c->name, c->window); clientGetWMProtocols (c); } else if (ev->atom == display_info->atoms[WM_TRANSIENT_FOR]) { Window w; TRACE ("client \"%s\" (0x%lx) has received a WM_TRANSIENT_FOR notify", c->name, c->window); getTransientFor (display_info, c->screen_info->xroot, c->window, &w); if (clientCheckTransientWindow (c, w)) { c->transient_for = w; } } else if (ev->atom == display_info->atoms[WIN_HINTS]) { TRACE ("client \"%s\" (0x%lx) has received a WIN_HINTS notify", c->name, c->window); getHint (display_info, c->window, WIN_HINTS, (long *) &c->win_hints); } else if (ev->atom == display_info->atoms[NET_WM_WINDOW_TYPE]) { TRACE ("client \"%s\" (0x%lx) has received a NET_WM_WINDOW_TYPE notify", c->name, c->window); clientGetNetWmType (c); frameQueueDraw (c, TRUE); } else if ((ev->atom == display_info->atoms[NET_WM_STRUT]) || (ev->atom == display_info->atoms[NET_WM_STRUT_PARTIAL])) { TRACE ("client \"%s\" (0x%lx) has received a NET_WM_STRUT notify", c->name, c->window); if (clientGetNetStruts (c) && FLAG_TEST (c->xfwm_flags, XFWM_FLAG_VISIBLE)) { workspaceUpdateArea (c->screen_info); } } else if (ev->atom == display_info->atoms[WM_COLORMAP_WINDOWS]) { TRACE ("client \"%s\" (0x%lx) has received a WM_COLORMAP_WINDOWS notify", c->name, c->window); clientUpdateColormaps (c); if (c == clientGetFocus ()) { clientInstallColormaps (c); } } else if (ev->atom == display_info->atoms[NET_WM_USER_TIME]) { TRACE ("client \"%s\" (0x%lx) has received a NET_WM_USER_TIME notify", c->name, c->window); if (getNetWMUserTime (display_info, c->window, &c->user_time) && (c->user_time != 0)) { myDisplaySetLastUserTime (display_info, c->user_time); FLAG_SET (c->flags, CLIENT_FLAG_HAS_USER_TIME); } } else if (ev->atom == display_info->atoms[NET_WM_USER_TIME_WINDOW]) { TRACE ("client \"%s\" (0x%lx) has received a NET_WM_USER_TIME_WINDOW notify", c->name, c->window); clientRemoveUserTimeWin (c); c->user_time_win = getNetWMUserTimeWindow(display_info, c->window); clientAddUserTimeWin (c); } else if (ev->atom == display_info->atoms[NET_WM_PID]) { long pid; TRACE ("client \"%s\" (0x%lx) has received a NET_WM_PID notify", c->name, c->window); getHint (display_info, c->window, NET_WM_PID, (long *) &pid); c->pid = (GPid) pid; TRACE ("Client \"%s\" (0x%lx) updated PID = %i", c->name, c->window, c->pid); } else if (ev->atom == display_info->atoms[NET_WM_WINDOW_OPACITY]) { TRACE ("client \"%s\" (0x%lx) has received a NET_WM_OPACITY notify", c->name, c->window); if (!getOpacity (display_info, c->window, &c->opacity)) { c->opacity = NET_WM_OPAQUE; } compositorWindowSetOpacity (display_info, c->frame, c->opacity); } else if (ev->atom == display_info->atoms[NET_WM_WINDOW_OPACITY_LOCKED]) { TRACE ("client \"%s\" (0x%lx) has received a NET_WM_OPACITY_LOCKED notify", c->name, c->window); if (getOpacityLock (display_info, c->window)) { FLAG_SET (c->xfwm_flags, XFWM_FLAG_OPACITY_LOCKED); } else { FLAG_UNSET (c->xfwm_flags, XFWM_FLAG_OPACITY_LOCKED); } } else if ((screen_info->params->show_app_icon) && ((ev->atom == display_info->atoms[NET_WM_ICON]) || (ev->atom == display_info->atoms[KWM_WIN_ICON]))) { clientUpdateIcon (c); } #ifdef HAVE_STARTUP_NOTIFICATION else if (ev->atom == display_info->atoms[NET_STARTUP_ID]) { if (c->startup_id) { g_free (c->startup_id); c->startup_id = NULL; } getWindowStartupId (display_info, c->window, &c->startup_id); } #endif /* HAVE_STARTUP_NOTIFICATION */ #ifdef HAVE_XSYNC else if (ev->atom == display_info->atoms[NET_WM_SYNC_REQUEST_COUNTER]) { getXSyncCounter (display_info, c->window, &c->xsync_counter); TRACE ("Window 0x%lx has NET_WM_SYNC_REQUEST_COUNTER set to 0x%lx", c->window, c->xsync_counter); } #endif /* HAVE_XSYNC */ return status; } screen_info = myDisplayGetScreenFromWindow (display_info, ev->window); if (!screen_info) { return status; } if (ev->atom == display_info->atoms[NET_DESKTOP_NAMES]) { gchar **names; int items; TRACE ("root has received a NET_DESKTOP_NAMES notify"); if (getUTF8StringList (display_info, screen_info->xroot, NET_DESKTOP_NAMES, &names, &items)) { workspaceSetNames (screen_info, names, items); } } else if (ev->atom == display_info->atoms[GNOME_PANEL_DESKTOP_AREA]) { TRACE ("root has received a GNOME_PANEL_DESKTOP_AREA notify"); getGnomeDesktopMargins (display_info, screen_info->xroot, screen_info->gnome_margins); workspaceUpdateArea (screen_info); } else if (ev->atom == display_info->atoms[NET_DESKTOP_LAYOUT]) { TRACE ("root has received a NET_DESKTOP_LAYOUT notify"); getDesktopLayout(display_info, screen_info->xroot, screen_info->workspace_count, &screen_info->desktop_layout); placeSidewalks(screen_info, screen_info->params->wrap_workspaces); } return status; } static eventFilterStatus handleClientMessage (DisplayInfo *display_info, XClientMessageEvent * ev) { eventFilterStatus status; ScreenInfo *screen_info; Client *c; TRACE ("entering handleClientMessage"); status = EVENT_FILTER_PASS; c = myDisplayGetClientFromWindow (display_info, ev->window, SEARCH_WINDOW); if (c) { status = EVENT_FILTER_REMOVE; screen_info = c->screen_info; if ((ev->message_type == display_info->atoms[WM_CHANGE_STATE]) && (ev->format == 32) && (ev->data.l[0] == IconicState)) { TRACE ("client \"%s\" (0x%lx) has received a WM_CHANGE_STATE event", c->name, c->window); if (!FLAG_TEST (c->flags, CLIENT_FLAG_ICONIFIED)) { clientWithdraw (c, c->win_workspace, TRUE); } } else if ((ev->message_type == display_info->atoms[WIN_STATE]) && (ev->format == 32)) { TRACE ("client \"%s\" (0x%lx) has received a WIN_STATE event", c->name, c->window); clientUpdateWinState (c, ev); } else if ((ev->message_type == display_info->atoms[WIN_LAYER]) && (ev->format == 32)) { TRACE ("client \"%s\" (0x%lx) has received a WIN_LAYER event", c->name, c->window); if (ev->data.l[0] != c->win_layer) { clientSetLayer (c, ev->data.l[0]); } } else if ((ev->message_type == display_info->atoms[WIN_WORKSPACE]) && (ev->format == 32)) { TRACE ("client \"%s\" (0x%lx) has received a WIN_WORKSPACE event", c->name, c->window); if (ev->data.l[0] != c->win_workspace) { clientSetWorkspace (c, ev->data.l[0], TRUE); } } else if ((ev->message_type == display_info->atoms[NET_WM_DESKTOP]) && (ev->format == 32)) { TRACE ("client \"%s\" (0x%lx) has received a NET_WM_DESKTOP event", c->name, c->window); if (ev->data.l[0] == ALL_WORKSPACES) { if (FLAG_TEST (c->xfwm_flags, XFWM_FLAG_HAS_STICK) && !FLAG_TEST (c->flags, CLIENT_FLAG_STICKY)) { clientStick (c, TRUE); frameQueueDraw (c, FALSE); } } else { if (FLAG_TEST (c->xfwm_flags, XFWM_FLAG_HAS_STICK) && FLAG_TEST (c->flags, CLIENT_FLAG_STICKY)) { clientUnstick (c, TRUE); frameQueueDraw (c, FALSE); } if (ev->data.l[0] != c->win_workspace) { clientSetWorkspace (c, ev->data.l[0], TRUE); } } } else if ((ev->message_type == display_info->atoms[NET_CLOSE_WINDOW]) && (ev->format == 32)) { TRACE ("client \"%s\" (0x%lx) has received a NET_CLOSE_WINDOW event", c->name, c->window); clientClose (c); } else if ((ev->message_type == display_info->atoms[NET_WM_STATE]) && (ev->format == 32)) { TRACE ("client \"%s\" (0x%lx) has received a NET_WM_STATE event", c->name, c->window); clientUpdateNetState (c, ev); } else if ((ev->message_type == display_info->atoms[NET_WM_MOVERESIZE]) && (ev->format == 32)) { TRACE ("client \"%s\" (0x%lx) has received a NET_WM_MOVERESIZE event", c->name, c->window); clientNetMoveResize (c, ev); } else if ((ev->message_type == display_info->atoms[NET_MOVERESIZE_WINDOW]) && (ev->format == 32)) { TRACE ("client \"%s\" (0x%lx) has received a NET_MOVERESIZE_WINDOW event", c->name, c->window); clientNetMoveResizeWindow (c, ev); } else if ((ev->message_type == display_info->atoms[NET_ACTIVE_WINDOW]) && (ev->format == 32)) { gboolean source_is_application; guint32 ev_time; ev_time = myDisplayGetTime (display_info, (guint32) ev->data.l[1]); source_is_application = (ev->data.l[0] == 1); TRACE ("client \"%s\" (0x%lx) has received a NET_ACTIVE_WINDOW event", c->name, c->window); if (source_is_application) { guint32 current = myDisplayGetLastUserTime (display_info); TRACE ("Time of event received is %u, current XServer time is %u", (guint32) ev_time, (guint32) current); if ((screen_info->params->prevent_focus_stealing) && TIMESTAMP_IS_BEFORE(ev_time, current)) { TRACE ("Setting WM_STATE_DEMANDS_ATTENTION flag on \"%s\" (0x%lx)", c->name, c->window); FLAG_SET (c->flags, CLIENT_FLAG_DEMANDS_ATTENTION); clientSetNetState (c); } else { clientActivate (c, ev_time); } } else { /* The request is either from a pager or an older client, use the most accurate timestamp */ clientActivate (c, getXServerTime (display_info)); } } else if (ev->message_type == display_info->atoms[NET_REQUEST_FRAME_EXTENTS]) { TRACE ("client \"%s\" (0x%lx) has received a NET_REQUEST_FRAME_EXTENTS event", c->name, c->window); setNetFrameExtents (display_info, c->window, frameTop (c), frameLeft (c), frameRight (c), frameBottom (c)); } else if (ev->message_type == display_info->atoms[NET_WM_FULLSCREEN_MONITORS]) { TRACE ("client \"%s\" (0x%lx) has received a NET_WM_FULLSCREEN_MONITORS event", c->name, c->window); clientSetFullscreenMonitor (c, (gint) ev->data.l[0], (gint) ev->data.l[1], (gint) ev->data.l[2], (gint) ev->data.l[3]); } } else { screen_info = myDisplayGetScreenFromWindow (display_info, ev->window); if (!screen_info) { return status; } status = EVENT_FILTER_REMOVE; if (((ev->message_type == display_info->atoms[WIN_WORKSPACE]) || (ev->message_type == display_info->atoms[NET_CURRENT_DESKTOP])) && (ev->format == 32)) { TRACE ("root has received a win_workspace or a NET_CURRENT_DESKTOP event %li", ev->data.l[0]); if ((ev->data.l[0] >= 0) && (ev->data.l[0] < screen_info->workspace_count) && (ev->data.l[0] != screen_info->current_ws)) { workspaceSwitch (screen_info, ev->data.l[0], NULL, TRUE, myDisplayGetTime (display_info, (guint32) ev->data.l[1])); } } else if (((ev->message_type == display_info->atoms[WIN_WORKSPACE_COUNT]) || (ev->message_type == display_info->atoms[NET_NUMBER_OF_DESKTOPS])) && (ev->format == 32)) { TRACE ("root has received a win_workspace_count event"); if (ev->data.l[0] != screen_info->workspace_count) { workspaceSetCount (screen_info, ev->data.l[0]); getDesktopLayout(display_info, screen_info->xroot, screen_info->workspace_count, &screen_info->desktop_layout); } } else if ((ev->message_type == display_info->atoms[NET_SHOWING_DESKTOP]) && (ev->format == 32)) { TRACE ("root has received a NET_SHOWING_DESKTOP event"); screen_info->show_desktop = (ev->data.l[0] != 0); clientToggleShowDesktop (screen_info); setHint (display_info, screen_info->xroot, NET_SHOWING_DESKTOP, ev->data.l[0]); } else if (ev->message_type == display_info->atoms[NET_REQUEST_FRAME_EXTENTS]) { TRACE ("window (0x%lx) has received a NET_REQUEST_FRAME_EXTENTS event", ev->window); /* Size estimate from the decoration extents */ setNetFrameExtents (display_info, ev->window, frameDecorationTop (screen_info), frameDecorationLeft (screen_info), frameDecorationRight (screen_info), frameDecorationBottom (screen_info)); } else if ((ev->message_type == display_info->atoms[MANAGER]) && (ev->format == 32)) { Atom selection; TRACE ("window (0x%lx) has received a MANAGER event", ev->window); selection = (Atom) ev->data.l[1]; #ifdef ENABLE_KDE_SYSTRAY_PROXY if (selection == screen_info->net_system_tray_selection) { TRACE ("root has received a NET_SYSTEM_TRAY_MANAGER selection event"); screen_info->systray = getSystrayWindow (display_info, screen_info->net_system_tray_selection); } else #endif if (myScreenCheckWMAtom (screen_info, selection)) { TRACE ("root has received a WM_Sn selection event"); display_info->quit = TRUE; } } else if (ev->message_type == display_info->atoms[WM_PROTOCOLS]) { if (ev->data.l[0] == display_info->atoms[NET_WM_PING]) { TRACE ("root has received a NET_WM_PING (pong) event\n"); clientReceiveNetWMPong (screen_info, (guint32) ev->data.l[1]); } } else { TRACE ("unidentified client message for window 0x%lx", ev->window); } } return status; } static eventFilterStatus handleSelectionClear (DisplayInfo *display_info, XSelectionClearEvent * ev) { eventFilterStatus status; ScreenInfo *screen_info; TRACE ("entering handleSelectionClear"); status = EVENT_FILTER_PASS; screen_info = myDisplayGetScreenFromWindow (display_info, ev->window); if (screen_info) { if (myScreenCheckWMAtom (screen_info, ev->selection)) { TRACE ("root has received a WM_Sn selection event"); display_info->quit = TRUE; status = EVENT_FILTER_REMOVE; } } return status; } static eventFilterStatus handleShape (DisplayInfo *display_info, XShapeEvent * ev) { Client *c; gboolean update; TRACE ("entering handleShape"); c = myDisplayGetClientFromWindow (display_info, ev->window, SEARCH_WINDOW); if (c) { update = FALSE; if (ev->kind == ShapeBounding) { if ((ev->shaped) && !FLAG_TEST (c->flags, CLIENT_FLAG_HAS_SHAPE)) { FLAG_SET (c->flags, CLIENT_FLAG_HAS_SHAPE); clientGetMWMHints (c, TRUE); update = TRUE; } else if (!(ev->shaped) && FLAG_TEST (c->flags, CLIENT_FLAG_HAS_SHAPE)) { FLAG_UNSET (c->flags, CLIENT_FLAG_HAS_SHAPE); clientGetMWMHints (c, TRUE); update = TRUE; } } if (!update) { frameQueueDraw (c, FALSE); } } return EVENT_FILTER_REMOVE; } static eventFilterStatus handleColormapNotify (DisplayInfo *display_info, XColormapEvent * ev) { Client *c; TRACE ("entering handleColormapNotify"); c = myDisplayGetClientFromWindow (display_info, ev->window, SEARCH_WINDOW); if ((c) && (ev->window == c->window) && (ev->new)) { if (c == clientGetFocus ()) { clientInstallColormaps (c); } return EVENT_FILTER_REMOVE; } return EVENT_FILTER_PASS; } static eventFilterStatus handleReparentNotify (DisplayInfo *display_info, XReparentEvent * ev) { TRACE ("entering handleReparentNotify, 0x%lx reparented in 0x%lx", ev->window, ev->parent); return EVENT_FILTER_PASS; } #ifdef HAVE_XSYNC static eventFilterStatus handleXSyncAlarmNotify (DisplayInfo *display_info, XSyncAlarmNotifyEvent * ev) { Client *c; TRACE ("entering handleXSyncAlarmNotify"); if (!display_info->have_xsync) { return EVENT_FILTER_REMOVE; } c = myDisplayGetClientFromXSyncAlarm (display_info, ev->alarm); if (c) { c->xsync_waiting = FALSE; c->xsync_value = ev->counter_value; clientXSyncClearTimeout (c); } return EVENT_FILTER_REMOVE; } #endif /* HAVE_XSYNC */ static eventFilterStatus handleEvent (DisplayInfo *display_info, XEvent * ev) { eventFilterStatus status; status = EVENT_FILTER_PASS; TRACE ("entering handleEvent"); /* Update the display time */ myDisplayUpdateCurrentTime (display_info, ev); sn_process_event (ev); switch (ev->type) { case MotionNotify: status = handleMotionNotify (display_info, (XMotionEvent *) ev); break; case KeyPress: status = handleKeyPress (display_info, (XKeyEvent *) ev); break; case KeyRelease: status = handleKeyRelease (display_info, (XKeyEvent *) ev); break; case ButtonPress: status = handleButtonPress (display_info, (XButtonEvent *) ev); break; case ButtonRelease: status = handleButtonRelease (display_info, (XButtonEvent *) ev); break; case DestroyNotify: status = handleDestroyNotify (display_info, (XDestroyWindowEvent *) ev); break; case UnmapNotify: status = handleUnmapNotify (display_info, (XUnmapEvent *) ev); break; case MapRequest: status = handleMapRequest (display_info, (XMapRequestEvent *) ev); break; case MapNotify: status = handleMapNotify (display_info, (XMapEvent *) ev); break; case ConfigureNotify: status = handleConfigureNotify (display_info, (XConfigureEvent *) ev); break; case ConfigureRequest: status = handleConfigureRequest (display_info, (XConfigureRequestEvent *) ev); break; case EnterNotify: status = handleEnterNotify (display_info, (XCrossingEvent *) ev); break; case LeaveNotify: status = handleLeaveNotify (display_info, (XCrossingEvent *) ev); break; case FocusIn: status = handleFocusIn (display_info, (XFocusChangeEvent *) ev); break; case FocusOut: status = handleFocusOut (display_info, (XFocusChangeEvent *) ev); break; case PropertyNotify: status = handlePropertyNotify (display_info, (XPropertyEvent *) ev); break; case ClientMessage: status = handleClientMessage (display_info, (XClientMessageEvent *) ev); break; case SelectionClear: status = handleSelectionClear (display_info, (XSelectionClearEvent *) ev); break; case ColormapNotify: handleColormapNotify (display_info, (XColormapEvent *) ev); break; case ReparentNotify: status = handleReparentNotify (display_info, (XReparentEvent *) ev); break; default: if ((display_info->have_shape) && (ev->type == display_info->shape_event_base)) { status = handleShape (display_info, (XShapeEvent *) ev); } #ifdef HAVE_XSYNC if ((display_info->have_xsync) && (ev->type == (display_info->xsync_event_base + XSyncAlarmNotify))) { status = handleXSyncAlarmNotify (display_info, (XSyncAlarmNotifyEvent *) ev); } #endif /* HAVE_XSYNC */ } if (!gdk_events_pending () && !XPending (display_info->dpy)) { if (display_info->reload) { reloadSettings (display_info, UPDATE_ALL); display_info->reload = FALSE; } else if (display_info->quit) { /* * Qutting on purpose, update session manager so * it does not restart the program immediately */ client_session_set_restart_style(display_info->session, SESSION_RESTART_IF_RUNNING); gtk_main_quit (); } } compositorHandleEvent (display_info, ev); return status; } eventFilterStatus xfwm4_event_filter (XEvent * xevent, gpointer data) { eventFilterStatus status; DisplayInfo *display_info; display_info = (DisplayInfo *) data; TRACE ("entering xfwm4_event_filter"); status = handleEvent (display_info, xevent); TRACE ("leaving xfwm4_event_filter"); return EVENT_FILTER_STOP | status; } /* GTK specific stuff */ static void menu_callback (Menu * menu, MenuOp op, Window xid, gpointer menu_data, gpointer item_data) { Client *c; TRACE ("entering menu_callback"); if (!xfwmWindowDeleted(&menu_event_window)) { xfwmWindowDelete (&menu_event_window); } c = NULL; if ((menu_data != NULL) && (xid != None)) { ScreenInfo *screen_info = (ScreenInfo *) menu_data; c = myScreenGetClientFromWindow (screen_info, xid, SEARCH_WINDOW); } if (c) { c->button_status[MENU_BUTTON] = BUTTON_STATE_NORMAL; switch (op) { case MENU_OP_QUIT: gtk_main_quit (); break; case MENU_OP_MAXIMIZE: case MENU_OP_UNMAXIMIZE: if (CLIENT_CAN_MAXIMIZE_WINDOW (c)) { clientToggleMaximized (c, WIN_STATE_MAXIMIZED, TRUE); } break; case MENU_OP_MINIMIZE: if (CLIENT_CAN_HIDE_WINDOW (c)) { clientWithdraw (c, c->win_workspace, TRUE); } break; case MENU_OP_MOVE: clientMove (c, NULL); break; case MENU_OP_RESIZE: clientResize (c, CORNER_BOTTOM_RIGHT, NULL); break; case MENU_OP_MINIMIZE_ALL: clientWithdrawAll (c, c->win_workspace); break; case MENU_OP_UNMINIMIZE: clientShow (c, TRUE); clientClearAllShowDesktop (c->screen_info); break; case MENU_OP_SHADE: case MENU_OP_UNSHADE: clientToggleShaded (c); break; case MENU_OP_STICK: case MENU_OP_UNSTICK: clientToggleSticky (c, TRUE); frameQueueDraw (c, FALSE); break; case MENU_OP_WORKSPACES: clientSetWorkspace (c, GPOINTER_TO_INT (item_data), TRUE); break; case MENU_OP_DELETE: clientClose (c); break; case MENU_OP_CONTEXT_HELP: clientEnterContextMenuState (c); break; case MENU_OP_ABOVE: clientToggleLayerAbove (c); break; case MENU_OP_NORMAL: clientSetLayerNormal (c); break; case MENU_OP_BELOW: clientToggleLayerBelow (c); break; case MENU_OP_FULLSCREEN: case MENU_OP_UNFULLSCREEN: clientToggleFullscreen (c); break; default: frameQueueDraw (c, FALSE); break; } } else { gdk_beep (); } menu_free (menu); } void initMenuEventWin (void) { xfwmWindowInit (&menu_event_window); } static void show_window_menu (Client *c, gint px, gint py, guint button, guint32 time) { ScreenInfo *screen_info; DisplayInfo *display_info; Menu *menu; MenuOp ops; MenuOp insensitive; gboolean is_transient; gint x, y; TRACE ("entering show_window_menu"); if ((button != Button1) && (button != Button3)) { return; } if (!c || !FLAG_TEST_ALL (c->xfwm_flags, XFWM_FLAG_HAS_BORDER | XFWM_FLAG_VISIBLE)) { return; } screen_info = c->screen_info; display_info = screen_info->display_info; is_transient = clientIsValidTransientOrModal (c); x = px; y = py; c->button_status[MENU_BUTTON] = BUTTON_STATE_PRESSED; frameQueueDraw (c, FALSE); y = (gdouble) c->y; ops = MENU_OP_DELETE | MENU_OP_MINIMIZE_ALL | MENU_OP_WORKSPACES | MENU_OP_MOVE | MENU_OP_RESIZE; insensitive = 0; if (FLAG_TEST (c->flags, CLIENT_FLAG_MAXIMIZED)) { ops |= MENU_OP_UNMAXIMIZE; } else { ops |= MENU_OP_MAXIMIZE; } if (!FLAG_TEST (c->xfwm_flags, XFWM_FLAG_HAS_MOVE)) { insensitive |= MENU_OP_MOVE; } if (FLAG_TEST (c->flags, CLIENT_FLAG_ICONIFIED)) { ops |= MENU_OP_UNMINIMIZE; } else { ops |= MENU_OP_MINIMIZE; } if (FLAG_TEST (c->flags, CLIENT_FLAG_SHADED)) { ops |= MENU_OP_UNSHADE; } else { ops |= MENU_OP_SHADE; } if (FLAG_TEST (c->flags, CLIENT_FLAG_STICKY)) { ops |= MENU_OP_UNSTICK; } else { ops |= MENU_OP_STICK; } if (!FLAG_TEST (c->xfwm_flags, XFWM_FLAG_HAS_CLOSE)) { insensitive |= MENU_OP_DELETE; } if (is_transient || !FLAG_TEST(c->xfwm_flags, XFWM_FLAG_HAS_STICK)) { insensitive |= MENU_OP_STICK | MENU_OP_UNSTICK; } if (!CLIENT_CAN_HIDE_WINDOW (c)) { insensitive |= MENU_OP_MINIMIZE; } if (!CLIENT_CAN_MAXIMIZE_WINDOW (c)) { insensitive |= MENU_OP_MAXIMIZE; } if (!FLAG_TEST (c->xfwm_flags, XFWM_FLAG_HAS_MOVE)) { insensitive |= MENU_OP_MOVE; } if (!FLAG_TEST_ALL (c->xfwm_flags, XFWM_FLAG_HAS_RESIZE | XFWM_FLAG_IS_RESIZABLE) || FLAG_TEST_ALL (c->flags, CLIENT_FLAG_MAXIMIZED)) { insensitive |= MENU_OP_RESIZE; } if (FLAG_TEST (c->flags, CLIENT_FLAG_FULLSCREEN)) { insensitive |= MENU_OP_SHADE | MENU_OP_MOVE | MENU_OP_RESIZE | MENU_OP_MAXIMIZE | MENU_OP_UNMAXIMIZE; } if (FLAG_TEST(c->flags, CLIENT_FLAG_FULLSCREEN)) { ops |= MENU_OP_UNFULLSCREEN; } else { ops |= MENU_OP_FULLSCREEN; } if (is_transient || (c->type != WINDOW_NORMAL)) { insensitive |= MENU_OP_FULLSCREEN | MENU_OP_UNFULLSCREEN; } if (FLAG_TEST(c->flags, CLIENT_FLAG_ABOVE)) { ops |= MENU_OP_NORMAL | MENU_OP_BELOW; } else if (FLAG_TEST(c->flags, CLIENT_FLAG_BELOW)) { ops |= MENU_OP_NORMAL | MENU_OP_ABOVE; } else { ops |= MENU_OP_ABOVE | MENU_OP_BELOW; } if (is_transient || FLAG_TEST (c->flags, CLIENT_FLAG_FULLSCREEN)) { insensitive |= MENU_OP_NORMAL | MENU_OP_ABOVE | MENU_OP_BELOW; } /* KDE extension */ clientGetWMProtocols(c); if (FLAG_TEST (c->wm_flags, WM_FLAG_CONTEXT_HELP)) { ops |= MENU_OP_CONTEXT_HELP; } if (is_transient || !FLAG_TEST (c->xfwm_flags, XFWM_FLAG_HAS_STICK) || FLAG_TEST (c->flags, CLIENT_FLAG_STICKY)) { insensitive |= MENU_OP_WORKSPACES; } if (screen_info->button_handler_id) { g_signal_handler_disconnect (GTK_OBJECT (myScreenGetGtkWidget (screen_info)), screen_info->button_handler_id); } screen_info->button_handler_id = g_signal_connect (GTK_OBJECT (myScreenGetGtkWidget (screen_info)), "button_press_event", GTK_SIGNAL_FUNC (show_popup_cb), (gpointer) NULL); if (!xfwmWindowDeleted(&menu_event_window)) { xfwmWindowDelete (&menu_event_window); } /* Since all button press/release events are catched by the windows frames, there is some side effect with GTK menu. When a menu is opened, any click on the window frame is not detected as a click outside the menu, and the menu doesn't close. To avoid this (painless but annoying) behavior, we just setup a no event window that "hides" the events to regular windows. That might look tricky, but it's very efficient and save plenty of lines of complicated code. Don't forget to delete that window once the menu is closed, though, or we'll get in trouble. */ xfwmWindowTemp (screen_info, NULL, 0, screen_info->xroot, &menu_event_window, 0, 0, screen_info->width, screen_info->height, NoEventMask, FALSE); menu = menu_default (screen_info->gscr, c->window, ops, insensitive, menu_callback, c->win_workspace, screen_info->workspace_count, screen_info->workspace_names, screen_info->workspace_names_items, display_info->xfilter, screen_info); if (!menu_popup (menu, x, y, button, time)) { TRACE ("Cannot open menu"); gdk_beep (); c->button_status[MENU_BUTTON] = BUTTON_STATE_NORMAL; frameQueueDraw (c, FALSE); xfwmWindowDelete (&menu_event_window); menu_free (menu); } } static gboolean show_popup_cb (GtkWidget * widget, GdkEventButton * ev, gpointer data) { TRACE ("entering show_popup_cb"); show_window_menu ((Client *) data, (gint) ev->x_root, (gint) ev->y_root, ev->button, ev->time); return (TRUE); } static gboolean set_reload (GObject * obj, GdkEvent * ev, gpointer data) { DisplayInfo *display_info; TRACE ("setting reload flag so all prefs will be reread at next event loop"); display_info = (DisplayInfo *) data; display_info->reload = TRUE; return (TRUE); } static gboolean dbl_click_time_cb (GObject * obj, GdkEvent * ev, gpointer data) { DisplayInfo *display_info; GValue tmp_val = { 0, }; display_info = (DisplayInfo *) data; g_return_val_if_fail (display_info, TRUE); g_value_init (&tmp_val, G_TYPE_INT); if (gdk_setting_get ("gtk-double-click-time", &tmp_val)) { display_info->dbl_click_time = abs (g_value_get_int (&tmp_val)); } return (TRUE); } static gboolean client_event_cb (GtkWidget * widget, GdkEventClient * ev, gpointer data) { TRACE ("entering client_event_cb"); if (!atom_rcfiles) { atom_rcfiles = gdk_atom_intern ("_GTK_READ_RCFILES", FALSE); } if (ev->message_type == atom_rcfiles) { set_reload (G_OBJECT (widget), (GdkEvent *) ev, data); } return (FALSE); } static void size_changed_cb(GdkScreen *gscreen, gpointer data) { ScreenInfo *screen_info; DisplayInfo *display_info; TRACE ("entering size_changed_cb"); screen_info = (ScreenInfo *) data; g_return_if_fail (screen_info); display_info = screen_info->display_info; screen_info->width = WidthOfScreen (screen_info->xscreen); screen_info->height = HeightOfScreen (screen_info->xscreen); setNetWorkarea (display_info, screen_info->xroot, screen_info->workspace_count, screen_info->width, screen_info->height, screen_info->margins); placeSidewalks (screen_info, screen_info->params->wrap_workspaces); clientScreenResize (screen_info); compositorUpdateScreenSize (screen_info); } static void monitors_changed_cb(GdkScreen *gscreen, gpointer data) { ScreenInfo *screen_info; TRACE ("entering monitors_changed_cb"); screen_info = (ScreenInfo *) data; g_return_if_fail (screen_info); /* We have added/removed a monitor or even changed the layout, * the cache for monitor position we use in our screen structure * is not valid anymore and potentially refers to a monitor that * was just removed, so invalidate it. */ screen_info->cache_monitor.x = -1; screen_info->cache_monitor.y = -1; screen_info->cache_monitor.width = 0; screen_info->cache_monitor.height = 0; /* * From the window manager point of view, * a XRand 1.2 monitor change is similar to * a screen size change. */ size_changed_cb (gscreen, data); } void initGtkCallbacks (ScreenInfo *screen_info) { GtkSettings *settings; screen_info->button_handler_id = g_signal_connect (GTK_OBJECT (myScreenGetGtkWidget (screen_info)), "button_press_event", GTK_SIGNAL_FUNC (show_popup_cb), (gpointer) NULL); g_signal_connect (GTK_OBJECT (myScreenGetGtkWidget (screen_info)), "client_event", GTK_SIGNAL_FUNC (client_event_cb), (gpointer) (screen_info->display_info)); g_signal_connect (G_OBJECT(screen_info->gscr), "size-changed", G_CALLBACK(size_changed_cb), (gpointer) (screen_info)); if(gtk_major_version > 2 || (gtk_major_version == 2 && gtk_minor_version >= 13)) { TRACE ("connect \"monitors-changed\" cb"); g_signal_connect (G_OBJECT(screen_info->gscr), "monitors-changed", G_CALLBACK(monitors_changed_cb), (gpointer) (screen_info)); } settings = gtk_settings_get_default (); if (settings) { g_signal_connect (settings, "notify::gtk-theme-name", G_CALLBACK (set_reload), (gpointer) (screen_info->display_info)); g_signal_connect (settings, "notify::gtk-font-name", G_CALLBACK (set_reload), (gpointer) (screen_info->display_info)); g_signal_connect (settings, "notify::gtk-double-click-time", G_CALLBACK (dbl_click_time_cb), (gpointer) (screen_info->display_info)); } }