added accelerators for "close" and "quit" actions.

2006-03-09  Sven Neumann  <sven@gimp.org>

	* plug-ins/common/animationplay.c: added accelerators for "close"
	and "quit" actions.

	* plug-ins/helpbrowser/dialog.c: added "close" to the popup menu.
This commit is contained in:
Sven Neumann 2006-03-09 11:02:47 +00:00 committed by Sven Neumann
parent f775a9c825
commit bf647a159e
3 changed files with 24 additions and 9 deletions

View File

@ -1,3 +1,10 @@
2006-03-09 Sven Neumann <sven@gimp.org>
* plug-ins/common/animationplay.c: added accelerators for "close"
and "quit" actions.
* plug-ins/helpbrowser/dialog.c: added "close" to the popup menu.
2006-03-09 Sven Neumann <sven@gimp.org>
* plug-ins/imagemap/imap_main.c (button_press): do not attempt to

View File

@ -237,9 +237,7 @@ menu_popup (GtkWidget *widget,
GtkWidget *menu = gtk_ui_manager_get_widget (ui_manager,
"/anim-play-popup");
gtk_widget_grab_focus (widget);
gtk_menu_set_screen (GTK_MENU (menu), gtk_widget_get_screen (widget));
gtk_menu_attach_to_widget (GTK_MENU (menu), widget, NULL);
gtk_menu_popup (GTK_MENU (menu),
NULL, NULL, NULL, NULL,
event->button, event->time);
@ -428,10 +426,6 @@ ui_manager_new (GtkWidget *window)
{
static GtkActionEntry actions[] =
{
{ "close", GTK_STOCK_CLOSE,
NULL, NULL, NULL,
G_CALLBACK (close_callback) },
{ "step", GTK_STOCK_MEDIA_NEXT,
N_("_Step"), NULL, N_("Step to next frame"),
G_CALLBACK (step_callback) },
@ -442,7 +436,17 @@ ui_manager_new (GtkWidget *window)
{ "help", GTK_STOCK_HELP,
NULL, NULL, NULL,
G_CALLBACK (help_callback) }
G_CALLBACK (help_callback) },
{ "close", GTK_STOCK_CLOSE,
NULL, "<control>W", NULL,
G_CALLBACK (close_callback)
},
{
"quit", GTK_STOCK_QUIT,
NULL, "<control>Q", NULL,
G_CALLBACK (close_callback)
}
};
static GtkToggleActionEntry toggle_actions[] =
@ -489,7 +493,9 @@ ui_manager_new (GtkWidget *window)
" <toolitem action=\"detach\" />"
" <separator name=\"space\" />"
" <toolitem action=\"help\" />"
" </toolbar>"
" </toolbar>"
" <accelerator action=\"close\" />"
" <accelerator action=\"quit\" />"
"</ui>",
-1, &error);

View File

@ -552,6 +552,8 @@ ui_manager_new (GtkWidget *window)
" <separator />"
" <menuitem action=\"zoom-in\" />"
" <menuitem action=\"zoom-out\" />"
" <separator />"
" <menuitem action=\"close\" />"
" </popup>"
"</ui>",
-1, &error);