mirror of
https://github.com/brl/mutter.git
synced 2024-11-24 00:50:42 -05:00
Convert window menus to a compositor implementation
This commit is contained in:
parent
480a853263
commit
8640982e68
@ -191,10 +191,6 @@ libmutter_la_SOURCES = \
|
|||||||
ui/ui.h \
|
ui/ui.h \
|
||||||
ui/frames.c \
|
ui/frames.c \
|
||||||
ui/frames.h \
|
ui/frames.h \
|
||||||
ui/menu.c \
|
|
||||||
ui/menu.h \
|
|
||||||
ui/metaaccellabel.c \
|
|
||||||
ui/metaaccellabel.h \
|
|
||||||
ui/resizepopup.c \
|
ui/resizepopup.c \
|
||||||
ui/resizepopup.h \
|
ui/resizepopup.h \
|
||||||
ui/theme-parser.c \
|
ui/theme-parser.c \
|
||||||
|
@ -1356,3 +1356,10 @@ meta_compositor_hide_tile_preview (MetaCompositor *compositor)
|
|||||||
{
|
{
|
||||||
meta_plugin_manager_hide_tile_preview (compositor->plugin_mgr);
|
meta_plugin_manager_hide_tile_preview (compositor->plugin_mgr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
meta_compositor_show_window_menu (MetaCompositor *compositor,
|
||||||
|
MetaWindow *window)
|
||||||
|
{
|
||||||
|
meta_plugin_manager_show_window_menu (compositor->plugin_mgr, window);
|
||||||
|
}
|
||||||
|
@ -356,3 +356,18 @@ meta_plugin_manager_hide_tile_preview (MetaPluginManager *plugin_mgr)
|
|||||||
|
|
||||||
return FALSE;
|
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 = plugin_mgr->compositor->display;
|
||||||
|
|
||||||
|
if (display->display_opening)
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (klass->show_window_menu)
|
||||||
|
klass->show_window_menu (plugin, window);
|
||||||
|
}
|
||||||
|
@ -80,4 +80,8 @@ gboolean meta_plugin_manager_show_tile_preview (MetaPluginManager *mgr,
|
|||||||
MetaRectangle *tile_rect,
|
MetaRectangle *tile_rect,
|
||||||
int tile_monitor_number);
|
int tile_monitor_number);
|
||||||
gboolean meta_plugin_manager_hide_tile_preview (MetaPluginManager *mgr);
|
gboolean meta_plugin_manager_hide_tile_preview (MetaPluginManager *mgr);
|
||||||
|
|
||||||
|
void meta_plugin_manager_show_window_menu (MetaPluginManager *mgr,
|
||||||
|
MetaWindow *window);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
119
src/core/core.c
119
src/core/core.c
@ -398,9 +398,6 @@ meta_core_change_workspace (Display *xdisplay,
|
|||||||
void
|
void
|
||||||
meta_core_show_window_menu (Display *xdisplay,
|
meta_core_show_window_menu (Display *xdisplay,
|
||||||
Window frame_xwindow,
|
Window frame_xwindow,
|
||||||
int root_x,
|
|
||||||
int root_y,
|
|
||||||
int button,
|
|
||||||
guint32 timestamp)
|
guint32 timestamp)
|
||||||
{
|
{
|
||||||
MetaWindow *window = get_window (xdisplay, frame_xwindow);
|
MetaWindow *window = get_window (xdisplay, frame_xwindow);
|
||||||
@ -409,121 +406,7 @@ meta_core_show_window_menu (Display *xdisplay,
|
|||||||
meta_window_raise (window);
|
meta_window_raise (window);
|
||||||
meta_window_focus (window, timestamp);
|
meta_window_focus (window, timestamp);
|
||||||
|
|
||||||
meta_window_show_menu (window, root_x, root_y, button, timestamp);
|
meta_window_show_menu (window);
|
||||||
}
|
|
||||||
|
|
||||||
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*
|
const char*
|
||||||
|
@ -142,15 +142,8 @@ const char* meta_core_get_workspace_name_with_index (Display *xdisplay,
|
|||||||
|
|
||||||
void meta_core_show_window_menu (Display *xdisplay,
|
void meta_core_show_window_menu (Display *xdisplay,
|
||||||
Window frame_xwindow,
|
Window frame_xwindow,
|
||||||
int root_x,
|
|
||||||
int root_y,
|
|
||||||
int button,
|
|
||||||
guint32 timestamp);
|
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,
|
gboolean meta_core_begin_grab_op (Display *xdisplay,
|
||||||
Window frame_xwindow,
|
Window frame_xwindow,
|
||||||
|
@ -247,10 +247,6 @@ struct _MetaDisplay
|
|||||||
/* Managed by group.c */
|
/* Managed by group.c */
|
||||||
GHashTable *groups_by_leader;
|
GHashTable *groups_by_leader;
|
||||||
|
|
||||||
/* currently-active window menu if any */
|
|
||||||
MetaWindowMenu *window_menu;
|
|
||||||
MetaWindow *window_with_menu;
|
|
||||||
|
|
||||||
/* Managed by window-props.c */
|
/* Managed by window-props.c */
|
||||||
MetaWindowPropHooks *prop_hooks_table;
|
MetaWindowPropHooks *prop_hooks_table;
|
||||||
GHashTable *prop_hooks;
|
GHashTable *prop_hooks;
|
||||||
|
@ -518,9 +518,6 @@ meta_display_open (void)
|
|||||||
|
|
||||||
the_display->groups_by_leader = NULL;
|
the_display->groups_by_leader = NULL;
|
||||||
|
|
||||||
the_display->window_with_menu = NULL;
|
|
||||||
the_display->window_menu = NULL;
|
|
||||||
|
|
||||||
the_display->screen = NULL;
|
the_display->screen = NULL;
|
||||||
|
|
||||||
#ifdef HAVE_STARTUP_NOTIFICATION
|
#ifdef HAVE_STARTUP_NOTIFICATION
|
||||||
|
@ -2732,20 +2732,7 @@ handle_activate_window_menu (MetaDisplay *display,
|
|||||||
gpointer dummy)
|
gpointer dummy)
|
||||||
{
|
{
|
||||||
if (display->focus_window)
|
if (display->focus_window)
|
||||||
{
|
meta_window_show_menu (display->focus_window);
|
||||||
int x, y;
|
|
||||||
|
|
||||||
meta_window_get_position (display->focus_window,
|
|
||||||
&x, &y);
|
|
||||||
|
|
||||||
if (meta_ui_get_direction() == META_UI_DIRECTION_RTL)
|
|
||||||
x += display->focus_window->rect.width;
|
|
||||||
|
|
||||||
meta_window_show_menu (display->focus_window,
|
|
||||||
x, y,
|
|
||||||
0,
|
|
||||||
event->time);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -2262,43 +2262,6 @@ meta_prefs_get_keybinding_action (const char *name)
|
|||||||
: META_KEYBINDING_ACTION_NONE;
|
: 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
|
gint
|
||||||
meta_prefs_get_mouse_button_resize (void)
|
meta_prefs_get_mouse_button_resize (void)
|
||||||
{
|
{
|
||||||
|
@ -622,11 +622,7 @@ void meta_window_set_current_workspace_hint (MetaWindow *window);
|
|||||||
|
|
||||||
unsigned long meta_window_get_net_wm_desktop (MetaWindow *window);
|
unsigned long meta_window_get_net_wm_desktop (MetaWindow *window);
|
||||||
|
|
||||||
void meta_window_show_menu (MetaWindow *window,
|
void meta_window_show_menu (MetaWindow *window);
|
||||||
int root_x,
|
|
||||||
int root_y,
|
|
||||||
int button,
|
|
||||||
guint32 timestamp);
|
|
||||||
|
|
||||||
gboolean meta_window_handle_mouse_grab_op_event (MetaWindow *window,
|
gboolean meta_window_handle_mouse_grab_op_event (MetaWindow *window,
|
||||||
const ClutterEvent *event);
|
const ClutterEvent *event);
|
||||||
|
@ -1305,13 +1305,6 @@ meta_window_unmanage (MetaWindow *window,
|
|||||||
meta_compositor_remove_window (window->display->compositor, window);
|
meta_compositor_remove_window (window->display->compositor, window);
|
||||||
window->known_to_compositor = FALSE;
|
window->known_to_compositor = FALSE;
|
||||||
|
|
||||||
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)
|
if (destroying_windows_disallowed > 0)
|
||||||
meta_bug ("Tried to destroy window %s while destruction was not allowed\n",
|
meta_bug ("Tried to destroy window %s while destruction was not allowed\n",
|
||||||
window->desc);
|
window->desc);
|
||||||
@ -5495,268 +5488,11 @@ 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,
|
|
||||||
FALSE,
|
|
||||||
timestamp);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case META_MENU_OP_RESIZE:
|
|
||||||
meta_window_begin_grab_op (window,
|
|
||||||
META_GRAB_OP_KEYBOARD_RESIZING_UNKNOWN,
|
|
||||||
FALSE,
|
|
||||||
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
|
void
|
||||||
meta_window_show_menu (MetaWindow *window,
|
meta_window_show_menu (MetaWindow *window)
|
||||||
int root_x,
|
|
||||||
int root_y,
|
|
||||||
int button,
|
|
||||||
guint32 timestamp)
|
|
||||||
{
|
{
|
||||||
MetaMenuOp ops;
|
|
||||||
MetaMenuOp insensitive;
|
|
||||||
MetaWindowMenu *menu;
|
|
||||||
MetaWorkspaceLayout layout;
|
|
||||||
int n_workspaces;
|
|
||||||
gboolean ltr;
|
|
||||||
|
|
||||||
g_return_if_fail (!window->override_redirect);
|
g_return_if_fail (!window->override_redirect);
|
||||||
|
meta_compositor_show_window_menu (window->display->compositor, window);
|
||||||
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);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
@ -8373,11 +8109,7 @@ meta_window_handle_ungrabbed_event (MetaWindow *window,
|
|||||||
{
|
{
|
||||||
if (meta_prefs_get_raise_on_click ())
|
if (meta_prefs_get_raise_on_click ())
|
||||||
meta_window_raise (window);
|
meta_window_raise (window);
|
||||||
meta_window_show_menu (window,
|
meta_window_show_menu (window);
|
||||||
event->button.x,
|
|
||||||
event->button.y,
|
|
||||||
event->button.button,
|
|
||||||
event->any.time);
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
else if (fully_modified && (int) event->button.button == 1)
|
else if (fully_modified && (int) event->button.button == 1)
|
||||||
|
@ -86,61 +86,6 @@ typedef enum
|
|||||||
META_FRAME_TILED_RIGHT = 1 << 16
|
META_FRAME_TILED_RIGHT = 1 << 16
|
||||||
} MetaFrameFlags;
|
} 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:
|
* MetaGrabOp:
|
||||||
* @META_GRAB_OP_NONE: None
|
* @META_GRAB_OP_NONE: None
|
||||||
|
@ -122,5 +122,7 @@ void meta_compositor_show_tile_preview (MetaCompositor *compositor,
|
|||||||
MetaRectangle *tile_rect,
|
MetaRectangle *tile_rect,
|
||||||
int tile_monitor_number);
|
int tile_monitor_number);
|
||||||
void meta_compositor_hide_tile_preview (MetaCompositor *compositor);
|
void meta_compositor_hide_tile_preview (MetaCompositor *compositor);
|
||||||
|
void meta_compositor_show_window_menu (MetaCompositor *compositor,
|
||||||
|
MetaWindow *window);
|
||||||
|
|
||||||
#endif /* META_COMPOSITOR_H */
|
#endif /* META_COMPOSITOR_H */
|
||||||
|
@ -164,6 +164,9 @@ struct _MetaPluginClass
|
|||||||
int tile_monitor_number);
|
int tile_monitor_number);
|
||||||
void (*hide_tile_preview) (MetaPlugin *plugin);
|
void (*hide_tile_preview) (MetaPlugin *plugin);
|
||||||
|
|
||||||
|
void (*show_window_menu) (MetaPlugin *plugin,
|
||||||
|
MetaWindow *window);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* MetaPluginClass::kill_window_effects:
|
* MetaPluginClass::kill_window_effects:
|
||||||
* @actor: a #MetaWindowActor
|
* @actor: a #MetaWindowActor
|
||||||
|
@ -399,10 +399,6 @@ GType meta_key_binding_get_type (void);
|
|||||||
|
|
||||||
MetaKeyBindingAction meta_prefs_get_keybinding_action (const char *name);
|
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_get_visual_bell (void);
|
||||||
gboolean meta_prefs_bell_is_audible (void);
|
gboolean meta_prefs_bell_is_audible (void);
|
||||||
GDesktopVisualBellType meta_prefs_get_visual_bell_type (void);
|
GDesktopVisualBellType meta_prefs_get_visual_bell_type (void);
|
||||||
|
@ -1102,9 +1102,6 @@ meta_frame_titlebar_event (MetaUIFrame *frame,
|
|||||||
case G_DESKTOP_TITLEBAR_ACTION_MENU:
|
case G_DESKTOP_TITLEBAR_ACTION_MENU:
|
||||||
meta_core_show_window_menu (display,
|
meta_core_show_window_menu (display,
|
||||||
frame->xwindow,
|
frame->xwindow,
|
||||||
event->x_root,
|
|
||||||
event->y_root,
|
|
||||||
event->button,
|
|
||||||
event->time);
|
event->time);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -1214,31 +1211,10 @@ meta_frames_button_press_event (GtkWidget *widget,
|
|||||||
redraw_control (frames, frame, control);
|
redraw_control (frames, frame, control);
|
||||||
|
|
||||||
if (control == META_FRAME_CONTROL_MENU)
|
if (control == META_FRAME_CONTROL_MENU)
|
||||||
{
|
|
||||||
MetaFrameGeometry fgeom;
|
|
||||||
GdkRectangle *rect;
|
|
||||||
int dx, dy;
|
|
||||||
|
|
||||||
meta_frames_calc_geometry (frames, frame, &fgeom);
|
|
||||||
|
|
||||||
rect = control_rect (META_FRAME_CONTROL_MENU, &fgeom);
|
|
||||||
|
|
||||||
/* get delta to convert to root coords */
|
|
||||||
dx = event->x_root - event->x;
|
|
||||||
dy = event->y_root - event->y;
|
|
||||||
|
|
||||||
/* Align to the right end of the menu rectangle if RTL */
|
|
||||||
if (meta_ui_get_direction() == META_UI_DIRECTION_RTL)
|
|
||||||
dx += rect->width;
|
|
||||||
|
|
||||||
meta_core_show_window_menu (display,
|
meta_core_show_window_menu (display,
|
||||||
frame->xwindow,
|
frame->xwindow,
|
||||||
rect->x + dx,
|
|
||||||
rect->y + rect->height + dy,
|
|
||||||
event->button,
|
|
||||||
event->time);
|
event->time);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
else if (event->button == 1 &&
|
else if (event->button == 1 &&
|
||||||
(control == META_FRAME_CONTROL_RESIZE_SE ||
|
(control == META_FRAME_CONTROL_RESIZE_SE ||
|
||||||
control == META_FRAME_CONTROL_RESIZE_S ||
|
control == META_FRAME_CONTROL_RESIZE_S ||
|
||||||
|
516
src/ui/menu.c
516
src/ui/menu.c
@ -1,516 +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 <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <config.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include "menu.h"
|
|
||||||
#include <meta/main.h>
|
|
||||||
#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;
|
|
||||||
|
|
||||||
(* 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;
|
|
||||||
|
|
||||||
(* 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);
|
|
||||||
}
|
|
@ -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 <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef META_MENU_H
|
|
||||||
#define META_MENU_H
|
|
||||||
|
|
||||||
#include <gtk/gtk.h>
|
|
||||||
#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
|
|
@ -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 <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* 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 <config.h>
|
|
||||||
#include "metaaccellabel.h"
|
|
||||||
#include <gtk/gtk.h>
|
|
||||||
#include <string.h>
|
|
||||||
#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));
|
|
||||||
}
|
|
@ -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 <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* 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 <gtk/gtk.h>
|
|
||||||
#include <meta/common.h>
|
|
||||||
|
|
||||||
#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__ */
|
|
34
src/ui/ui.c
34
src/ui/ui.c
@ -487,40 +487,6 @@ meta_ui_set_frame_title (MetaUI *ui,
|
|||||||
meta_frames_set_title (ui->frames, xwindow, title);
|
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*
|
GdkPixbuf*
|
||||||
meta_gdk_pixbuf_get_from_pixmap (Pixmap xpixmap,
|
meta_gdk_pixbuf_get_from_pixmap (Pixmap xpixmap,
|
||||||
int src_x,
|
int src_x,
|
||||||
|
15
src/ui/ui.h
15
src/ui/ui.h
@ -113,21 +113,6 @@ void meta_ui_update_frame_style (MetaUI *ui,
|
|||||||
void meta_ui_repaint_frame (MetaUI *ui,
|
void meta_ui_repaint_frame (MetaUI *ui,
|
||||||
Window xwindow);
|
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 */
|
/* FIXME these lack a display arg */
|
||||||
GdkPixbuf* meta_gdk_pixbuf_get_from_pixmap (Pixmap xpixmap,
|
GdkPixbuf* meta_gdk_pixbuf_get_from_pixmap (Pixmap xpixmap,
|
||||||
|
Loading…
Reference in New Issue
Block a user