From d7771a30eec76ebe9bb03b56ff29c4e54f4b426a Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Thu, 13 Mar 2014 18:34:14 -0400 Subject: [PATCH] Convert window menus to a compositor implementation --- src/Makefile.am | 4 - src/compositor/compositor.c | 12 + src/compositor/meta-plugin-manager.c | 15 + src/compositor/meta-plugin-manager.h | 4 + src/core/core.c | 114 ------ src/core/core.h | 5 - src/core/display-private.h | 4 - src/core/display.c | 3 - src/core/prefs.c | 37 -- src/core/window.c | 262 +------------- src/meta/common.h | 55 --- src/meta/compositor.h | 2 + src/meta/meta-plugin.h | 3 + src/meta/prefs.h | 4 - src/ui/menu.c | 518 --------------------------- src/ui/menu.h | 55 --- src/ui/metaaccellabel.c | 451 ----------------------- src/ui/metaaccellabel.h | 104 ------ src/ui/ui.c | 34 -- src/ui/ui.h | 15 - 20 files changed, 37 insertions(+), 1664 deletions(-) delete mode 100644 src/ui/menu.c delete mode 100644 src/ui/menu.h delete mode 100644 src/ui/metaaccellabel.c delete mode 100644 src/ui/metaaccellabel.h diff --git a/src/Makefile.am b/src/Makefile.am index d2daf0835..d087a92b1 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -178,10 +178,6 @@ libmutter_wayland_la_SOURCES = \ ui/ui.h \ ui/frames.c \ ui/frames.h \ - ui/menu.c \ - ui/menu.h \ - ui/metaaccellabel.c \ - ui/metaaccellabel.h \ ui/resizepopup.c \ ui/resizepopup.h \ ui/theme-parser.c \ diff --git a/src/compositor/compositor.c b/src/compositor/compositor.c index fdbf6d604..d6e7b3bcd 100644 --- a/src/compositor/compositor.c +++ b/src/compositor/compositor.c @@ -1723,3 +1723,15 @@ meta_compositor_hide_tile_preview (MetaCompositor *compositor, meta_plugin_manager_hide_tile_preview (info->plugin_mgr); } + +void +meta_compositor_show_window_menu (MetaCompositor *compositor, + MetaWindow *window) +{ + MetaCompScreen *info = meta_screen_get_compositor_data (window->screen); + + if (!info->plugin_mgr) + return; + + meta_plugin_manager_show_window_menu (info->plugin_mgr, window); +} diff --git a/src/compositor/meta-plugin-manager.c b/src/compositor/meta-plugin-manager.c index 41589a32c..06d810115 100644 --- a/src/compositor/meta-plugin-manager.c +++ b/src/compositor/meta-plugin-manager.c @@ -365,3 +365,18 @@ meta_plugin_manager_hide_tile_preview (MetaPluginManager *plugin_mgr) return FALSE; } + +void +meta_plugin_manager_show_window_menu (MetaPluginManager *plugin_mgr, + MetaWindow *window) +{ + MetaPlugin *plugin = plugin_mgr->plugin; + MetaPluginClass *klass = META_PLUGIN_GET_CLASS (plugin); + MetaDisplay *display = meta_screen_get_display (plugin_mgr->screen); + + if (display->display_opening) + return; + + if (klass->show_window_menu) + klass->show_window_menu (plugin, window); +} diff --git a/src/compositor/meta-plugin-manager.h b/src/compositor/meta-plugin-manager.h index efc4deb52..980bb3b00 100644 --- a/src/compositor/meta-plugin-manager.h +++ b/src/compositor/meta-plugin-manager.h @@ -80,4 +80,8 @@ gboolean meta_plugin_manager_show_tile_preview (MetaPluginManager *mgr, MetaRectangle *tile_rect, int tile_monitor_number); gboolean meta_plugin_manager_hide_tile_preview (MetaPluginManager *mgr); + +void meta_plugin_manager_show_window_menu (MetaPluginManager *mgr, + MetaWindow *window); + #endif diff --git a/src/core/core.c b/src/core/core.c index 9f41a3577..f6ed46bec 100644 --- a/src/core/core.c +++ b/src/core/core.c @@ -483,120 +483,6 @@ meta_core_show_window_menu (Display *xdisplay, meta_window_show_menu (window, root_x, root_y, button, timestamp); } -void -meta_core_get_menu_accelerator (MetaMenuOp menu_op, - int workspace, - unsigned int *keysym, - MetaVirtualModifier *modifiers) -{ - const char *name; - - name = NULL; - - switch (menu_op) - { - case META_MENU_OP_NONE: - /* No keybinding for this one */ - break; - case META_MENU_OP_DELETE: - name = "close"; - break; - case META_MENU_OP_MINIMIZE: - name = "minimize"; - break; - case META_MENU_OP_UNMAXIMIZE: - name = "unmaximize"; - break; - case META_MENU_OP_MAXIMIZE: - name = "maximize"; - break; - case META_MENU_OP_UNSHADE: - case META_MENU_OP_SHADE: - name = "toggle_shaded"; - break; - case META_MENU_OP_UNSTICK: - case META_MENU_OP_STICK: - name = "toggle-on-all-workspaces"; - break; - case META_MENU_OP_ABOVE: - case META_MENU_OP_UNABOVE: - name = "toggle-above"; - break; - case META_MENU_OP_WORKSPACES: - switch (workspace) - { - case 1: - name = "move-to-workspace-1"; - break; - case 2: - name = "move-to-workspace-2"; - break; - case 3: - name = "move-to-workspace-3"; - break; - case 4: - name = "move-to-workspace-4"; - break; - case 5: - name = "move-to-workspace-5"; - break; - case 6: - name = "move-to-workspace-6"; - break; - case 7: - name = "move-to-workspace-7"; - break; - case 8: - name = "move-to-workspace-8"; - break; - case 9: - name = "move-to-workspace-9"; - break; - case 10: - name = "move-to-workspace-10"; - break; - case 11: - name = "move-to-workspace-11"; - break; - case 12: - name = "move-to-workspace-12"; - break; - } - break; - case META_MENU_OP_MOVE: - name = "begin-move"; - break; - case META_MENU_OP_RESIZE: - name = "begin-resize"; - break; - case META_MENU_OP_MOVE_LEFT: - name = "move-to-workspace-left"; - break; - case META_MENU_OP_MOVE_RIGHT: - name = "move-to-workspace-right"; - break; - case META_MENU_OP_MOVE_UP: - name = "move-to-workspace-up"; - break; - case META_MENU_OP_MOVE_DOWN: - name = "move-to-workspace-down"; - break; - case META_MENU_OP_RECOVER: - /* No keybinding for this one */ - break; - } - - if (name) - { - meta_prefs_get_window_binding (name, keysym, modifiers); - } - else - { - *keysym = 0; - *modifiers = 0; - } -} - const char* meta_core_get_workspace_name_with_index (Display *xdisplay, Window xroot, diff --git a/src/core/core.h b/src/core/core.h index a3321531b..acd022778 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -164,11 +164,6 @@ void meta_core_show_window_menu (Display *xdisplay, int button, guint32 timestamp); -void meta_core_get_menu_accelerator (MetaMenuOp menu_op, - int workspace, - unsigned int *keysym, - MetaVirtualModifier *modifiers); - gboolean meta_core_begin_grab_op (Display *xdisplay, Window frame_xwindow, MetaGrabOp op, diff --git a/src/core/display-private.h b/src/core/display-private.h index 281cc92b2..88128ecee 100644 --- a/src/core/display-private.h +++ b/src/core/display-private.h @@ -263,10 +263,6 @@ struct _MetaDisplay /* Managed by group.c */ GHashTable *groups_by_leader; - /* currently-active window menu if any */ - MetaWindowMenu *window_menu; - MetaWindow *window_with_menu; - /* Managed by window-props.c */ MetaWindowPropHooks *prop_hooks_table; GHashTable *prop_hooks; diff --git a/src/core/display.c b/src/core/display.c index 576bf3813..25514126c 100644 --- a/src/core/display.c +++ b/src/core/display.c @@ -564,9 +564,6 @@ meta_display_open (void) the_display->monitor_cache_invalidated = TRUE; the_display->groups_by_leader = NULL; - - the_display->window_with_menu = NULL; - the_display->window_menu = NULL; the_display->screens = NULL; the_display->active_screen = NULL; diff --git a/src/core/prefs.c b/src/core/prefs.c index a2d01deaf..447e36196 100644 --- a/src/core/prefs.c +++ b/src/core/prefs.c @@ -2241,43 +2241,6 @@ meta_prefs_get_keybinding_action (const char *name) : META_KEYBINDING_ACTION_NONE; } -/* This is used by the menu system to decide what key binding - * to display next to an option. We return the first non-disabled - * binding, if any. - */ -void -meta_prefs_get_window_binding (const char *name, - unsigned int *keysym, - MetaVirtualModifier *modifiers) -{ - MetaKeyPref *pref = g_hash_table_lookup (key_bindings, name); - - if (pref->per_window) - { - GSList *s = pref->combos; - - while (s) - { - MetaKeyCombo *c = s->data; - - if (c->keysym != 0 || c->modifiers != 0) - { - *keysym = c->keysym; - *modifiers = c->modifiers; - return; - } - - s = s->next; - } - - /* Not found; return the disabled value */ - *keysym = *modifiers = 0; - return; - } - - g_assert_not_reached (); -} - gint meta_prefs_get_mouse_button_resize (void) { diff --git a/src/core/window.c b/src/core/window.c index c6cf2a3b8..5c48221d3 100644 --- a/src/core/window.c +++ b/src/core/window.c @@ -1522,13 +1522,6 @@ meta_window_unmanage (MetaWindow *window, meta_compositor_remove_window (window->display->compositor, window); } - if (window->display->window_with_menu == window) - { - meta_ui_window_menu_free (window->display->window_menu); - window->display->window_menu = NULL; - window->display->window_with_menu = NULL; - } - if (destroying_windows_disallowed > 0) meta_bug ("Tried to destroy window %s while destruction was not allowed\n", window->desc); @@ -7418,141 +7411,6 @@ meta_window_recalc_features (MetaWindow *window) */ } -static void -menu_callback (MetaWindowMenu *menu, - Display *xdisplay, - Window client_xwindow, - guint32 timestamp, - MetaMenuOp op, - int workspace_index, - gpointer data) -{ - MetaDisplay *display; - MetaWindow *window; - MetaWorkspace *workspace; - - display = meta_display_for_x_display (xdisplay); - window = meta_display_lookup_x_window (display, client_xwindow); - workspace = NULL; - - if (window != NULL) /* window can be NULL */ - { - meta_verbose ("Menu op %u on %s\n", op, window->desc); - - switch (op) - { - case META_MENU_OP_NONE: - /* nothing */ - break; - - case META_MENU_OP_DELETE: - meta_window_delete (window, timestamp); - break; - - case META_MENU_OP_MINIMIZE: - meta_window_minimize (window); - break; - - case META_MENU_OP_UNMAXIMIZE: - meta_window_unmaximize (window, META_MAXIMIZE_BOTH); - break; - - case META_MENU_OP_MAXIMIZE: - meta_window_maximize (window, META_MAXIMIZE_BOTH); - break; - - case META_MENU_OP_UNSHADE: - meta_window_unshade (window, timestamp); - break; - - case META_MENU_OP_SHADE: - meta_window_shade (window, timestamp); - break; - - case META_MENU_OP_MOVE_LEFT: - workspace = meta_workspace_get_neighbor (window->screen->active_workspace, - META_MOTION_LEFT); - break; - - case META_MENU_OP_MOVE_RIGHT: - workspace = meta_workspace_get_neighbor (window->screen->active_workspace, - META_MOTION_RIGHT); - break; - - case META_MENU_OP_MOVE_UP: - workspace = meta_workspace_get_neighbor (window->screen->active_workspace, - META_MOTION_UP); - break; - - case META_MENU_OP_MOVE_DOWN: - workspace = meta_workspace_get_neighbor (window->screen->active_workspace, - META_MOTION_DOWN); - break; - - case META_MENU_OP_WORKSPACES: - workspace = meta_screen_get_workspace_by_index (window->screen, - workspace_index); - break; - - case META_MENU_OP_STICK: - meta_window_stick (window); - break; - - case META_MENU_OP_UNSTICK: - meta_window_unstick (window); - break; - - case META_MENU_OP_ABOVE: - case META_MENU_OP_UNABOVE: - if (window->wm_state_above == FALSE) - meta_window_make_above (window); - else - meta_window_unmake_above (window); - break; - - case META_MENU_OP_MOVE: - meta_window_begin_grab_op (window, - META_GRAB_OP_KEYBOARD_MOVING, - TRUE, - timestamp); - break; - - case META_MENU_OP_RESIZE: - meta_window_begin_grab_op (window, - META_GRAB_OP_KEYBOARD_RESIZING_UNKNOWN, - TRUE, - timestamp); - break; - - case META_MENU_OP_RECOVER: - meta_window_shove_titlebar_onscreen (window); - break; - - default: - meta_warning (G_STRLOC": Unknown window op\n"); - break; - } - - if (workspace) - { - meta_window_change_workspace (window, - workspace); - } - } - else - { - meta_verbose ("Menu callback on nonexistent window\n"); - } - - if (display->window_menu == menu) - { - display->window_menu = NULL; - display->window_with_menu = NULL; - } - - meta_ui_window_menu_free (menu); -} - void meta_window_show_menu (MetaWindow *window, int root_x, @@ -7560,126 +7418,8 @@ meta_window_show_menu (MetaWindow *window, int button, guint32 timestamp) { - MetaMenuOp ops; - MetaMenuOp insensitive; - MetaWindowMenu *menu; - MetaWorkspaceLayout layout; - int n_workspaces; - gboolean ltr; - g_return_if_fail (!window->override_redirect); - - if (window->display->window_menu) - { - meta_ui_window_menu_free (window->display->window_menu); - window->display->window_menu = NULL; - window->display->window_with_menu = NULL; - } - - ops = META_MENU_OP_NONE; - insensitive = META_MENU_OP_NONE; - - ops |= (META_MENU_OP_DELETE | META_MENU_OP_MINIMIZE | META_MENU_OP_MOVE | META_MENU_OP_RESIZE); - - if (!meta_window_titlebar_is_onscreen (window) && - window->type != META_WINDOW_DOCK && - window->type != META_WINDOW_DESKTOP) - ops |= META_MENU_OP_RECOVER; - - if (!meta_prefs_get_workspaces_only_on_primary () || - meta_window_is_on_primary_monitor (window)) - { - n_workspaces = meta_screen_get_n_workspaces (window->screen); - - if (n_workspaces > 1) - ops |= META_MENU_OP_WORKSPACES; - - meta_screen_calc_workspace_layout (window->screen, - n_workspaces, - meta_workspace_index ( window->screen->active_workspace), - &layout); - - if (!window->on_all_workspaces) - { - ltr = meta_ui_get_direction() == META_UI_DIRECTION_LTR; - - if (layout.current_col > 0) - ops |= ltr ? META_MENU_OP_MOVE_LEFT : META_MENU_OP_MOVE_RIGHT; - if ((layout.current_col < layout.cols - 1) && - (layout.current_row * layout.cols + (layout.current_col + 1) < n_workspaces)) - ops |= ltr ? META_MENU_OP_MOVE_RIGHT : META_MENU_OP_MOVE_LEFT; - if (layout.current_row > 0) - ops |= META_MENU_OP_MOVE_UP; - if ((layout.current_row < layout.rows - 1) && - ((layout.current_row + 1) * layout.cols + layout.current_col < n_workspaces)) - ops |= META_MENU_OP_MOVE_DOWN; - } - - meta_screen_free_workspace_layout (&layout); - - ops |= META_MENU_OP_UNSTICK; - ops |= META_MENU_OP_STICK; - } - - if (META_WINDOW_MAXIMIZED (window)) - ops |= META_MENU_OP_UNMAXIMIZE; - else - ops |= META_MENU_OP_MAXIMIZE; - - if (window->wm_state_above) - ops |= META_MENU_OP_UNABOVE; - else - ops |= META_MENU_OP_ABOVE; - - if (!window->has_maximize_func) - insensitive |= META_MENU_OP_UNMAXIMIZE | META_MENU_OP_MAXIMIZE; - - if (!window->has_minimize_func) - insensitive |= META_MENU_OP_MINIMIZE; - - if (!window->has_close_func) - insensitive |= META_MENU_OP_DELETE; - - if (!window->has_shade_func) - insensitive |= META_MENU_OP_SHADE | META_MENU_OP_UNSHADE; - - if (!META_WINDOW_ALLOWS_MOVE (window)) - insensitive |= META_MENU_OP_MOVE; - - if (!META_WINDOW_ALLOWS_RESIZE (window)) - insensitive |= META_MENU_OP_RESIZE; - - if (window->always_sticky) - insensitive |= META_MENU_OP_STICK | META_MENU_OP_UNSTICK | META_MENU_OP_WORKSPACES; - - if ((window->type == META_WINDOW_DESKTOP) || - (window->type == META_WINDOW_DOCK) || - (window->type == META_WINDOW_SPLASHSCREEN || - META_WINDOW_MAXIMIZED (window))) - insensitive |= META_MENU_OP_ABOVE | META_MENU_OP_UNABOVE; - - /* If all operations are disabled, just quit without showing the menu. - * This is the case, for example, with META_WINDOW_DESKTOP windows. - */ - if ((ops & ~insensitive) == 0) - return; - - menu = - meta_ui_window_menu_new (window->screen->ui, - window->xwindow, - ops, - insensitive, - meta_window_get_net_wm_desktop (window), - meta_screen_get_n_workspaces (window->screen), - menu_callback, - NULL); - - window->display->window_menu = menu; - window->display->window_with_menu = window; - - meta_verbose ("Popping up window menu for %s\n", window->desc); - - meta_ui_window_menu_popup (menu, root_x, root_y, button, timestamp); + meta_compositor_show_window_menu (window->display->compositor, window); } void diff --git a/src/meta/common.h b/src/meta/common.h index f81d763d7..f1e86f8c7 100644 --- a/src/meta/common.h +++ b/src/meta/common.h @@ -86,61 +86,6 @@ typedef enum META_FRAME_TILED_RIGHT = 1 << 16 } MetaFrameFlags; -/** - * MetaMenuOp: - * @META_MENU_OP_NONE: No menu operation - * @META_MENU_OP_DELETE: Menu operation delete - * @META_MENU_OP_MINIMIZE: Menu operation minimize - * @META_MENU_OP_UNMAXIMIZE: Menu operation unmaximize - * @META_MENU_OP_MAXIMIZE: Menu operation maximize - * @META_MENU_OP_UNSHADE: Menu operation unshade - * @META_MENU_OP_SHADE: Menu operation shade - * @META_MENU_OP_UNSTICK: Menu operation unstick - * @META_MENU_OP_STICK: Menu operation stick - * @META_MENU_OP_WORKSPACES: Menu operation workspaces - * @META_MENU_OP_MOVE: Menu operation move - * @META_MENU_OP_RESIZE: Menu operation resize - * @META_MENU_OP_ABOVE: Menu operation above - * @META_MENU_OP_UNABOVE: Menu operation unabove - * @META_MENU_OP_MOVE_LEFT: Menu operation left - * @META_MENU_OP_MOVE_RIGHT: Menu operation right - * @META_MENU_OP_MOVE_UP: Menu operation up - * @META_MENU_OP_MOVE_DOWN: Menu operation down - * @META_MENU_OP_RECOVER: Menu operation recover - */ -typedef enum -{ - META_MENU_OP_NONE = 0, - META_MENU_OP_DELETE = 1 << 0, - META_MENU_OP_MINIMIZE = 1 << 1, - META_MENU_OP_UNMAXIMIZE = 1 << 2, - META_MENU_OP_MAXIMIZE = 1 << 3, - META_MENU_OP_UNSHADE = 1 << 4, - META_MENU_OP_SHADE = 1 << 5, - META_MENU_OP_UNSTICK = 1 << 6, - META_MENU_OP_STICK = 1 << 7, - META_MENU_OP_WORKSPACES = 1 << 8, - META_MENU_OP_MOVE = 1 << 9, - META_MENU_OP_RESIZE = 1 << 10, - META_MENU_OP_ABOVE = 1 << 11, - META_MENU_OP_UNABOVE = 1 << 12, - META_MENU_OP_MOVE_LEFT = 1 << 13, - META_MENU_OP_MOVE_RIGHT = 1 << 14, - META_MENU_OP_MOVE_UP = 1 << 15, - META_MENU_OP_MOVE_DOWN = 1 << 16, - META_MENU_OP_RECOVER = 1 << 17 -} MetaMenuOp; - -typedef struct _MetaWindowMenu MetaWindowMenu; - -typedef void (* MetaWindowMenuFunc) (MetaWindowMenu *menu, - Display *xdisplay, - Window client_xwindow, - guint32 timestamp, - MetaMenuOp op, - int workspace, - gpointer user_data); - /** * MetaGrabOp: * @META_GRAB_OP_NONE: None diff --git a/src/meta/compositor.h b/src/meta/compositor.h index 76ad10ba8..2ba626566 100644 --- a/src/meta/compositor.h +++ b/src/meta/compositor.h @@ -130,5 +130,7 @@ void meta_compositor_show_tile_preview (MetaCompositor *compositor, int tile_monitor_number); void meta_compositor_hide_tile_preview (MetaCompositor *compositor, MetaScreen *screen); +void meta_compositor_show_window_menu (MetaCompositor *compositor, + MetaWindow *window); #endif /* META_COMPOSITOR_H */ diff --git a/src/meta/meta-plugin.h b/src/meta/meta-plugin.h index cef785397..562aafd43 100644 --- a/src/meta/meta-plugin.h +++ b/src/meta/meta-plugin.h @@ -164,6 +164,9 @@ struct _MetaPluginClass int tile_monitor_number); void (*hide_tile_preview) (MetaPlugin *plugin); + void (*show_window_menu) (MetaPlugin *plugin, + MetaWindow *window); + /** * MetaPluginClass::kill_window_effects: * @actor: a #MetaWindowActor diff --git a/src/meta/prefs.h b/src/meta/prefs.h index 677110a18..d55d50459 100644 --- a/src/meta/prefs.h +++ b/src/meta/prefs.h @@ -392,10 +392,6 @@ GType meta_key_binding_get_type (void); MetaKeyBindingAction meta_prefs_get_keybinding_action (const char *name); -void meta_prefs_get_window_binding (const char *name, - unsigned int *keysym, - MetaVirtualModifier *modifiers); - gboolean meta_prefs_get_visual_bell (void); gboolean meta_prefs_bell_is_audible (void); GDesktopVisualBellType meta_prefs_get_visual_bell_type (void); diff --git a/src/ui/menu.c b/src/ui/menu.c deleted file mode 100644 index d59e24211..000000000 --- a/src/ui/menu.c +++ /dev/null @@ -1,518 +0,0 @@ -/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */ - -/* Mutter window menu */ - -/* - * Copyright (C) 2001 Havoc Pennington - * Copyright (C) 2004 Rob Adams - * Copyright (C) 2005 Elijah Newren - * - * 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 of the - * License, 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, see . - */ - -#include -#include -#include -#include "menu.h" -#include -#include "util-private.h" -#include "core.h" -#include "metaaccellabel.h" -#include "ui.h" - -typedef struct _MenuItem MenuItem; -typedef struct _MenuData MenuData; - -typedef enum -{ - MENU_ITEM_SEPARATOR = 0, - MENU_ITEM_NORMAL, - MENU_ITEM_CHECKBOX, - MENU_ITEM_RADIOBUTTON, - MENU_ITEM_WORKSPACE_LIST, -} MetaMenuItemType; - -struct _MenuItem -{ - MetaMenuOp op; - MetaMenuItemType type; - const gboolean checked; - const char *label; -}; - - -struct _MenuData -{ - MetaWindowMenu *menu; - MetaMenuOp op; -}; - -static void activate_cb (GtkWidget *menuitem, gpointer data); - -static MenuItem menuitems[] = { - /* Translators: Translate this string the same way as you do in libwnck! */ - { META_MENU_OP_MINIMIZE, MENU_ITEM_NORMAL, FALSE, N_("Mi_nimize") }, - /* Translators: Translate this string the same way as you do in libwnck! */ - { META_MENU_OP_MAXIMIZE, MENU_ITEM_NORMAL, FALSE, N_("Ma_ximize") }, - /* Translators: Translate this string the same way as you do in libwnck! */ - { META_MENU_OP_UNMAXIMIZE, MENU_ITEM_NORMAL, FALSE, N_("Unma_ximize") }, - /* Translators: Translate this string the same way as you do in libwnck! */ - { META_MENU_OP_SHADE, MENU_ITEM_NORMAL, FALSE, N_("Roll _Up") }, - /* Translators: Translate this string the same way as you do in libwnck! */ - { META_MENU_OP_UNSHADE, MENU_ITEM_NORMAL, FALSE, N_("_Unroll") }, - /* Translators: Translate this string the same way as you do in libwnck! */ - { META_MENU_OP_MOVE, MENU_ITEM_NORMAL, FALSE, N_("_Move") }, - /* Translators: Translate this string the same way as you do in libwnck! */ - { META_MENU_OP_RESIZE, MENU_ITEM_NORMAL, FALSE, N_("_Resize") }, - /* Translators: Translate this string the same way as you do in libwnck! */ - { META_MENU_OP_RECOVER, MENU_ITEM_NORMAL, FALSE, N_("Move Titlebar On_screen") }, - { META_MENU_OP_WORKSPACES, MENU_ITEM_SEPARATOR, FALSE, NULL }, /* separator */ - /* Translators: Translate this string the same way as you do in libwnck! */ - { META_MENU_OP_ABOVE, MENU_ITEM_CHECKBOX, FALSE, N_("Always on _Top") }, - /* Translators: Translate this string the same way as you do in libwnck! */ - { META_MENU_OP_UNABOVE, MENU_ITEM_CHECKBOX, TRUE, N_("Always on _Top") }, - /* Translators: Translate this string the same way as you do in libwnck! */ - { META_MENU_OP_STICK, MENU_ITEM_RADIOBUTTON, FALSE, N_("_Always on Visible Workspace") }, - /* Translators: Translate this string the same way as you do in libwnck! */ - { META_MENU_OP_UNSTICK, MENU_ITEM_RADIOBUTTON, FALSE, N_("_Only on This Workspace") }, - /* Translators: Translate this string the same way as you do in libwnck! */ - { META_MENU_OP_MOVE_LEFT, MENU_ITEM_NORMAL, FALSE, N_("Move to Workspace _Left") }, - /* Translators: Translate this string the same way as you do in libwnck! */ - { META_MENU_OP_MOVE_RIGHT, MENU_ITEM_NORMAL, FALSE, N_("Move to Workspace R_ight") }, - /* Translators: Translate this string the same way as you do in libwnck! */ - { META_MENU_OP_MOVE_UP, MENU_ITEM_NORMAL, FALSE, N_("Move to Workspace _Up") }, - /* Translators: Translate this string the same way as you do in libwnck! */ - { META_MENU_OP_MOVE_DOWN, MENU_ITEM_NORMAL, FALSE, N_("Move to Workspace _Down") }, - { 0, MENU_ITEM_WORKSPACE_LIST, FALSE, NULL }, - { 0, MENU_ITEM_SEPARATOR, FALSE, NULL }, /* separator */ - /* Translators: Translate this string the same way as you do in libwnck! */ - { META_MENU_OP_DELETE, MENU_ITEM_NORMAL, FALSE, N_("_Close") } -}; - -static void -popup_position_func (GtkMenu *menu, - gint *x, - gint *y, - gboolean *push_in, - gpointer user_data) -{ - GtkRequisition req; - GdkPoint *pos; - - pos = user_data; - - gtk_widget_get_preferred_size (GTK_WIDGET (menu), &req, NULL); - - *x = pos->x; - *y = pos->y; - - if (meta_ui_get_direction() == META_UI_DIRECTION_RTL) - *x = MAX (0, *x - req.width); - - /* Ensure onscreen */ - *x = CLAMP (*x, 0, MAX (0, gdk_screen_width () - req.width)); - *y = CLAMP (*y, 0, MAX (0, gdk_screen_height () - req.height)); -} - -static void -menu_closed (GtkMenu *widget, - gpointer data) -{ - MetaWindowMenu *menu; - - menu = data; - - meta_frames_notify_menu_hide (menu->frames); - (* menu->func) (menu, - GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()), - menu->client_xwindow, - gtk_get_current_event_time (), - 0, 0, - menu->data); - - /* menu may now be freed */ -} - -static void -activate_cb (GtkWidget *menuitem, gpointer data) -{ - MenuData *md; - - g_return_if_fail (GTK_IS_WIDGET (menuitem)); - - md = data; - - meta_frames_notify_menu_hide (md->menu->frames); - (* md->menu->func) (md->menu, - GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()), - md->menu->client_xwindow, - gtk_get_current_event_time (), - md->op, - GPOINTER_TO_INT (g_object_get_data (G_OBJECT (menuitem), - "workspace")), - md->menu->data); - - /* menu may now be freed */ -} - -/* - * Given a Display and an index, get the workspace name and add any - * accelerators. At the moment this means adding a _ if the name is of - * the form "Workspace n" where n is less than 10, and escaping any - * other '_'s so they do not create inadvertant accelerators. - * - * The calling code owns the string, and is reponsible to free the - * memory after use. - * - * See also http://mail.gnome.org/archives/gnome-i18n/2008-March/msg00380.html - * which discusses possible i18n concerns. - */ -static char* -get_workspace_name_with_accel (Display *display, - Window xroot, - int index) -{ - const char *name; - int number; - int charcount=0; - - name = meta_core_get_workspace_name_with_index (display, xroot, index); - - g_assert (name != NULL); - - /* - * If the name is of the form "Workspace x" where x is an unsigned - * integer, insert a '_' before the number if it is less than 10 and - * return it - */ - number = 0; - if (sscanf (name, _("Workspace %d%n"), &number, &charcount) != 0 && - *(name + charcount)=='\0') - { - char *new_name; - - /* - * Above name is a pointer into the Workspace struct. Here we make - * a copy copy so we can have our wicked way with it. - */ - if (number == 10) - new_name = g_strdup_printf (_("Workspace 1_0")); - else - new_name = g_strdup_printf (_("Workspace %s%d"), - number < 10 ? "_" : "", - number); - return new_name; - } - else - { - /* - * Otherwise this is just a normal name. Escape any _ characters so that - * the user's workspace names do not get mangled. If the number is less - * than 10 we provide an accelerator. - */ - char *new_name; - const char *source; - char *dest; - - /* - * Assume the worst case, that every character is a _. We also - * provide memory for " (_#)" - */ - new_name = g_malloc0 (strlen (name) * 2 + 6 + 1); - - /* - * Now iterate down the strings, adding '_' to escape as we go - */ - dest = new_name; - source = name; - while (*source != '\0') - { - if (*source == '_') - *dest++ = '_'; - *dest++ = *source++; - } - - /* People don't start at workspace 0, but workspace 1 */ - if (index < 9) - { - g_snprintf (dest, 6, " (_%d)", index + 1); - } - else if (index == 9) - { - g_snprintf (dest, 6, " (_0)"); - } - - return new_name; - } -} - -static GtkWidget * -menu_item_new (MenuItem *menuitem, int workspace_id) -{ - unsigned int key; - MetaVirtualModifier mods; - const char *i18n_label; - GtkWidget *mi; - GtkWidget *accel_label; - - if (menuitem->type == MENU_ITEM_NORMAL) - { - mi = gtk_menu_item_new (); - } - else if (menuitem->type == MENU_ITEM_CHECKBOX) - { - mi = gtk_check_menu_item_new (); - - gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (mi), - menuitem->checked); - } - else if (menuitem->type == MENU_ITEM_RADIOBUTTON) - { - mi = gtk_check_menu_item_new (); - - gtk_check_menu_item_set_draw_as_radio (GTK_CHECK_MENU_ITEM (mi), - TRUE); - gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (mi), - menuitem->checked); - } - else if (menuitem->type == MENU_ITEM_WORKSPACE_LIST) - return NULL; - else - return gtk_separator_menu_item_new (); - - i18n_label = _(menuitem->label); - meta_core_get_menu_accelerator (menuitem->op, workspace_id, &key, &mods); - - accel_label = meta_accel_label_new_with_mnemonic (i18n_label); - gtk_misc_set_alignment (GTK_MISC (accel_label), 0.0, 0.5); - - gtk_container_add (GTK_CONTAINER (mi), accel_label); - gtk_widget_show (accel_label); - - meta_accel_label_set_accelerator (META_ACCEL_LABEL (accel_label), - key, mods); - - return mi; -} - -MetaWindowMenu* -meta_window_menu_new (MetaFrames *frames, - MetaMenuOp ops, - MetaMenuOp insensitive, - Window client_xwindow, - unsigned long active_workspace, - int n_workspaces, - MetaWindowMenuFunc func, - gpointer data) -{ - int i; - MetaWindowMenu *menu; - - /* FIXME: Modifications to 'ops' should happen in meta_window_show_menu */ - if (n_workspaces < 2) - ops &= ~(META_MENU_OP_STICK | META_MENU_OP_UNSTICK | META_MENU_OP_WORKSPACES); - else if (n_workspaces == 2) - /* #151183: If we only have two workspaces, disable the menu listing them. */ - ops &= ~(META_MENU_OP_WORKSPACES); - - menu = g_new (MetaWindowMenu, 1); - menu->frames = frames; - menu->client_xwindow = client_xwindow; - menu->func = func; - menu->data = data; - menu->ops = ops; - menu->insensitive = insensitive; - - menu->menu = gtk_menu_new (); - - gtk_menu_set_screen (GTK_MENU (menu->menu), - gtk_widget_get_screen (GTK_WIDGET (frames))); - - for (i = 0; i < (int) G_N_ELEMENTS (menuitems); i++) - { - MenuItem menuitem = menuitems[i]; - if (ops & menuitem.op || menuitem.op == 0) - { - GtkWidget *mi; - MenuData *md; - unsigned int key; - MetaVirtualModifier mods; - - mi = menu_item_new (&menuitem, -1); - - /* Set the activeness of radiobuttons. */ - switch (menuitem.op) - { - case META_MENU_OP_STICK: - gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (mi), - active_workspace == 0xFFFFFFFF); - break; - case META_MENU_OP_UNSTICK: - gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (mi), - active_workspace != 0xFFFFFFFF); - break; - default: - break; - } - - if (menuitem.type == MENU_ITEM_WORKSPACE_LIST) - { - if (ops & META_MENU_OP_WORKSPACES) - { - Display *display; - Window xroot; - GdkScreen *screen; - GdkWindow *window; - GtkWidget *submenu; - int j; - - MenuItem to_another_workspace = { - 0, MENU_ITEM_NORMAL, FALSE, - N_("Move to Another _Workspace") - }; - - meta_verbose ("Creating %d-workspace menu current space %lu\n", - n_workspaces, active_workspace); - - window = gtk_widget_get_window (GTK_WIDGET (frames)); - display = GDK_WINDOW_XDISPLAY (window); - - screen = gdk_window_get_screen (window); - xroot = GDK_WINDOW_XID (gdk_screen_get_root_window (screen)); - - submenu = gtk_menu_new (); - - g_assert (mi==NULL); - mi = menu_item_new (&to_another_workspace, -1); - gtk_menu_item_set_submenu (GTK_MENU_ITEM (mi), submenu); - - for (j = 0; j < n_workspaces; j++) - { - char *label; - MenuData *md; - unsigned int key; - MetaVirtualModifier mods; - MenuItem moveitem; - GtkWidget *submi; - - meta_core_get_menu_accelerator (META_MENU_OP_WORKSPACES, - j + 1, - &key, &mods); - - label = get_workspace_name_with_accel (display, xroot, j); - - moveitem.type = MENU_ITEM_NORMAL; - moveitem.op = META_MENU_OP_WORKSPACES; - moveitem.label = label; - submi = menu_item_new (&moveitem, j + 1); - - g_free (label); - - if ((active_workspace == (unsigned)j) && (ops & META_MENU_OP_UNSTICK)) - gtk_widget_set_sensitive (submi, FALSE); - - md = g_new (MenuData, 1); - - md->menu = menu; - md->op = META_MENU_OP_WORKSPACES; - - g_object_set_data (G_OBJECT (submi), - "workspace", - GINT_TO_POINTER (j)); - - g_signal_connect_data (G_OBJECT (submi), - "activate", - G_CALLBACK (activate_cb), - md, - (GClosureNotify) g_free, 0); - - gtk_menu_shell_append (GTK_MENU_SHELL (submenu), submi); - - gtk_widget_show (submi); - } - } - else - meta_verbose ("not creating workspace menu\n"); - } - else if (menuitem.type != MENU_ITEM_SEPARATOR) - { - meta_core_get_menu_accelerator (menuitems[i].op, -1, - &key, &mods); - - if (insensitive & menuitem.op) - gtk_widget_set_sensitive (mi, FALSE); - - md = g_new (MenuData, 1); - - md->menu = menu; - md->op = menuitem.op; - - g_signal_connect_data (G_OBJECT (mi), - "activate", - G_CALLBACK (activate_cb), - md, - (GClosureNotify) g_free, 0); - } - - if (mi) - { - gtk_menu_shell_append (GTK_MENU_SHELL (menu->menu), mi); - - gtk_widget_show (mi); - } - } - } - - - g_signal_connect (menu->menu, "selection_done", - G_CALLBACK (menu_closed), menu); - - return menu; -} - -void -meta_window_menu_popup (MetaWindowMenu *menu, - int root_x, - int root_y, - int button, - guint32 timestamp) -{ - GdkPoint *pt; - - pt = g_new (GdkPoint, 1); - - g_object_set_data_full (G_OBJECT (menu->menu), - "destroy-point", - pt, - g_free); - - pt->x = root_x; - pt->y = root_y; - - gtk_menu_popup (GTK_MENU (menu->menu), - NULL, NULL, - popup_position_func, pt, - button, - timestamp); - - if (!gtk_widget_get_visible (menu->menu)) - meta_warning ("GtkMenu failed to grab the pointer\n"); -} - -void -meta_window_menu_free (MetaWindowMenu *menu) -{ - gtk_widget_destroy (menu->menu); - g_free (menu); -} diff --git a/src/ui/menu.h b/src/ui/menu.h deleted file mode 100644 index ab42a8ba9..000000000 --- a/src/ui/menu.h +++ /dev/null @@ -1,55 +0,0 @@ -/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */ - -/* Mutter window menu */ - -/* - * Copyright (C) 2001 Havoc Pennington - * - * 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 of the - * License, 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, see . - */ - -#ifndef META_MENU_H -#define META_MENU_H - -#include -#include "frames.h" - -struct _MetaWindowMenu -{ - MetaFrames *frames; - Window client_xwindow; - GtkWidget *menu; - MetaWindowMenuFunc func; - gpointer data; - MetaMenuOp ops; - MetaMenuOp insensitive; -}; - -MetaWindowMenu* meta_window_menu_new (MetaFrames *frames, - MetaMenuOp ops, - MetaMenuOp insensitive, - Window client_xwindow, - unsigned long active_workspace, - int n_workspaces, - MetaWindowMenuFunc func, - gpointer data); -void meta_window_menu_popup (MetaWindowMenu *menu, - int root_x, - int root_y, - int button, - guint32 timestamp); -void meta_window_menu_free (MetaWindowMenu *menu); - - -#endif diff --git a/src/ui/metaaccellabel.c b/src/ui/metaaccellabel.c deleted file mode 100644 index be65b3537..000000000 --- a/src/ui/metaaccellabel.c +++ /dev/null @@ -1,451 +0,0 @@ -/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */ - -/* Metacity hacked-up GtkAccelLabel */ -/* Copyright (C) 2002 Red Hat, Inc. */ -/* GTK - The GIMP Toolkit - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * MetaAccelLabel: GtkLabel with accelerator monitoring facilities. - * Copyright (C) 1998 Tim Janik - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, see . - */ - -/* - * Modified by the GTK+ Team and others 1997-2001. See the AUTHORS - * file for a list of people on the GTK+ Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GTK+ at ftp://ftp.gtk.org/pub/gtk/. - */ - -#include -#include "metaaccellabel.h" -#include -#include -#include "util-private.h" - -static void meta_accel_label_destroy (GtkWidget *object); -static void meta_accel_label_finalize (GObject *object); -static void meta_accel_label_get_preferred_width (GtkWidget *widget, - gint *minimum, - gint *natural); -static void meta_accel_label_get_preferred_height (GtkWidget *widget, - gint *minimum, - gint *natural); -static gboolean meta_accel_label_draw (GtkWidget *widget, - cairo_t *cr); - -static void meta_accel_label_update (MetaAccelLabel *accel_label); -static int meta_accel_label_get_accel_width (MetaAccelLabel *accel_label); - -G_DEFINE_TYPE (MetaAccelLabel, meta_accel_label, GTK_TYPE_LABEL); - -static void -meta_accel_label_class_init (MetaAccelLabelClass *class) -{ - GObjectClass *gobject_class = G_OBJECT_CLASS (class); - GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (class); - - gobject_class->finalize = meta_accel_label_finalize; - - widget_class->destroy = meta_accel_label_destroy; - - widget_class->get_preferred_width = meta_accel_label_get_preferred_width; - widget_class->get_preferred_height = meta_accel_label_get_preferred_height; - widget_class->draw = meta_accel_label_draw; - - class->signal_quote1 = g_strdup ("<:"); - class->signal_quote2 = g_strdup (":>"); - /* This is the text that should appear next to menu accelerators - * that use the shift key. If the text on this key isn't typically - * translated on keyboards used for your language, don't translate - * this. - */ - class->mod_name_shift = g_strdup (_("Shift")); - /* This is the text that should appear next to menu accelerators - * that use the control key. If the text on this key isn't typically - * translated on keyboards used for your language, don't translate - * this. - */ - class->mod_name_control = g_strdup (_("Ctrl")); - /* This is the text that should appear next to menu accelerators - * that use the alt key. If the text on this key isn't typically - * translated on keyboards used for your language, don't translate - * this. - */ - class->mod_name_alt = g_strdup (_("Alt")); - /* This is the text that should appear next to menu accelerators - * that use the meta key. If the text on this key isn't typically - * translated on keyboards used for your language, don't translate - * this. - */ - class->mod_name_meta = g_strdup (_("Meta")); - /* This is the text that should appear next to menu accelerators - * that use the super key. If the text on this key isn't typically - * translated on keyboards used for your language, don't translate - * this. - */ - class->mod_name_super = g_strdup (_("Super")); - /* This is the text that should appear next to menu accelerators - * that use the hyper key. If the text on this key isn't typically - * translated on keyboards used for your language, don't translate - * this. - */ - class->mod_name_hyper = g_strdup (_("Hyper")); - /* This is the text that should appear next to menu accelerators - * that use the mod2 key. If the text on this key isn't typically - * translated on keyboards used for your language, don't translate - * this. - */ - class->mod_name_mod2 = g_strdup (_("Mod2")); - /* This is the text that should appear next to menu accelerators - * that use the mod3 key. If the text on this key isn't typically - * translated on keyboards used for your language, don't translate - * this. - */ - class->mod_name_mod3 = g_strdup (_("Mod3")); - /* This is the text that should appear next to menu accelerators - * that use the mod4 key. If the text on this key isn't typically - * translated on keyboards used for your language, don't translate - * this. - */ - class->mod_name_mod4 = g_strdup (_("Mod4")); - /* This is the text that should appear next to menu accelerators - * that use the mod5 key. If the text on this key isn't typically - * translated on keyboards used for your language, don't translate - * this. - */ - class->mod_name_mod5 = g_strdup (_("Mod5")); - - class->mod_separator = g_strdup ("+"); - class->accel_seperator = g_strdup (" / "); - class->latin1_to_char = TRUE; -} - -static void -meta_accel_label_init (MetaAccelLabel *accel_label) -{ - accel_label->accel_padding = 3; - accel_label->accel_string = NULL; - - meta_accel_label_update (accel_label); -} - -GtkWidget* -meta_accel_label_new_with_mnemonic (const gchar *string) -{ - MetaAccelLabel *accel_label; - - g_return_val_if_fail (string != NULL, NULL); - - accel_label = g_object_new (META_TYPE_ACCEL_LABEL, NULL); - - gtk_label_set_text_with_mnemonic (GTK_LABEL (accel_label), string); - - return GTK_WIDGET (accel_label); -} - -static void -meta_accel_label_destroy (GtkWidget *object) -{ - MetaAccelLabel *accel_label = META_ACCEL_LABEL (object); - - - g_free (accel_label->accel_string); - accel_label->accel_string = NULL; - - accel_label->accel_mods = 0; - accel_label->accel_key = 0; - - GTK_WIDGET_CLASS (meta_accel_label_parent_class)->destroy (object); -} - -static void -meta_accel_label_finalize (GObject *object) -{ - MetaAccelLabel *accel_label = META_ACCEL_LABEL (object); - - g_free (accel_label->accel_string); - - G_OBJECT_CLASS (meta_accel_label_parent_class)->finalize (object); -} - -void -meta_accel_label_set_accelerator (MetaAccelLabel *accel_label, - guint accelerator_key, - MetaVirtualModifier accelerator_mods) -{ - g_return_if_fail (META_IS_ACCEL_LABEL (accel_label)); - - if (accelerator_key != accel_label->accel_key || - accelerator_mods != accel_label->accel_mods) - { - accel_label->accel_mods = accelerator_mods; - accel_label->accel_key = accelerator_key; - - meta_accel_label_update (accel_label); - } -} - -static int -meta_accel_label_get_accel_width (MetaAccelLabel *accel_label) -{ - g_return_val_if_fail (META_IS_ACCEL_LABEL (accel_label), 0); - - return (accel_label->accel_string_width + - (accel_label->accel_string_width ? accel_label->accel_padding : 0)); -} - -static void -meta_accel_label_get_preferred_width (GtkWidget *widget, - gint *minimum, - gint *natural) -{ - MetaAccelLabel *accel_label = META_ACCEL_LABEL (widget); - PangoLayout *layout; - gint width; - - GTK_WIDGET_CLASS (meta_accel_label_parent_class)->get_preferred_width (widget, minimum, natural); - - layout = gtk_widget_create_pango_layout (widget, accel_label->accel_string); - pango_layout_get_pixel_size (layout, &width, NULL); - accel_label->accel_string_width = width; - - g_object_unref (G_OBJECT (layout)); -} - -static void -meta_accel_label_get_preferred_height (GtkWidget *widget, - gint *minimum, - gint *natural) -{ - GTK_WIDGET_CLASS (meta_accel_label_parent_class)->get_preferred_height (widget, minimum, natural); -} - -/* Mostly taken from GTK3. */ -static gboolean -meta_accel_label_draw (GtkWidget *widget, - cairo_t *cr) -{ - MetaAccelLabel *accel_label = META_ACCEL_LABEL (widget); - GtkMisc *misc = GTK_MISC (accel_label); - GtkTextDirection direction; - int ac_width; - GtkAllocation allocation; - GtkRequisition requisition; - - direction = gtk_widget_get_direction (widget); - ac_width = meta_accel_label_get_accel_width (accel_label); - gtk_widget_get_allocation (widget, &allocation); - gtk_widget_get_preferred_size (widget, - &requisition, NULL); - - if (allocation.width >= requisition.width + ac_width) - { - GtkStyleContext *style; - PangoLayout *label_layout; - PangoLayout *accel_layout; - GtkLabel *label = GTK_LABEL (widget); - gint x, y, xpad, ypad; - gfloat xalign, yalign; - - label_layout = gtk_label_get_layout (GTK_LABEL (accel_label)); - gtk_misc_get_alignment (misc, &xalign, &yalign); - - cairo_save (cr); - - /* XXX: Mad hack: We modify the label's width so it renders - * properly in its draw function that we chain to. */ - if (direction == GTK_TEXT_DIR_RTL) - cairo_translate (cr, ac_width, 0); - if (gtk_label_get_ellipsize (label)) - pango_layout_set_width (label_layout, - pango_layout_get_width (label_layout) - - ac_width * PANGO_SCALE); - - allocation.width -= ac_width; - gtk_widget_set_allocation (widget, &allocation); - if (GTK_WIDGET_CLASS (meta_accel_label_parent_class)->draw) - GTK_WIDGET_CLASS (meta_accel_label_parent_class)->draw (widget, - cr); - allocation.width += ac_width; - gtk_widget_set_allocation (widget, &allocation); - if (gtk_label_get_ellipsize (label)) - pango_layout_set_width (label_layout, - pango_layout_get_width (label_layout) - + ac_width * PANGO_SCALE); - - cairo_restore (cr); - - gtk_misc_get_padding (misc, &xpad, &ypad); - - if (direction == GTK_TEXT_DIR_RTL) - x = xpad; - else - x = gtk_widget_get_allocated_width (widget) - xpad - ac_width; - - gtk_label_get_layout_offsets (GTK_LABEL (accel_label), NULL, &y); - - accel_layout = gtk_widget_create_pango_layout (widget, accel_label->accel_string); - - y = (allocation.height - (requisition.height - ypad * 2)) * yalign + 1.5; - - style = gtk_widget_get_style_context (widget); - gtk_style_context_save (style); - gtk_style_context_set_state (style, - gtk_widget_get_state_flags (widget)); - gtk_render_layout (gtk_widget_get_style_context (widget), - cr, - x, y, - accel_layout); - gtk_style_context_restore (style); - - g_object_unref (accel_layout); - } - else - { - if (GTK_WIDGET_CLASS (meta_accel_label_parent_class)->draw) - GTK_WIDGET_CLASS (meta_accel_label_parent_class)->draw (widget, cr); - } - - return FALSE; -} - -static void -meta_accel_label_update (MetaAccelLabel *accel_label) -{ - MetaAccelLabelClass *class; - GString *gstring; - gboolean seen_mod = FALSE; - gunichar ch; - - g_return_if_fail (META_IS_ACCEL_LABEL (accel_label)); - - class = META_ACCEL_LABEL_GET_CLASS (accel_label); - - g_free (accel_label->accel_string); - accel_label->accel_string = NULL; - - gstring = g_string_new (accel_label->accel_string); - g_string_append (gstring, gstring->len ? class->accel_seperator : " "); - - if (accel_label->accel_mods & META_VIRTUAL_SHIFT_MASK) - { - g_string_append (gstring, class->mod_name_shift); - seen_mod = TRUE; - } - if (accel_label->accel_mods & META_VIRTUAL_CONTROL_MASK) - { - if (seen_mod) - g_string_append (gstring, class->mod_separator); - g_string_append (gstring, class->mod_name_control); - seen_mod = TRUE; - } - if (accel_label->accel_mods & META_VIRTUAL_ALT_MASK) - { - if (seen_mod) - g_string_append (gstring, class->mod_separator); - g_string_append (gstring, class->mod_name_alt); - seen_mod = TRUE; - } - if (accel_label->accel_mods & META_VIRTUAL_META_MASK) - { - if (seen_mod) - g_string_append (gstring, class->mod_separator); - g_string_append (gstring, class->mod_name_meta); - seen_mod = TRUE; - } - if (accel_label->accel_mods & META_VIRTUAL_SUPER_MASK) - { - if (seen_mod) - g_string_append (gstring, class->mod_separator); - g_string_append (gstring, class->mod_name_super); - seen_mod = TRUE; - } - if (accel_label->accel_mods & META_VIRTUAL_HYPER_MASK) - { - if (seen_mod) - g_string_append (gstring, class->mod_separator); - g_string_append (gstring, class->mod_name_hyper); - seen_mod = TRUE; - } - if (accel_label->accel_mods & META_VIRTUAL_MOD2_MASK) - { - if (seen_mod) - g_string_append (gstring, class->mod_separator); - g_string_append (gstring, class->mod_name_mod2); - seen_mod = TRUE; - } - if (accel_label->accel_mods & META_VIRTUAL_MOD3_MASK) - { - if (seen_mod) - g_string_append (gstring, class->mod_separator); - g_string_append (gstring, class->mod_name_mod3); - seen_mod = TRUE; - } - if (accel_label->accel_mods & META_VIRTUAL_MOD4_MASK) - { - if (seen_mod) - g_string_append (gstring, class->mod_separator); - g_string_append (gstring, class->mod_name_mod4); - seen_mod = TRUE; - } - if (accel_label->accel_mods & META_VIRTUAL_MOD5_MASK) - { - if (seen_mod) - g_string_append (gstring, class->mod_separator); - g_string_append (gstring, class->mod_name_mod5); - seen_mod = TRUE; - } - - if (seen_mod) - g_string_append (gstring, class->mod_separator); - - ch = gdk_keyval_to_unicode (accel_label->accel_key); - if (ch && (g_unichar_isgraph (ch) || ch == ' ') && - (ch < 0x80 || class->latin1_to_char)) - { - switch (ch) - { - case ' ': - g_string_append (gstring, "Space"); - break; - case '\\': - g_string_append (gstring, "Backslash"); - break; - default: - g_string_append_unichar (gstring, g_unichar_toupper (ch)); - break; - } - } - else - { - gchar *tmp; - - tmp = gtk_accelerator_name (accel_label->accel_key, 0); - if (tmp[0] != 0 && tmp[1] == 0) - tmp[0] = g_ascii_toupper (tmp[0]); - g_string_append (gstring, tmp); - g_free (tmp); - } - - g_free (accel_label->accel_string); - accel_label->accel_string = gstring->str; - g_string_free (gstring, FALSE); - - g_assert (accel_label->accel_string); - /* accel_label->accel_string = g_strdup ("-/-"); */ - - gtk_widget_queue_resize (GTK_WIDGET (accel_label)); -} diff --git a/src/ui/metaaccellabel.h b/src/ui/metaaccellabel.h deleted file mode 100644 index cebd6eb77..000000000 --- a/src/ui/metaaccellabel.h +++ /dev/null @@ -1,104 +0,0 @@ -/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */ - -/* Metacity hacked-up GtkAccelLabel */ -/* Copyright (C) 2002 Red Hat, Inc. */ -/* GTK - The GIMP Toolkit - * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald - * - * MetaAccelLabel: GtkLabel with accelerator monitoring facilities. - * Copyright (C) 1998 Tim Janik - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, see . - */ - -/* - * Modified by the GTK+ Team and others 1997-2001. See the AUTHORS - * file for a list of people on the GTK+ Team. See the ChangeLog - * files for a list of changes. These files are distributed with - * GTK+ at ftp://ftp.gtk.org/pub/gtk/. - */ - -#ifndef __META_ACCEL_LABEL_H__ -#define __META_ACCEL_LABEL_H__ - -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - - -#define META_TYPE_ACCEL_LABEL (meta_accel_label_get_type ()) -#define META_ACCEL_LABEL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), META_TYPE_ACCEL_LABEL, MetaAccelLabel)) -#define META_ACCEL_LABEL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), META_TYPE_ACCEL_LABEL, MetaAccelLabelClass)) -#define META_IS_ACCEL_LABEL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), META_TYPE_ACCEL_LABEL)) -#define META_IS_ACCEL_LABEL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), META_TYPE_ACCEL_LABEL)) -#define META_ACCEL_LABEL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), META_TYPE_ACCEL_LABEL, MetaAccelLabelClass)) - - -typedef struct _MetaAccelLabel MetaAccelLabel; -typedef struct _MetaAccelLabelClass MetaAccelLabelClass; - -struct _MetaAccelLabel -{ - GtkLabel label; - - MetaVirtualModifier accel_mods; - guint accel_key; - guint accel_padding; - gchar *accel_string; - guint16 accel_string_width; -}; - -struct _MetaAccelLabelClass -{ - GtkLabelClass parent_class; - - gchar *signal_quote1; - gchar *signal_quote2; - gchar *mod_name_shift; - gchar *mod_name_control; - gchar *mod_name_alt; - gchar *mod_name_meta; - gchar *mod_name_super; - gchar *mod_name_hyper; - gchar *mod_name_mod2; - gchar *mod_name_mod3; - gchar *mod_name_mod4; - gchar *mod_name_mod5; - gchar *mod_separator; - gchar *accel_seperator; - guint latin1_to_char : 1; - - /* Padding for future expansion */ - void (*_gtk_reserved1) (void); - void (*_gtk_reserved2) (void); - void (*_gtk_reserved3) (void); - void (*_gtk_reserved4) (void); -}; - -GType meta_accel_label_get_type (void) G_GNUC_CONST; -GtkWidget* meta_accel_label_new_with_mnemonic (const gchar *string); -void meta_accel_label_set_accelerator (MetaAccelLabel *accel_label, - guint accelerator_key, - MetaVirtualModifier accelerator_mods); - - -#ifdef __cplusplus -} -#endif /* __cplusplus */ - - -#endif /* __META_ACCEL_LABEL_H__ */ diff --git a/src/ui/ui.c b/src/ui/ui.c index 1a19838f4..5f3236ee3 100644 --- a/src/ui/ui.c +++ b/src/ui/ui.c @@ -514,40 +514,6 @@ meta_ui_set_frame_title (MetaUI *ui, meta_frames_set_title (ui->frames, xwindow, title); } -MetaWindowMenu* -meta_ui_window_menu_new (MetaUI *ui, - Window client_xwindow, - MetaMenuOp ops, - MetaMenuOp insensitive, - unsigned long active_workspace, - int n_workspaces, - MetaWindowMenuFunc func, - gpointer data) -{ - return meta_window_menu_new (ui->frames, - ops, insensitive, - client_xwindow, - active_workspace, - n_workspaces, - func, data); -} - -void -meta_ui_window_menu_popup (MetaWindowMenu *menu, - int root_x, - int root_y, - int button, - guint32 timestamp) -{ - meta_window_menu_popup (menu, root_x, root_y, button, timestamp); -} - -void -meta_ui_window_menu_free (MetaWindowMenu *menu) -{ - meta_window_menu_free (menu); -} - GdkPixbuf* meta_gdk_pixbuf_get_from_pixmap (Pixmap xpixmap, int src_x, diff --git a/src/ui/ui.h b/src/ui/ui.h index ca52f4c45..db5747efc 100644 --- a/src/ui/ui.h +++ b/src/ui/ui.h @@ -120,21 +120,6 @@ void meta_ui_update_frame_style (MetaUI *ui, void meta_ui_repaint_frame (MetaUI *ui, Window xwindow); -MetaWindowMenu* meta_ui_window_menu_new (MetaUI *ui, - Window client_xwindow, - MetaMenuOp ops, - MetaMenuOp insensitive, - unsigned long active_workspace, - int n_workspaces, - MetaWindowMenuFunc func, - gpointer data); -void meta_ui_window_menu_popup (MetaWindowMenu *menu, - int root_x, - int root_y, - int button, - guint32 timestamp); -void meta_ui_window_menu_free (MetaWindowMenu *menu); - /* FIXME these lack a display arg */ GdkPixbuf* meta_gdk_pixbuf_get_from_pixmap (Pixmap xpixmap,