1997-11-25 06:05:25 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* 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, write to the Free Software
|
1998-04-13 13:44:11 +08:00
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
1999-10-03 21:50:19 +08:00
|
|
|
#include <gdk/gdkkeysyms.h>
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
#include "appenv.h"
|
1999-06-07 01:26:51 +08:00
|
|
|
#include "channels_dialog.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
#include "colormaps.h"
|
|
|
|
#include "commands.h"
|
1999-08-24 06:47:36 +08:00
|
|
|
#include "dialog_handler.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
#include "fileops.h"
|
|
|
|
#include "gimprc.h"
|
2000-02-10 08:00:54 +08:00
|
|
|
#include "gimpui.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
#include "interface.h"
|
1999-06-07 01:26:51 +08:00
|
|
|
#include "layers_dialog.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
#include "menus.h"
|
1999-06-07 01:26:51 +08:00
|
|
|
#include "paths_dialog.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
#include "paint_funcs.h"
|
|
|
|
#include "procedural_db.h"
|
|
|
|
#include "scale.h"
|
|
|
|
#include "tools.h"
|
1998-03-11 16:58:42 +08:00
|
|
|
#include "gdisplay.h"
|
1998-07-08 17:04:33 +08:00
|
|
|
#include "docindex.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-01-27 14:30:37 +08:00
|
|
|
#include "config.h"
|
1998-08-06 07:46:04 +08:00
|
|
|
#include "libgimp/gimpintl.h"
|
1999-03-07 20:56:03 +08:00
|
|
|
#include "libgimp/gimpenv.h"
|
1998-08-06 07:46:04 +08:00
|
|
|
|
2000-02-10 09:59:52 +08:00
|
|
|
#define MRU_MENU_ENTRY_SIZE (strlen ("/File/MRU00 ") + 1)
|
1998-07-12 13:18:17 +08:00
|
|
|
#define MRU_MENU_ACCEL_SIZE sizeof ("<control>0")
|
|
|
|
|
2000-03-09 04:57:49 +08:00
|
|
|
static void menus_create_item (GtkItemFactory *item_factory,
|
|
|
|
GimpItemFactoryEntry *entry,
|
|
|
|
gpointer callback_data,
|
|
|
|
guint callback_type);
|
|
|
|
static void menus_create_items (GtkItemFactory *item_factory,
|
|
|
|
guint n_entries,
|
|
|
|
GimpItemFactoryEntry *entries,
|
|
|
|
gpointer callback_data,
|
|
|
|
guint callback_type);
|
|
|
|
static void menus_create_branches (GtkItemFactory *item_factory,
|
|
|
|
GimpItemFactoryEntry *entry);
|
|
|
|
static void menus_init (void);
|
1999-12-08 02:56:12 +08:00
|
|
|
|
|
|
|
#ifdef ENABLE_NLS
|
2000-03-09 04:57:49 +08:00
|
|
|
static gchar *menu_translate (const gchar *path,
|
|
|
|
gpointer data);
|
1999-12-08 02:56:12 +08:00
|
|
|
#else
|
|
|
|
#define menu_translate NULL
|
|
|
|
#endif
|
|
|
|
|
2000-03-09 04:57:49 +08:00
|
|
|
static void tearoff_cmd_callback (GtkWidget *widget,
|
|
|
|
gpointer callback_data,
|
|
|
|
guint callback_action);
|
1999-10-03 21:50:19 +08:00
|
|
|
|
1999-11-20 20:12:41 +08:00
|
|
|
static void help_debug_cmd_callback (GtkWidget *widget,
|
|
|
|
gpointer callback_data,
|
|
|
|
guint callback_action);
|
|
|
|
|
1998-07-12 13:18:17 +08:00
|
|
|
static GSList *last_opened_raw_filenames = NULL;
|
|
|
|
|
1999-11-20 20:12:41 +08:00
|
|
|
/***** <Toolbox> *****/
|
|
|
|
|
1999-10-03 21:50:19 +08:00
|
|
|
static GimpItemFactoryEntry toolbox_entries[] =
|
|
|
|
{
|
1999-11-20 20:12:41 +08:00
|
|
|
/* <Toolbox>/File */
|
|
|
|
|
2000-03-09 04:57:49 +08:00
|
|
|
/* the underscore installs an accelerator using the character that follows */
|
2000-02-25 01:48:02 +08:00
|
|
|
{ { N_("/_File"), NULL, NULL, 0, "<Branch>" },
|
1999-10-03 21:50:19 +08:00
|
|
|
NULL, NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/File/New..."), "<control>N", file_new_cmd_callback, 0 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"file/dialogs/file_new.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/File/Open..."), "<control>O", file_open_cmd_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"file/open/dialogs/file_open.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
|
|
|
/* <Toolbox>/File/Acquire */
|
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/File/---", NULL, NULL, 0, "<Separator>" },
|
1999-11-20 20:12:41 +08:00
|
|
|
NULL, NULL },
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { N_("/File/Acquire"), NULL, NULL, 0, "<Branch>" },
|
1999-10-03 21:50:19 +08:00
|
|
|
NULL, NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/File/---", NULL, NULL, 0, "<Separator>" },
|
1999-11-20 20:12:41 +08:00
|
|
|
NULL, NULL },
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/File/Preferences..."), NULL, file_pref_cmd_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"file/dialogs/preferences/preferences.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
|
|
|
/* <Toolbox>/File/Dialogs */
|
1999-10-03 21:50:19 +08:00
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/File/---", NULL, NULL, 0, "<Separator>" },
|
1999-11-20 20:12:41 +08:00
|
|
|
NULL, NULL },
|
2000-02-16 09:47:22 +08:00
|
|
|
{ { N_("/File/Dialogs/Layers, Channels & Paths..."), "<control>L", dialogs_lc_cmd_callback, 0 },
|
1999-11-20 20:12:41 +08:00
|
|
|
"file/dialogs/layers_and_channels.html", NULL },
|
|
|
|
{ { N_("/File/Dialogs/Tool Options..."), "<control><shift>T", dialogs_tool_options_cmd_callback, 0 },
|
|
|
|
"file/dialogs/tool_options.html", NULL },
|
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/File/Dialogs/---", NULL, NULL, 0, "<Separator>" },
|
1999-11-20 20:12:41 +08:00
|
|
|
NULL, NULL },
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/File/Dialogs/Brushes..."), "<control><shift>B", dialogs_brushes_cmd_callback, 0 },
|
|
|
|
"file/dialogs/brush_selection.html", NULL },
|
|
|
|
{ { N_("/File/Dialogs/Patterns..."), "<control><shift>P", dialogs_patterns_cmd_callback, 0 },
|
|
|
|
"file/dialogs/pattern_selection.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/File/Dialogs/Gradients..."), "<control>G", dialogs_gradients_cmd_callback, 0 },
|
|
|
|
"file/dialogs/gradient_selection.html", NULL },
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/File/Dialogs/Palette..."), "<control>P", dialogs_palette_cmd_callback, 0 },
|
|
|
|
"file/dialogs/palette_selection.html", NULL },
|
1999-10-16 21:07:15 +08:00
|
|
|
{ { N_("/File/Dialogs/Indexed Palette..."), NULL, dialogs_indexed_palette_cmd_callback, 0 },
|
|
|
|
"file/dialogs/indexed_palette.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
2000-03-10 03:45:52 +08:00
|
|
|
{ { "/File/Dialogs/---", NULL, NULL, 0, "<Separator>" },
|
|
|
|
NULL, NULL },
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/File/Dialogs/Input Devices..."), NULL, dialogs_input_devices_cmd_callback, 0 },
|
|
|
|
"file/dialogs/input_devices.html", NULL },
|
|
|
|
{ { N_("/File/Dialogs/Device Status..."), NULL, dialogs_device_status_cmd_callback, 0 },
|
|
|
|
"file/dialogs/device_status.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/File/Dialogs/---", NULL, NULL, 0, "<Separator>" },
|
1999-11-20 20:12:41 +08:00
|
|
|
NULL, NULL },
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/File/Dialogs/Document Index..."), NULL, raise_idea_callback, 0 },
|
|
|
|
"file/dialogs/document_index.html", NULL },
|
|
|
|
{ { N_("/File/Dialogs/Error Console..."), NULL, dialogs_error_console_cmd_callback, 0 },
|
|
|
|
"file/dialogs/error_console.html", NULL },
|
|
|
|
{ { N_("/File/Dialogs/Display Filters..."), NULL, dialogs_display_filters_cmd_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"file/dialogs/display_filters/display_filters.html", NULL },
|
1999-10-03 21:50:19 +08:00
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/File/---", NULL, NULL, 0, "<Separator>" },
|
1999-11-20 20:12:41 +08:00
|
|
|
NULL, NULL },
|
1999-12-02 21:00:18 +08:00
|
|
|
|
|
|
|
/* MRU entries are inserted here */
|
|
|
|
|
|
|
|
{ { "/File/---MRU", NULL, NULL, 0, "<Separator>" },
|
1999-11-20 20:12:41 +08:00
|
|
|
NULL, NULL },
|
1999-12-02 21:00:18 +08:00
|
|
|
{ { N_("/File/Quit"), "<control>Q", file_quit_cmd_callback, 0 },
|
|
|
|
"file/quit.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
|
|
|
/* <Toolbox>/Xtns */
|
|
|
|
|
2000-03-09 04:57:49 +08:00
|
|
|
/* the underscore installs an accelerator using the character that follows */
|
2000-02-25 01:48:02 +08:00
|
|
|
{ { N_("/_Xtns"), NULL, NULL, 0, "<Branch>" },
|
1999-10-03 21:50:19 +08:00
|
|
|
NULL, NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/Xtns/Module Browser..."), NULL, dialogs_module_browser_cmd_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"dialogs/module_browser.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/Xtns/---", NULL, NULL, 0, "<Separator>" },
|
1999-10-03 21:50:19 +08:00
|
|
|
NULL, NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
|
|
|
/* <Toolbox>/Help */
|
|
|
|
|
2000-03-09 04:57:49 +08:00
|
|
|
/* the underscore installs an accelerator using the character that follows */
|
2000-02-25 01:48:02 +08:00
|
|
|
{ { N_("/_Help"), NULL, NULL, 0, "<Branch>" },
|
1999-10-03 21:50:19 +08:00
|
|
|
NULL, NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/Help/Help..."), "F1", help_help_cmd_callback, 0 },
|
|
|
|
"help/dialogs/help.html", NULL },
|
|
|
|
{ { N_("/Help/Context Help..."), "<shift>F1", help_context_help_cmd_callback, 0 },
|
|
|
|
"help/context_help.html", NULL },
|
1999-12-14 22:10:34 +08:00
|
|
|
{ { N_("/Help/Tip of the Day..."), NULL, help_tips_cmd_callback, 0 },
|
1999-11-20 20:12:41 +08:00
|
|
|
"help/dialogs/tip_of_the_day.html", NULL },
|
|
|
|
{ { N_("/Help/About..."), NULL, help_about_cmd_callback, 0 },
|
|
|
|
"help/dialogs/about.html", NULL },
|
|
|
|
{ { N_("/Help/Dump Items (Debug)"), NULL, help_debug_cmd_callback, 0 },
|
|
|
|
NULL, NULL }
|
1998-06-07 21:55:36 +08:00
|
|
|
};
|
2000-03-09 04:57:49 +08:00
|
|
|
|
1999-10-03 21:50:19 +08:00
|
|
|
static guint n_toolbox_entries = (sizeof (toolbox_entries) /
|
|
|
|
sizeof (toolbox_entries[0]));
|
1998-06-07 21:55:36 +08:00
|
|
|
static GtkItemFactory *toolbox_factory = NULL;
|
|
|
|
|
1999-11-20 20:12:41 +08:00
|
|
|
/***** <Image> *****/
|
|
|
|
|
1999-10-03 21:50:19 +08:00
|
|
|
static GimpItemFactoryEntry image_entries[] =
|
|
|
|
{
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/tearoff1", NULL, tearoff_cmd_callback, 0, "<Tearoff>" },
|
1999-10-03 21:50:19 +08:00
|
|
|
NULL, NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
|
|
|
/* <Image>/File */
|
|
|
|
|
|
|
|
{ { N_("/File/New..."), "<control>N", file_new_cmd_callback, 1 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"file/dialogs/file_new.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/File/Open..."), "<control>O", file_open_cmd_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"file/open/dialogs/file_open.html", NULL },
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/File/Save"), "<control>S", file_save_cmd_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"file/save/dialogs/file_save.html", NULL },
|
1999-12-14 22:10:34 +08:00
|
|
|
{ { N_("/File/Save As..."), NULL, file_save_as_cmd_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"file/save/dialogs/file_save.html", NULL },
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/File/Revert"), NULL, file_revert_cmd_callback, 0 },
|
|
|
|
"file/revert.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/File/---", NULL, NULL, 0, "<Separator>" },
|
1999-10-03 21:50:19 +08:00
|
|
|
NULL, NULL },
|
1999-10-04 16:40:33 +08:00
|
|
|
{ { N_( "/File/Close"), "<control>W", file_close_cmd_callback, 0 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"file/close.html", NULL },
|
|
|
|
{ { N_("/File/Quit"), "<control>Q", file_quit_cmd_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"file/quit.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/File/---moved", NULL, NULL, 0, "<Separator>" },
|
1999-10-03 21:50:19 +08:00
|
|
|
NULL, NULL },
|
|
|
|
|
1999-11-20 20:12:41 +08:00
|
|
|
/* <Image>/Edit */
|
|
|
|
|
|
|
|
{ { N_("/Edit/Undo"), "<control>Z", edit_undo_cmd_callback, 0 },
|
|
|
|
"edit/undo.html", NULL },
|
|
|
|
{ { N_("/Edit/Redo"), "<control>R", edit_redo_cmd_callback, 0 },
|
|
|
|
"edit/redo.html", NULL },
|
2000-03-10 03:45:52 +08:00
|
|
|
{ { N_("/Edit/Undo History..."), NULL, edit_undo_history_cmd_callback, 0},
|
|
|
|
"edit/dialogs/undo_history.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/Edit/---", NULL, NULL, 0, "<Separator>" },
|
1999-11-20 20:12:41 +08:00
|
|
|
NULL, NULL },
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/Edit/Cut"), "<control>X", edit_cut_cmd_callback, 0 },
|
|
|
|
"edit/cut.html", NULL },
|
|
|
|
{ { N_("/Edit/Copy"), "<control>C", edit_copy_cmd_callback, 0 },
|
|
|
|
"edit/copy.html", NULL },
|
|
|
|
{ { N_("/Edit/Paste"), "<control>V", edit_paste_cmd_callback, 0 },
|
|
|
|
"edit/paste.html", NULL },
|
|
|
|
{ { N_("/Edit/Paste Into"), NULL, edit_paste_into_cmd_callback, 0 },
|
|
|
|
"edit/paste_into.html", NULL },
|
1999-12-14 22:10:34 +08:00
|
|
|
{ { N_("/Edit/Paste as New"), NULL, edit_paste_as_new_cmd_callback, 0 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"edit/paste_as_new.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
|
|
|
/* <Image>/Edit/Buffer */
|
|
|
|
|
|
|
|
{ { N_("/Edit/Buffer/Cut Named..."), "<control><shift>X", edit_named_cut_cmd_callback, 0 },
|
|
|
|
"edit/dialogs/cut_named.html", NULL },
|
|
|
|
{ { N_("/Edit/Buffer/Copy Named..."), "<control><shift>C", edit_named_copy_cmd_callback, 0 },
|
|
|
|
"edit/dialogs/copy_named.html", NULL },
|
|
|
|
{ { N_("/Edit/Buffer/Paste Named..."), "<control><shift>V", edit_named_paste_cmd_callback, 0 },
|
|
|
|
"edit/dialogs/paste_named.html", NULL },
|
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/Edit/---", NULL, NULL, 0, "<Separator>" },
|
1999-10-03 21:50:19 +08:00
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Edit/Clear"), "<control>K", edit_clear_cmd_callback, 0 },
|
|
|
|
"edit/clear.html", NULL },
|
|
|
|
{ { N_("/Edit/Fill"), "<control>period", edit_fill_cmd_callback, 0 },
|
|
|
|
"edit/fill.html", NULL },
|
|
|
|
{ { N_("/Edit/Stroke"), NULL, edit_stroke_cmd_callback, 0 },
|
|
|
|
"edit/stroke.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/Edit/---", NULL, NULL, 0, "<Separator>" },
|
1999-10-03 21:50:19 +08:00
|
|
|
NULL, NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
|
|
|
/* <Image>/Select */
|
1998-06-07 21:55:36 +08:00
|
|
|
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/Select/Invert"), "<control>I", select_invert_cmd_callback, 0 },
|
|
|
|
"select/invert.html", NULL },
|
|
|
|
{ { N_("/Select/All"), "<control>A", select_all_cmd_callback, 0 },
|
|
|
|
"select/all.html", NULL },
|
|
|
|
{ { N_("/Select/None"), "<control><shift>A", select_none_cmd_callback, 0 },
|
|
|
|
"select/none.html", NULL },
|
|
|
|
{ { N_("/Select/Float"), "<control><shift>L", select_float_cmd_callback, 0 },
|
|
|
|
"select/float.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/Select/---", NULL, NULL, 0, "<Separator>" },
|
1999-10-03 21:50:19 +08:00
|
|
|
NULL, NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/Select/Feather..."), "<control><shift>F", select_feather_cmd_callback, 0 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"select/dialogs/feather_selection.html", NULL },
|
|
|
|
{ { N_("/Select/Sharpen"), "<control><shift>H", select_sharpen_cmd_callback, 0 },
|
|
|
|
"select/sharpen.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/Select/Shrink..."), NULL, select_shrink_cmd_callback, 0 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"select/dialogs/shrink_selection.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/Select/Grow..."), NULL, select_grow_cmd_callback, 0 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"select/dialogs/grow_selection.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/Select/Border..."), "<control><shift>B", select_border_cmd_callback, 0 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"select/dialogs/border_selection.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/Select/---", NULL, NULL, 0, "<Separator>" },
|
1999-10-03 21:50:19 +08:00
|
|
|
NULL, NULL },
|
1999-12-14 22:10:34 +08:00
|
|
|
{ { N_("/Select/Save to Channel"), NULL, select_save_cmd_callback, 0 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"select/save_to_channel.html", NULL },
|
|
|
|
|
1999-11-20 20:12:41 +08:00
|
|
|
/* <Image>/View */
|
|
|
|
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/View/Zoom In"), "equal", view_zoomin_cmd_callback, 0 },
|
|
|
|
"view/zoom.html", NULL },
|
|
|
|
{ { N_("/View/Zoom Out"), "minus", view_zoomout_cmd_callback, 0 },
|
|
|
|
"view/zoom.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
|
|
|
/* <Image>/View/Zoom */
|
|
|
|
|
|
|
|
{ { N_("/View/Zoom/16:1"), NULL, view_zoom_16_1_cmd_callback, 0 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"view/zoom.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/View/Zoom/8:1"), NULL, view_zoom_8_1_cmd_callback, 0 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"view/zoom.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/View/Zoom/4:1"), NULL, view_zoom_4_1_cmd_callback, 0 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"view/zoom.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/View/Zoom/2:1"), NULL, view_zoom_2_1_cmd_callback, 0 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"view/zoom.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/View/Zoom/1:1"), "1", view_zoom_1_1_cmd_callback, 0 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"view/zoom.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/View/Zoom/1:2"), NULL, view_zoom_1_2_cmd_callback, 0 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"view/zoom.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/View/Zoom/1:4"), NULL, view_zoom_1_4_cmd_callback, 0 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"view/zoom.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/View/Zoom/1:8"), NULL, view_zoom_1_8_cmd_callback, 0 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"view/zoom.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/View/Zoom/1:16"), NULL, view_zoom_1_16_cmd_callback, 0 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"view/zoom.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-12-14 22:10:34 +08:00
|
|
|
{ { N_("/View/Dot for Dot"), NULL, view_dot_for_dot_cmd_callback, 0, "<ToggleItem>" },
|
1999-10-03 21:50:19 +08:00
|
|
|
"view/dot_for_dot.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/View/---", NULL, NULL, 0, "<Separator>" },
|
1999-11-20 20:12:41 +08:00
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/View/Info Window..."), "<control><shift>I", view_info_window_cmd_callback, 0 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"view/dialogs/info_window.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/View/Nav. Window..."), "<control><shift>N", view_nav_window_cmd_callback, 0 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"view/dialogs/navigation_window.html", NULL },
|
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/View/---", NULL, NULL, 0, "<Separator>" },
|
1999-10-03 21:50:19 +08:00
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/View/Toggle Selection"), "<control>T", view_toggle_selection_cmd_callback, 0, "<ToggleItem>" },
|
|
|
|
"view/toggle_selection.html", NULL },
|
|
|
|
{ { N_("/View/Toggle Rulers"), "<control><shift>R", view_toggle_rulers_cmd_callback, 0, "<ToggleItem>" },
|
|
|
|
"view/toggle_rulers.html", NULL },
|
|
|
|
{ { N_("/View/Toggle Statusbar"), "<control><shift>S", view_toggle_statusbar_cmd_callback, 0, "<ToggleItem>" },
|
|
|
|
"view/toggle_statusbar.html", NULL },
|
|
|
|
{ { N_("/View/Toggle Guides"), "<control><shift>T", view_toggle_guides_cmd_callback, 0, "<ToggleItem>" },
|
|
|
|
"view/toggle_guides.html", NULL },
|
1999-12-14 22:10:34 +08:00
|
|
|
{ { N_("/View/Snap to Guides"), NULL, view_snap_to_guides_cmd_callback, 0, "<ToggleItem>" },
|
1999-10-03 21:50:19 +08:00
|
|
|
"view/snap_to_guides.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/View/---", NULL, NULL, 0, "<Separator>" },
|
1999-10-03 21:50:19 +08:00
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/View/New View"), NULL, view_new_view_cmd_callback, 0 },
|
|
|
|
"view/new_view.html", NULL },
|
|
|
|
{ { N_("/View/Shrink Wrap"), "<control>E", view_shrink_wrap_cmd_callback, 0 },
|
|
|
|
"view/shrink_wrap.html", NULL },
|
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/View/---", NULL, NULL, 0, "<Separator>" },
|
1999-11-20 20:12:41 +08:00
|
|
|
NULL, NULL },
|
|
|
|
|
|
|
|
/* <Image>/Image/Mode */
|
|
|
|
|
|
|
|
{ { N_("/Image/Mode/RGB"), "<alt>R", image_convert_rgb_cmd_callback, 0 },
|
|
|
|
"image/mode/convert_to_rgb.html", NULL },
|
|
|
|
{ { N_("/Image/Mode/Grayscale"), "<alt>G", image_convert_grayscale_cmd_callback, 0 },
|
|
|
|
"image/mode/convert_to_grayscale.html", NULL },
|
|
|
|
{ { N_("/Image/Mode/Indexed..."), "<alt>I", image_convert_indexed_cmd_callback, 0 },
|
|
|
|
"image/mode/dialogs/convert_to_indexed.html", NULL },
|
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/Image/Mode/---", NULL, NULL, 0, "<Separator>" },
|
1999-11-20 20:12:41 +08:00
|
|
|
NULL, NULL },
|
|
|
|
|
|
|
|
/* <Image>/Image/Colors */
|
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/Image/Colors/---", NULL, NULL, 0, "<Separator>" },
|
1999-11-20 20:12:41 +08:00
|
|
|
NULL, NULL },
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/Image/Colors/Desaturate"), NULL, image_desaturate_cmd_callback, 0 },
|
|
|
|
"image/colors/desaturate.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/Image/Colors/Invert"), NULL, image_invert_cmd_callback, 0 },
|
|
|
|
"image/colors/invert.html", NULL },
|
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/Image/Colors/---", NULL, NULL, 0, "<Separator>" },
|
1999-10-19 23:52:32 +08:00
|
|
|
NULL, NULL },
|
1999-10-03 21:50:19 +08:00
|
|
|
|
1999-11-20 20:12:41 +08:00
|
|
|
/* <Image>/Image/Colors/Auto */
|
|
|
|
|
|
|
|
{ { N_("/Image/Colors/Auto/Equalize"), NULL, image_equalize_cmd_callback, 0 },
|
|
|
|
"image/colors/auto/equalize.html", NULL },
|
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/Image/Colors/---", NULL, NULL, 0, "<Separator>" },
|
1999-11-20 20:12:41 +08:00
|
|
|
NULL, NULL },
|
|
|
|
|
|
|
|
/* <Image>/Image/Alpha */
|
1999-10-03 21:50:19 +08:00
|
|
|
|
|
|
|
{ { N_("/Image/Alpha/Add Alpha Channel"), NULL, layers_add_alpha_channel_cmd_callback, 0 },
|
|
|
|
"layers/add_alpha_channel.html", NULL },
|
|
|
|
|
1999-11-20 20:12:41 +08:00
|
|
|
/* <Image>/Image/Transforms */
|
|
|
|
|
|
|
|
{ { N_("/Image/Transforms/Offset..."), "<control><shift>O", image_offset_cmd_callback, 0 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"image/transforms/dialogs/offset.html", NULL },
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { N_("/Image/Transforms/Rotate"), NULL, NULL, 0, "<Branch>" },
|
1999-11-20 20:12:41 +08:00
|
|
|
NULL, NULL },
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/Image/Transforms/---", NULL, NULL, 0, "<Separator>" },
|
1999-10-03 21:50:19 +08:00
|
|
|
NULL, NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/Image/---", NULL, NULL, 0, "<Separator>" },
|
1999-10-03 21:50:19 +08:00
|
|
|
NULL, NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/Image/Canvas Size..."), NULL, image_resize_cmd_callback, 0 },
|
1999-12-18 00:37:50 +08:00
|
|
|
"image/dialogs/set_canvas_size.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/Image/Scale Image..."), NULL, image_scale_cmd_callback, 0 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"image/dialogs/scale_image.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/Image/Duplicate"), "<control>D", image_duplicate_cmd_callback, 0 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"image/duplicate.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/Image/---", NULL, NULL, 0, "<Separator>" },
|
1999-10-03 21:50:19 +08:00
|
|
|
NULL, NULL },
|
|
|
|
|
1999-11-20 20:12:41 +08:00
|
|
|
/* <Image>/Layers */
|
|
|
|
|
2000-02-16 09:47:22 +08:00
|
|
|
{ { N_("/Layers/Layers, Channels & Paths..."), "<control>L", dialogs_lc_cmd_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"dialogs/layers_and_channels.html", NULL },
|
2000-03-09 04:57:49 +08:00
|
|
|
{ { "/Layers/---", NULL, NULL, 0, "<Separator>" },
|
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Layers/Layer to Imagesize"), NULL, layers_resize_to_image_cmd_callback, 0 },
|
|
|
|
"layers/layer_to_image_size.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
|
|
|
/* <Image>/Layers/Stack */
|
|
|
|
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/Layers/Stack/Previous Layer"), "Prior", layers_previous_cmd_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"layers/stack/stack.html#previous_layer", NULL },
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/Layers/Stack/Next Layer"), "Next", layers_next_cmd_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"layers/stack/stack.html#next_layer", NULL },
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/Layers/Stack/Raise Layer"), "<shift>Prior", layers_raise_cmd_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"layers/stack/stack.html#raise_layer", NULL },
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/Layers/Stack/Lower Layer"), "<shift>Next", layers_lower_cmd_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"layers/stack/stack.html#lower_layer", NULL },
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/Layers/Stack/Layer to Top"), "<control>Prior", layers_raise_to_top_cmd_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"layers/stack/stack.html#layer_to_top", NULL },
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/Layers/Stack/Layer to Bottom"), "<control>Next", layers_lower_to_bottom_cmd_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"layers/stack/stack.html#layer_to_bottom", NULL },
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/Layers/Stack/---", NULL, NULL, 0, "<Separator>" },
|
1999-11-20 20:12:41 +08:00
|
|
|
NULL, NULL },
|
|
|
|
|
|
|
|
/* <Image>/Layers/Rotate */
|
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { N_("/Layers/Rotate"), NULL, NULL, 0, "<Branch>" },
|
1999-11-20 20:12:41 +08:00
|
|
|
NULL, NULL },
|
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/Layers/---", NULL, NULL, 0, "<Separator>" },
|
1999-10-03 21:50:19 +08:00
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Layers/Anchor Layer"), "<control>H", layers_anchor_cmd_callback, 0 },
|
|
|
|
"layers/anchor_layer.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/Layers/Merge Visible Layers..."), "<control>M", layers_merge_cmd_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"layers/dialogs/merge_visible_layers.html", NULL },
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/Layers/Flatten Image"), NULL, layers_flatten_cmd_callback, 0 },
|
|
|
|
"layers/flatten_image.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/Layers/---", NULL, NULL, 0, "<Separator>" },
|
1999-11-20 20:12:41 +08:00
|
|
|
NULL, NULL },
|
1999-12-14 22:10:34 +08:00
|
|
|
{ { N_("/Layers/Mask to Selection"), NULL, layers_mask_select_cmd_callback, 0 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"layers/mask_to_selection.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/Layers/---", NULL, NULL, 0, "<Separator>" },
|
1999-11-20 20:12:41 +08:00
|
|
|
NULL, NULL },
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/Layers/Add Alpha Channel"), NULL, layers_add_alpha_channel_cmd_callback, 0 },
|
|
|
|
"layers/add_alpha_channel.html", NULL },
|
1999-12-14 22:10:34 +08:00
|
|
|
{ { N_("/Layers/Alpha to Selection"), NULL, layers_alpha_select_cmd_callback, 0 },
|
1999-11-20 20:12:41 +08:00
|
|
|
"layers/alpha_to_selection.html", NULL },
|
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/Layers/---", NULL, NULL, 0, "<Separator>" },
|
1999-10-03 21:50:19 +08:00
|
|
|
NULL, NULL },
|
1999-10-04 16:40:33 +08:00
|
|
|
|
1999-11-20 20:12:41 +08:00
|
|
|
/* <Image>/Tools */
|
|
|
|
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/Tools/Toolbox"), NULL, toolbox_raise_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"toolbox/toolbox.html", NULL },
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/Tools/Default Colors"), "D", tools_default_colors_cmd_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"toolbox/toolbox.html#default_colors", NULL },
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/Tools/Swap Colors"), "X", tools_swap_colors_cmd_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"toolbox/toolbox.html#swap_colors", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/Tools/---", NULL, NULL, 0, "<Separator>" },
|
1999-10-03 21:50:19 +08:00
|
|
|
NULL, NULL },
|
1999-01-19 08:03:00 +08:00
|
|
|
|
2000-02-01 07:59:05 +08:00
|
|
|
{ { N_("/Tools/Select Tools"), NULL, NULL, 0, "<Branch>" },
|
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Tools/Transform Tools"), NULL, NULL, 0, "<Branch>" },
|
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Tools/Paint Tools"), NULL, NULL, 0, "<Branch>" },
|
|
|
|
NULL, NULL },
|
|
|
|
|
1999-12-20 01:45:04 +08:00
|
|
|
/* <Image>/Dialogs */
|
|
|
|
|
2000-02-16 09:47:22 +08:00
|
|
|
{ { N_("/Dialogs/Layers, Channels & Paths..."), "<control>L", dialogs_lc_cmd_callback, 0 },
|
1999-12-20 01:45:04 +08:00
|
|
|
"dialogs/layers_and_channels.html", NULL },
|
|
|
|
{ { N_("/Dialogs/Tool Options..."), NULL, dialogs_tool_options_cmd_callback, 0 },
|
|
|
|
"dialogs/tool_options.html", NULL },
|
|
|
|
|
|
|
|
{ { "/Dialogs/---", NULL, NULL, 0, "<Separator>" },
|
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Dialogs/Brushes..."), "<control><shift>B", dialogs_brushes_cmd_callback, 0 },
|
|
|
|
"dialogs/brush_selection.html", NULL },
|
|
|
|
{ { N_("/Dialogs/Patterns..."), "<control><shift>P", dialogs_patterns_cmd_callback, 0 },
|
|
|
|
"dialogs/pattern_selection.html", NULL },
|
|
|
|
{ { N_("/Dialogs/Gradients..."), "<control>G", dialogs_gradients_cmd_callback, 0 },
|
|
|
|
"dialogs/gradient_selection.html", NULL },
|
|
|
|
{ { N_("/Dialogs/Palette..."), "<control>P", dialogs_palette_cmd_callback, 0 },
|
|
|
|
"dialogs/palette_selection.html", NULL },
|
|
|
|
{ { N_("/Dialogs/Indexed Palette..."), NULL, dialogs_indexed_palette_cmd_callback, 0 },
|
|
|
|
"dialogs/indexed_palette.html", NULL },
|
|
|
|
|
|
|
|
{ { "/Dialogs/---", NULL, NULL, 0, "<Separator>" },
|
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Dialogs/Input Devices..."), NULL, dialogs_input_devices_cmd_callback, 0 },
|
|
|
|
"dialogs/input_devices.html", NULL },
|
|
|
|
{ { N_("/Dialogs/Device Status..."), NULL, dialogs_device_status_cmd_callback, 0 },
|
|
|
|
"dialogs/device_status.html", NULL },
|
|
|
|
|
|
|
|
{ { "/Dialogs/---", NULL, NULL, 0, "<Separator>" },
|
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Dialogs/Document Index..."), NULL, raise_idea_callback, 0 },
|
|
|
|
"dialogs/document_index.html", NULL },
|
|
|
|
{ { N_("/Dialogs/Error Console..."), NULL, dialogs_error_console_cmd_callback, 0 },
|
|
|
|
"dialogs/error_console.html", NULL },
|
|
|
|
{ { N_("/Dialogs/Display Filters..."), NULL, dialogs_display_filters_cmd_callback, 0 },
|
|
|
|
"dialogs/display_filters/display_filters.html", NULL },
|
|
|
|
|
|
|
|
{ { "/---", NULL, NULL, 0, "<Separator>" },
|
|
|
|
NULL, NULL },
|
|
|
|
|
1999-11-20 20:12:41 +08:00
|
|
|
/* <Image>/Filters */
|
1999-06-22 06:12:07 +08:00
|
|
|
|
1999-12-14 22:10:34 +08:00
|
|
|
{ { N_("/Filters/Repeat Last"), "<alt>F", filters_repeat_cmd_callback, 0x0 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"filters/repeat_last.html", NULL },
|
1999-12-14 22:10:34 +08:00
|
|
|
{ { N_("/Filters/Re-Show Last"), "<alt><shift>F", filters_repeat_cmd_callback, 0x1 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"filters/reshow_last.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/Filters/---", NULL, NULL, 0, "<Separator>" },
|
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Filters/Blur"), NULL, NULL, 0, "<Branch>" },
|
|
|
|
NULL, NULL },
|
|
|
|
|
|
|
|
{ { "/Filters/Colors/---", NULL, NULL, 0, "<Separator>" },
|
|
|
|
NULL, NULL },
|
|
|
|
|
|
|
|
{ { N_("/Filters/Noise"), NULL, NULL, 0, "<Branch>" },
|
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Filters/Edge-Detect"), NULL, NULL, 0, "<Branch>" },
|
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Filters/Enhance"), NULL, NULL, 0, "<Branch>" },
|
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Filters/Generic"), NULL, NULL, 0, "<Branch>" },
|
|
|
|
NULL, NULL },
|
|
|
|
|
|
|
|
{ { "/Filters/---", NULL, NULL, 0, "<Separator>" },
|
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Filters/Glass Effects"), NULL, NULL, 0, "<Branch>" },
|
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Filters/Light Effects"), NULL, NULL, 0, "<Branch>" },
|
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Filters/Distorts"), NULL, NULL, 0, "<Branch>" },
|
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Filters/Artistic"), NULL, NULL, 0, "<Branch>" },
|
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Filters/Map"), NULL, NULL, 0, "<Branch>" },
|
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Filters/Render"), NULL, NULL, 0, "<Branch>" },
|
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Filters/Web"), NULL, NULL, 0, "<Branch>" },
|
|
|
|
NULL, NULL },
|
|
|
|
|
1999-12-02 21:00:18 +08:00
|
|
|
{ { "/Filters/---INSERT", NULL, NULL, 0, "<Separator>" },
|
1999-11-25 19:35:48 +08:00
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Filters/Animation"), NULL, NULL, 0, "<Branch>" },
|
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Filters/Combine"), NULL, NULL, 0, "<Branch>" },
|
1999-10-03 21:50:19 +08:00
|
|
|
NULL, NULL },
|
1999-10-04 16:40:33 +08:00
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
{ { "/Filters/---", NULL, NULL, 0, "<Separator>" },
|
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Filters/Toys"), NULL, NULL, 0, "<Branch>" },
|
|
|
|
NULL, NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
/* <Image>/Script-Fu */
|
|
|
|
|
1998-06-07 21:55:36 +08:00
|
|
|
};
|
1999-10-03 21:50:19 +08:00
|
|
|
static guint n_image_entries = (sizeof (image_entries) /
|
|
|
|
sizeof (image_entries[0]));
|
1998-06-07 21:55:36 +08:00
|
|
|
static GtkItemFactory *image_factory = NULL;
|
1999-10-04 00:54:17 +08:00
|
|
|
|
1999-11-20 20:12:41 +08:00
|
|
|
/***** <Load> *****/
|
|
|
|
|
1999-10-04 00:54:17 +08:00
|
|
|
static GimpItemFactoryEntry load_entries[] =
|
1998-06-07 21:55:36 +08:00
|
|
|
{
|
2000-01-26 01:46:56 +08:00
|
|
|
{ { N_("/Automatic"), NULL, file_open_by_extension_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"open_by_extension.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-10-04 00:54:17 +08:00
|
|
|
{ { "/---", NULL, NULL, 0, "<Separator>" },
|
|
|
|
NULL, NULL }
|
1998-06-07 21:55:36 +08:00
|
|
|
};
|
1999-10-04 00:54:17 +08:00
|
|
|
static guint n_load_entries = (sizeof (load_entries) /
|
|
|
|
sizeof (load_entries[0]));
|
1998-06-07 21:55:36 +08:00
|
|
|
static GtkItemFactory *load_factory = NULL;
|
1998-01-25 10:18:54 +08:00
|
|
|
|
1999-11-20 20:12:41 +08:00
|
|
|
/***** <Save> *****/
|
|
|
|
|
1999-10-04 00:54:17 +08:00
|
|
|
static GimpItemFactoryEntry save_entries[] =
|
1998-06-07 21:55:36 +08:00
|
|
|
{
|
2000-01-26 01:46:56 +08:00
|
|
|
{ { N_("/By Extension"), NULL, file_save_by_extension_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"save_by_extension.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-10-04 00:54:17 +08:00
|
|
|
{ { "/---", NULL, NULL, 0, "<Separator>" },
|
|
|
|
NULL, NULL },
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
1999-10-04 00:54:17 +08:00
|
|
|
static guint n_save_entries = (sizeof (save_entries) /
|
|
|
|
sizeof (save_entries[0]));
|
1998-06-07 21:55:36 +08:00
|
|
|
static GtkItemFactory *save_factory = NULL;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-11-20 20:12:41 +08:00
|
|
|
/***** <Layers> *****/
|
|
|
|
|
1999-10-03 21:50:19 +08:00
|
|
|
static GimpItemFactoryEntry layers_entries[] =
|
|
|
|
{
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/New Layer..."), "<control>N", layers_dialog_new_layer_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"dialogs/new_layer.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
|
|
|
/* <Layers>/Stack */
|
|
|
|
|
1999-12-30 00:53:41 +08:00
|
|
|
{ { N_("/Stack/Raise Layer"), "<control>F", layers_dialog_raise_layer_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"stack/stack.html#raise_layer", NULL },
|
1999-12-30 00:53:41 +08:00
|
|
|
{ { N_("/Stack/Lower Layer"), "<control>B", layers_dialog_lower_layer_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"stack/stack.html#lower_layer", NULL },
|
1999-12-30 00:53:41 +08:00
|
|
|
{ { N_("/Stack/Layer to Top"), "<shift><control>F", layers_dialog_raise_layer_to_top_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"stack/stack.html#later_to_top", NULL },
|
1999-12-30 00:53:41 +08:00
|
|
|
{ { N_("/Stack/Layer to Bottom"), "<shift><control>B", layers_dialog_lower_layer_to_bottom_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"stack/stack.html#layer_to_bottom", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/Duplicate Layer"), "<control>C", layers_dialog_duplicate_layer_callback, 0 },
|
|
|
|
"duplicate_layer.html", NULL },
|
|
|
|
{ { N_("/Anchor Layer"), "<control>H", layers_dialog_anchor_layer_callback, 0 },
|
|
|
|
"anchor_layer.html", NULL },
|
|
|
|
{ { N_("/Delete Layer"), "<control>X", layers_dialog_delete_layer_callback, 0 },
|
|
|
|
"delete_layer.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { "/---", NULL, NULL, 0, "<Separator>" },
|
|
|
|
NULL, NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/Layer Boundary Size..."), "<control>R", layers_dialog_resize_layer_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"dialogs/resize_layer.html", NULL },
|
1999-12-14 22:10:34 +08:00
|
|
|
{ { N_("/Layer to Imagesize"), NULL, layers_dialog_resize_to_image_callback, 0 },
|
1999-12-18 00:37:50 +08:00
|
|
|
"layer_to_image_size.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/Scale Layer..."), "<control>S", layers_dialog_scale_layer_callback, 0 },
|
1999-10-18 05:07:28 +08:00
|
|
|
"dialogs/scale_layer.html", NULL },
|
1999-11-27 22:00:26 +08:00
|
|
|
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { "/---", NULL, NULL, 0, "<Separator>" },
|
|
|
|
NULL, NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/Merge Visible Layers..."), "<control>M", layers_dialog_merge_layers_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"dialogs/merge_visible_layers.html", NULL },
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/Merge Down"), "<control><shift>M", layers_dialog_merge_down_callback, 0 },
|
|
|
|
"merge_down.html", NULL },
|
|
|
|
{ { N_("/Flatten Image"), NULL, layers_dialog_flatten_image_callback, 0 },
|
|
|
|
"flatten_image.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { "/---", NULL, NULL, 0, "<Separator>" },
|
|
|
|
NULL, NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/Add Layer Mask..."), NULL, layers_dialog_add_layer_mask_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"dialogs/add_mask.html", NULL },
|
2000-03-01 07:49:43 +08:00
|
|
|
{ { N_("/Apply Layer Mask"), NULL, layers_dialog_apply_layer_mask_callback, 0 },
|
2000-03-01 07:19:14 +08:00
|
|
|
"apply_mask.html", NULL },
|
2000-03-01 07:49:43 +08:00
|
|
|
{ { N_("/Delete Layer Mask"), NULL, layers_dialog_delete_layer_mask_callback, 0 },
|
2000-03-01 07:19:14 +08:00
|
|
|
"delete_mask.html", NULL },
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/Mask to Selection"), NULL, layers_dialog_mask_select_callback, 0 },
|
|
|
|
"mask_to_selection.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
|
|
|
{ { "/---", NULL, NULL, 0, "<Separator>" },
|
|
|
|
NULL, NULL },
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/Add Alpha Channel"), NULL, layers_dialog_add_alpha_channel_callback, 0 },
|
1999-11-20 20:12:41 +08:00
|
|
|
"add_alpha_channel.html", NULL },
|
|
|
|
{ { N_("/Alpha to Selection"), NULL, layers_dialog_alpha_select_callback, 0 },
|
2000-02-01 06:59:22 +08:00
|
|
|
"alpha_to_selection.html", NULL },
|
|
|
|
|
|
|
|
{ { "/---", NULL, NULL, 0, "<Separator>" },
|
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Edit Layer Attributes..."), NULL, layers_dialog_edit_layer_attributes_callback, 0 },
|
|
|
|
"dialogs/edit_layer_attributes.html", NULL }
|
1999-06-07 01:26:51 +08:00
|
|
|
};
|
1999-10-03 21:50:19 +08:00
|
|
|
static guint n_layers_entries = (sizeof (layers_entries) /
|
|
|
|
sizeof (layers_entries[0]));
|
1999-06-07 01:26:51 +08:00
|
|
|
static GtkItemFactory *layers_factory = NULL;
|
|
|
|
|
1999-11-20 20:12:41 +08:00
|
|
|
/***** <Channels> *****/
|
|
|
|
|
1999-10-03 21:50:19 +08:00
|
|
|
static GimpItemFactoryEntry channels_entries[] =
|
1999-06-07 01:26:51 +08:00
|
|
|
{
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/New Channel..."), "<control>N", channels_dialog_new_channel_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"dialogs/new_channel.html", NULL },
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/Raise Channel"), "<control>F", channels_dialog_raise_channel_callback, 0 },
|
|
|
|
"raise_channel.html", NULL },
|
|
|
|
{ { N_("/Lower Channel"), "<control>B", channels_dialog_lower_channel_callback, 0 },
|
|
|
|
"lower_channel.html", NULL },
|
|
|
|
{ { N_("/Duplicate Channel"), "<control>C", channels_dialog_duplicate_channel_callback, 0 },
|
|
|
|
"duplicate_channel.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { "/---", NULL, NULL, 0, "<Separator>" },
|
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Channel to Selection"), "<control>S", channels_dialog_channel_to_sel_callback, 0 },
|
|
|
|
"channel_to_selection.html", NULL },
|
|
|
|
{ { N_("/Add to Selection"), NULL, channels_dialog_add_channel_to_sel_callback, 0 },
|
|
|
|
"channel_to_selection.html#add", NULL },
|
1999-12-14 22:10:34 +08:00
|
|
|
{ { N_("/Subtract from Selection"), NULL, channels_dialog_sub_channel_from_sel_callback, 0 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"channel_to_selection.html#subtract", NULL },
|
2000-01-12 06:23:37 +08:00
|
|
|
{ { N_("/Intersect with Selection"), NULL, channels_dialog_intersect_channel_with_sel_callback, 0 },
|
1999-10-03 21:50:19 +08:00
|
|
|
"channel_to_selection.html#intersect", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { "/---", NULL, NULL, 0, "<Separator>" },
|
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Delete Channel"), "<control>X", channels_dialog_delete_channel_callback, 0 },
|
2000-02-01 06:59:22 +08:00
|
|
|
"delete_channel.html", NULL },
|
|
|
|
|
|
|
|
{ { "/---", NULL, NULL, 0, "<Separator>" },
|
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Edit Channel Attributes..."), NULL, channels_dialog_edit_channel_attributes_callback, 0 },
|
|
|
|
"dialogs/edit_channel_attributes.html", NULL }
|
1999-06-07 01:26:51 +08:00
|
|
|
};
|
1999-10-03 21:50:19 +08:00
|
|
|
static guint n_channels_entries = (sizeof (channels_entries) /
|
|
|
|
sizeof (channels_entries[0]));
|
1999-06-07 01:26:51 +08:00
|
|
|
static GtkItemFactory *channels_factory = NULL;
|
|
|
|
|
1999-11-20 20:12:41 +08:00
|
|
|
/***** <Paths> *****/
|
|
|
|
|
1999-10-03 21:50:19 +08:00
|
|
|
static GimpItemFactoryEntry paths_entries[] =
|
1999-06-07 01:26:51 +08:00
|
|
|
{
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/New Path"), "<control>N", paths_dialog_new_path_callback, 0 },
|
|
|
|
"new_path.html", NULL },
|
|
|
|
{ { N_("/Duplicate Path"), "<control>U", paths_dialog_dup_path_callback, 0 },
|
|
|
|
"duplicate_path.html", NULL },
|
|
|
|
{ { N_("/Path to Selection"), "<control>S", paths_dialog_path_to_sel_callback, 0 },
|
|
|
|
"path_to_selection.html", NULL },
|
1999-10-30 18:39:48 +08:00
|
|
|
{ { N_("/Selection to Path"), "<control>P", paths_dialog_sel_to_path_callback, 0 },
|
1999-12-18 00:37:50 +08:00
|
|
|
"filters/sel2path.html", NULL },
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { N_("/Stroke Path"), "<control>T", paths_dialog_stroke_path_callback, 0 },
|
|
|
|
"stroke_path.html", NULL },
|
|
|
|
{ { N_("/Delete Path"), "<control>X", paths_dialog_delete_path_callback, 0 },
|
|
|
|
"delete_path.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-10-03 21:50:19 +08:00
|
|
|
{ { "/---", NULL, NULL, 0, "<Separator>" },
|
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Copy Path"), "<control>C", paths_dialog_copy_path_callback, 0 },
|
|
|
|
"copy_path.html", NULL },
|
|
|
|
{ { N_("/Paste Path"), "<control>V", paths_dialog_paste_path_callback, 0 },
|
|
|
|
"paste_path.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/Import Path..."), "<control>I", paths_dialog_import_path_callback, 0 },
|
1999-10-04 16:40:33 +08:00
|
|
|
"dialogs/import_path.html", NULL },
|
1999-11-20 20:12:41 +08:00
|
|
|
{ { N_("/Export Path..."), "<control>E", paths_dialog_export_path_callback, 0 },
|
2000-02-01 06:59:22 +08:00
|
|
|
"dialogs/export_path.html", NULL },
|
|
|
|
|
|
|
|
{ { "/---", NULL, NULL, 0, "<Separator>" },
|
|
|
|
NULL, NULL },
|
|
|
|
{ { N_("/Edit Path Attributes..."), NULL, paths_dialog_edit_path_attributes_callback, 0 },
|
|
|
|
"dialogs/edit_path_attributes.html", NULL }
|
1999-06-07 01:26:51 +08:00
|
|
|
};
|
1999-10-03 21:50:19 +08:00
|
|
|
static guint n_paths_entries = (sizeof (paths_entries) /
|
|
|
|
sizeof (paths_entries[0]));
|
1999-06-07 01:26:51 +08:00
|
|
|
static GtkItemFactory *paths_factory = NULL;
|
|
|
|
|
1999-10-04 00:54:17 +08:00
|
|
|
static gboolean initialize = TRUE;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
void
|
1999-06-07 01:26:51 +08:00
|
|
|
menus_get_toolbox_menubar (GtkWidget **menubar,
|
|
|
|
GtkAccelGroup **accel_group)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
if (initialize)
|
|
|
|
menus_init ();
|
1998-06-07 21:55:36 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
if (menubar)
|
1998-06-07 21:55:36 +08:00
|
|
|
*menubar = toolbox_factory->widget;
|
|
|
|
if (accel_group)
|
|
|
|
*accel_group = toolbox_factory->accel_group;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1999-06-07 01:26:51 +08:00
|
|
|
menus_get_image_menu (GtkWidget **menu,
|
|
|
|
GtkAccelGroup **accel_group)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
if (initialize)
|
|
|
|
menus_init ();
|
|
|
|
|
|
|
|
if (menu)
|
1998-06-07 21:55:36 +08:00
|
|
|
*menu = image_factory->widget;
|
|
|
|
if (accel_group)
|
|
|
|
*accel_group = image_factory->accel_group;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1999-06-07 01:26:51 +08:00
|
|
|
menus_get_load_menu (GtkWidget **menu,
|
|
|
|
GtkAccelGroup **accel_group)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
if (initialize)
|
|
|
|
menus_init ();
|
|
|
|
|
|
|
|
if (menu)
|
1998-06-07 21:55:36 +08:00
|
|
|
*menu = load_factory->widget;
|
|
|
|
if (accel_group)
|
|
|
|
*accel_group = load_factory->accel_group;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1999-06-07 01:26:51 +08:00
|
|
|
menus_get_save_menu (GtkWidget **menu,
|
|
|
|
GtkAccelGroup **accel_group)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
if (initialize)
|
|
|
|
menus_init ();
|
|
|
|
|
|
|
|
if (menu)
|
1998-06-07 21:55:36 +08:00
|
|
|
*menu = save_factory->widget;
|
|
|
|
if (accel_group)
|
|
|
|
*accel_group = save_factory->accel_group;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
1999-06-07 01:26:51 +08:00
|
|
|
void
|
|
|
|
menus_get_layers_menu (GtkWidget **menu,
|
|
|
|
GtkAccelGroup **accel_group)
|
|
|
|
{
|
|
|
|
if (initialize)
|
|
|
|
menus_init ();
|
|
|
|
|
|
|
|
if (menu)
|
|
|
|
*menu = layers_factory->widget;
|
|
|
|
if (accel_group)
|
|
|
|
*accel_group = layers_factory->accel_group;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
menus_get_channels_menu (GtkWidget **menu,
|
|
|
|
GtkAccelGroup **accel_group)
|
|
|
|
{
|
|
|
|
if (initialize)
|
|
|
|
menus_init ();
|
|
|
|
|
|
|
|
if (menu)
|
|
|
|
*menu = channels_factory->widget;
|
|
|
|
if (accel_group)
|
|
|
|
*accel_group = channels_factory->accel_group;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
menus_get_paths_menu (GtkWidget **menu,
|
|
|
|
GtkAccelGroup **accel_group)
|
|
|
|
{
|
|
|
|
if (initialize)
|
|
|
|
menus_init ();
|
|
|
|
|
|
|
|
if (menu)
|
|
|
|
*menu = paths_factory->widget;
|
|
|
|
if (accel_group)
|
|
|
|
*accel_group = paths_factory->accel_group;
|
|
|
|
}
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
void
|
1999-10-04 00:54:17 +08:00
|
|
|
menus_create_item_from_full_path (GimpItemFactoryEntry *entry,
|
2000-02-24 04:25:24 +08:00
|
|
|
gchar *domain_name,
|
1999-10-04 00:54:17 +08:00
|
|
|
gpointer callback_data)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
1999-11-25 19:35:48 +08:00
|
|
|
GtkItemFactory *item_factory;
|
1999-10-04 00:54:17 +08:00
|
|
|
gchar *path;
|
1999-02-25 16:24:51 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
if (initialize)
|
|
|
|
menus_init ();
|
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
path = entry->entry.path;
|
|
|
|
item_factory = gtk_item_factory_from_path (path);
|
1999-02-25 16:24:51 +08:00
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
if (!item_factory)
|
1999-10-04 00:54:17 +08:00
|
|
|
{
|
1999-11-25 19:35:48 +08:00
|
|
|
g_warning ("entry refers to unknown item factory: \"%s\"", path);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2000-02-24 04:25:24 +08:00
|
|
|
gtk_object_set_data (GTK_OBJECT (item_factory), "textdomain", domain_name);
|
|
|
|
|
2000-03-09 04:57:49 +08:00
|
|
|
while (*path != '>')
|
|
|
|
path++;
|
|
|
|
path++;
|
1999-11-24 03:11:29 +08:00
|
|
|
|
2000-03-09 04:57:49 +08:00
|
|
|
entry->entry.path = path;
|
1999-11-25 19:35:48 +08:00
|
|
|
|
2000-03-09 04:57:49 +08:00
|
|
|
menus_create_item (item_factory, entry, callback_data, 2);
|
|
|
|
}
|
1999-11-25 19:35:48 +08:00
|
|
|
|
2000-03-09 04:57:49 +08:00
|
|
|
static void
|
|
|
|
menus_create_branches (GtkItemFactory *item_factory,
|
|
|
|
GimpItemFactoryEntry *entry)
|
|
|
|
{
|
|
|
|
GString *tearoff_path;
|
|
|
|
gint factory_length;
|
|
|
|
gchar *p;
|
|
|
|
gchar *path = entry->entry.path;
|
1999-11-25 19:35:48 +08:00
|
|
|
|
2000-03-09 04:57:49 +08:00
|
|
|
tearoff_path = g_string_new ("");
|
1999-11-24 03:11:29 +08:00
|
|
|
|
2000-03-09 04:57:49 +08:00
|
|
|
p = strchr (path, '/');
|
|
|
|
factory_length = p - path;
|
1999-10-04 00:54:17 +08:00
|
|
|
|
2000-03-09 04:57:49 +08:00
|
|
|
/* skip the first slash */
|
|
|
|
if (p)
|
|
|
|
p = strchr (p + 1, '/');
|
1999-10-04 00:54:17 +08:00
|
|
|
|
2000-03-09 04:57:49 +08:00
|
|
|
while (p)
|
|
|
|
{
|
|
|
|
g_string_assign (tearoff_path, path + factory_length);
|
|
|
|
g_string_truncate (tearoff_path, p - path - factory_length);
|
1999-10-04 00:54:17 +08:00
|
|
|
|
2000-03-09 04:57:49 +08:00
|
|
|
if (!gtk_item_factory_get_widget (item_factory, tearoff_path->str))
|
|
|
|
{
|
|
|
|
GimpItemFactoryEntry tearoff_entry = {
|
|
|
|
{NULL, NULL, tearoff_cmd_callback, 0, "<Tearoff>"}
|
|
|
|
,
|
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
GimpItemFactoryEntry branch_entry = {
|
|
|
|
{NULL, NULL, NULL, 0, "<Branch>"}
|
|
|
|
,
|
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
branch_entry.entry.path = tearoff_path->str;
|
|
|
|
gtk_object_set_data (GTK_OBJECT (item_factory), "complete", path);
|
|
|
|
menus_create_item (item_factory, &branch_entry, NULL, 2);
|
|
|
|
gtk_object_remove_data (GTK_OBJECT (item_factory), "complete");
|
|
|
|
|
|
|
|
g_string_append (tearoff_path, "/tearoff1");
|
|
|
|
tearoff_entry.entry.path = tearoff_path->str;
|
|
|
|
menus_create_item (item_factory, &tearoff_entry, NULL, 2);
|
|
|
|
}
|
1999-10-04 00:54:17 +08:00
|
|
|
|
2000-03-09 04:57:49 +08:00
|
|
|
p = strchr (p + 1, '/');
|
|
|
|
}
|
1999-10-04 00:54:17 +08:00
|
|
|
|
2000-03-09 04:57:49 +08:00
|
|
|
g_string_free (tearoff_path, TRUE);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
1999-11-22 20:02:46 +08:00
|
|
|
static void
|
|
|
|
menus_filters_subdirs_to_top (GtkMenu *menu)
|
|
|
|
{
|
|
|
|
GtkMenuItem *menu_item;
|
|
|
|
GList *list;
|
1999-11-25 19:35:48 +08:00
|
|
|
gboolean submenus_passed = FALSE;
|
|
|
|
gboolean separator_found = FALSE;
|
1999-11-22 20:02:46 +08:00
|
|
|
gint pos;
|
2000-03-09 04:57:49 +08:00
|
|
|
gint items;
|
1999-11-22 20:02:46 +08:00
|
|
|
|
|
|
|
pos = 1;
|
2000-03-09 04:57:49 +08:00
|
|
|
items = 0;
|
1999-11-22 20:02:46 +08:00
|
|
|
|
|
|
|
for (list = GTK_MENU_SHELL (menu)->children; list; list = g_list_next (list))
|
|
|
|
{
|
|
|
|
menu_item = GTK_MENU_ITEM (list->data);
|
2000-03-09 04:57:49 +08:00
|
|
|
items++;
|
|
|
|
|
1999-11-22 20:02:46 +08:00
|
|
|
if (menu_item->submenu)
|
|
|
|
{
|
1999-11-25 19:35:48 +08:00
|
|
|
if (submenus_passed)
|
|
|
|
{
|
|
|
|
menus_filters_subdirs_to_top (GTK_MENU (menu_item->submenu));
|
2000-03-09 04:57:49 +08:00
|
|
|
gtk_menu_reorder_child (menu, GTK_WIDGET (menu_item), pos++);
|
1999-11-25 19:35:48 +08:00
|
|
|
}
|
1999-11-22 20:02:46 +08:00
|
|
|
}
|
1999-11-25 19:35:48 +08:00
|
|
|
else
|
|
|
|
{
|
|
|
|
submenus_passed = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! GTK_BIN (menu_item)->child &&
|
|
|
|
menu_item != GTK_MENU_SHELL (menu)->children->data)
|
|
|
|
separator_found = TRUE;
|
1999-11-22 20:02:46 +08:00
|
|
|
}
|
|
|
|
|
2000-03-09 04:57:49 +08:00
|
|
|
if (pos > 1 && !separator_found && items > pos)
|
1999-11-22 20:02:46 +08:00
|
|
|
{
|
|
|
|
GtkWidget *separator;
|
|
|
|
|
|
|
|
separator = gtk_menu_item_new ();
|
|
|
|
gtk_menu_insert (menu, separator, pos);
|
|
|
|
gtk_widget_show (separator);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-06-22 04:17:21 +08:00
|
|
|
void
|
1999-11-20 20:12:41 +08:00
|
|
|
menus_reorder_plugins (void)
|
|
|
|
{
|
1999-11-24 05:02:54 +08:00
|
|
|
static gchar *rotate_plugins[] = { "90 degrees",
|
|
|
|
"180 degrees",
|
|
|
|
"270 degrees" };
|
|
|
|
static gint n_rotate_plugins = (sizeof (rotate_plugins) /
|
|
|
|
sizeof (rotate_plugins[0]));
|
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
static gchar *image_file_entries[] = { "---moved",
|
|
|
|
"Close",
|
|
|
|
"Quit" };
|
|
|
|
static gint n_image_file_entries = (sizeof (image_file_entries) /
|
|
|
|
sizeof (image_file_entries[0]));
|
|
|
|
|
1999-11-26 18:17:19 +08:00
|
|
|
static gchar *reorder_submenus[] = { "<Image>/Video" };
|
|
|
|
static gint n_reorder_submenus = (sizeof (reorder_submenus) /
|
|
|
|
sizeof (reorder_submenus[0]));
|
|
|
|
|
1999-12-02 21:00:18 +08:00
|
|
|
static gchar *reorder_subsubmenus[] = { "<Image>/Filters",
|
|
|
|
"<Toolbox>/Xtns" };
|
|
|
|
static gint n_reorder_subsubmenus = (sizeof (reorder_subsubmenus) /
|
|
|
|
sizeof (reorder_subsubmenus[0]));
|
|
|
|
|
1999-11-26 18:17:19 +08:00
|
|
|
GtkItemFactory *item_factory;
|
1999-11-20 20:12:41 +08:00
|
|
|
GtkWidget *menu_item;
|
1999-11-26 18:17:19 +08:00
|
|
|
GtkWidget *menu;
|
1999-11-22 20:02:46 +08:00
|
|
|
GList *list;
|
1999-11-24 05:02:54 +08:00
|
|
|
gchar *path;
|
2000-02-12 23:01:33 +08:00
|
|
|
gint i, pos;
|
1999-11-20 20:12:41 +08:00
|
|
|
|
2000-02-12 23:01:33 +08:00
|
|
|
/* Move all menu items under "<Toolbox>/Xtns" which are not submenus or
|
|
|
|
* separators to the top of the menu
|
|
|
|
*/
|
|
|
|
pos = 1;
|
|
|
|
menu_item = gtk_item_factory_get_widget (toolbox_factory,
|
|
|
|
"/Xtns/Module Browser...");
|
|
|
|
if (menu_item && menu_item->parent && GTK_IS_MENU (menu_item->parent))
|
1999-11-20 20:12:41 +08:00
|
|
|
{
|
2000-02-12 23:01:33 +08:00
|
|
|
menu = menu_item->parent;
|
1999-11-25 19:35:48 +08:00
|
|
|
|
2000-02-12 23:01:33 +08:00
|
|
|
for (list = g_list_nth (GTK_MENU_SHELL (menu)->children, pos); list;
|
|
|
|
list = g_list_next (list))
|
1999-11-20 20:12:41 +08:00
|
|
|
{
|
2000-02-12 23:01:33 +08:00
|
|
|
menu_item = GTK_WIDGET (list->data);
|
|
|
|
|
|
|
|
if (! GTK_MENU_ITEM (menu_item)->submenu &&
|
|
|
|
GTK_IS_LABEL (GTK_BIN (menu_item)->child))
|
|
|
|
{
|
|
|
|
gtk_menu_reorder_child (GTK_MENU (menu_item->parent),
|
|
|
|
menu_item, pos);
|
|
|
|
list = g_list_nth (GTK_MENU_SHELL (menu)->children, pos);
|
|
|
|
pos++;
|
|
|
|
}
|
1999-11-20 20:12:41 +08:00
|
|
|
}
|
|
|
|
}
|
1999-11-20 23:10:26 +08:00
|
|
|
|
1999-12-04 21:08:45 +08:00
|
|
|
/* Move "<Image>/Filters/Filter all Layers..." before the separator */
|
1999-11-20 23:10:26 +08:00
|
|
|
menu_item = gtk_item_factory_get_widget (image_factory,
|
|
|
|
"/Filters/Filter all Layers...");
|
|
|
|
if (menu_item && menu_item->parent)
|
|
|
|
gtk_menu_reorder_child (GTK_MENU (menu_item->parent), menu_item, 3);
|
1999-11-22 20:02:46 +08:00
|
|
|
|
1999-11-24 05:02:54 +08:00
|
|
|
/* Reorder Rotate plugin menu entries */
|
|
|
|
pos = 2;
|
|
|
|
for (i = 0; i < n_rotate_plugins; i++)
|
|
|
|
{
|
|
|
|
path = g_strconcat ("/Image/Transforms/Rotate/", rotate_plugins[i], NULL);
|
|
|
|
menu_item = gtk_item_factory_get_widget (image_factory, path);
|
1999-11-25 19:35:48 +08:00
|
|
|
g_free (path);
|
|
|
|
|
1999-11-24 05:02:54 +08:00
|
|
|
if (menu_item && menu_item->parent)
|
|
|
|
{
|
|
|
|
gtk_menu_reorder_child (GTK_MENU (menu_item->parent), menu_item, pos);
|
|
|
|
pos++;
|
|
|
|
}
|
|
|
|
}
|
1999-11-25 19:35:48 +08:00
|
|
|
|
1999-11-24 05:02:54 +08:00
|
|
|
pos = 2;
|
|
|
|
for (i = 0; i < n_rotate_plugins; i++)
|
|
|
|
{
|
|
|
|
path = g_strconcat ("/Layers/Rotate/", rotate_plugins[i], NULL);
|
|
|
|
menu_item = gtk_item_factory_get_widget (image_factory, path);
|
1999-11-25 19:35:48 +08:00
|
|
|
g_free (path);
|
|
|
|
|
1999-11-24 05:02:54 +08:00
|
|
|
if (menu_item && menu_item->parent)
|
|
|
|
{
|
|
|
|
gtk_menu_reorder_child (GTK_MENU (menu_item->parent), menu_item, pos);
|
|
|
|
pos++;
|
|
|
|
}
|
1999-11-25 19:35:48 +08:00
|
|
|
}
|
|
|
|
|
1999-12-04 21:08:45 +08:00
|
|
|
/* Reorder "<Image>/File" */
|
1999-11-25 19:35:48 +08:00
|
|
|
for (i = 0; i < n_image_file_entries; i++)
|
|
|
|
{
|
|
|
|
path = g_strconcat ("/File/", image_file_entries[i], NULL);
|
|
|
|
menu_item = gtk_item_factory_get_widget (image_factory, path);
|
1999-11-24 05:02:54 +08:00
|
|
|
g_free (path);
|
1999-11-25 19:35:48 +08:00
|
|
|
|
|
|
|
if (menu_item && menu_item->parent)
|
|
|
|
gtk_menu_reorder_child (GTK_MENU (menu_item->parent), menu_item, -1);
|
|
|
|
}
|
|
|
|
|
1999-11-26 18:17:19 +08:00
|
|
|
/* Reorder menus where plugins registered submenus */
|
|
|
|
for (i = 0; i < n_reorder_submenus; i++)
|
1999-11-25 19:35:48 +08:00
|
|
|
{
|
1999-11-26 18:17:19 +08:00
|
|
|
item_factory = gtk_item_factory_from_path (reorder_submenus[i]);
|
|
|
|
menu = gtk_item_factory_get_widget (item_factory,
|
|
|
|
reorder_submenus[i]);
|
1999-11-25 19:35:48 +08:00
|
|
|
|
1999-11-26 18:17:19 +08:00
|
|
|
if (menu && GTK_IS_MENU (menu))
|
|
|
|
{
|
|
|
|
menus_filters_subdirs_to_top (GTK_MENU (menu));
|
|
|
|
}
|
1999-11-25 19:35:48 +08:00
|
|
|
}
|
|
|
|
|
1999-12-02 21:00:18 +08:00
|
|
|
for (i = 0; i < n_reorder_subsubmenus; i++)
|
1999-11-25 19:35:48 +08:00
|
|
|
{
|
1999-12-02 21:00:18 +08:00
|
|
|
item_factory = gtk_item_factory_from_path (reorder_subsubmenus[i]);
|
1999-11-26 18:17:19 +08:00
|
|
|
menu = gtk_item_factory_get_widget (item_factory,
|
1999-12-02 21:00:18 +08:00
|
|
|
reorder_subsubmenus[i]);
|
1999-11-25 19:35:48 +08:00
|
|
|
|
1999-11-26 18:17:19 +08:00
|
|
|
if (menu && GTK_IS_MENU (menu))
|
|
|
|
{
|
|
|
|
for (list = GTK_MENU_SHELL (menu)->children; list;
|
|
|
|
list = g_list_next (list))
|
|
|
|
{
|
|
|
|
GtkMenuItem *menu_item;
|
|
|
|
|
|
|
|
menu_item = GTK_MENU_ITEM (list->data);
|
|
|
|
|
|
|
|
if (menu_item->submenu)
|
|
|
|
menus_filters_subdirs_to_top (GTK_MENU (menu_item->submenu));
|
|
|
|
}
|
|
|
|
}
|
1999-11-24 05:02:54 +08:00
|
|
|
}
|
1999-12-02 21:00:18 +08:00
|
|
|
|
1999-12-04 21:08:45 +08:00
|
|
|
/* Move all submenus which registered after "<Image>/Filters/Toys"
|
|
|
|
* before the separator after "<Image>/Filters/Web"
|
|
|
|
*/
|
1999-12-02 21:00:18 +08:00
|
|
|
menu_item = gtk_item_factory_get_widget (image_factory,
|
|
|
|
"/Filters/---INSERT");
|
|
|
|
|
|
|
|
if (menu_item && menu_item->parent && GTK_IS_MENU (menu_item->parent))
|
|
|
|
{
|
|
|
|
menu = menu_item->parent;
|
|
|
|
pos = g_list_index (GTK_MENU_SHELL (menu)->children, menu_item);
|
|
|
|
|
1999-12-04 21:08:45 +08:00
|
|
|
menu_item = gtk_item_factory_get_widget (image_factory,
|
|
|
|
"/Filters/Toys");
|
|
|
|
|
|
|
|
if (menu_item && GTK_IS_MENU (menu_item))
|
1999-12-02 21:00:18 +08:00
|
|
|
{
|
|
|
|
GList *list;
|
1999-12-04 21:08:45 +08:00
|
|
|
gint index = 1;
|
|
|
|
|
|
|
|
for (list = GTK_MENU_SHELL (menu)->children; list;
|
|
|
|
list = g_list_next (list))
|
|
|
|
{
|
|
|
|
if (GTK_MENU_ITEM (list->data)->submenu == menu_item)
|
|
|
|
break;
|
1999-12-02 21:00:18 +08:00
|
|
|
|
1999-12-04 21:08:45 +08:00
|
|
|
index++;
|
|
|
|
}
|
1999-12-02 21:00:18 +08:00
|
|
|
|
1999-12-04 21:08:45 +08:00
|
|
|
while ((menu_item = g_list_nth_data (GTK_MENU_SHELL (menu)->children,
|
|
|
|
index)))
|
1999-12-02 21:00:18 +08:00
|
|
|
{
|
1999-12-04 21:08:45 +08:00
|
|
|
gtk_menu_reorder_child (GTK_MENU (menu), menu_item, pos);
|
|
|
|
|
|
|
|
pos++;
|
|
|
|
index++;
|
1999-12-02 21:00:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-11-20 20:12:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1998-06-22 04:17:21 +08:00
|
|
|
menus_tools_create (ToolInfo *tool_info)
|
|
|
|
{
|
1999-10-03 21:50:19 +08:00
|
|
|
GimpItemFactoryEntry entry;
|
|
|
|
|
1999-10-28 23:05:49 +08:00
|
|
|
entry.entry.path = tool_info->menu_path;
|
|
|
|
entry.entry.accelerator = tool_info->menu_accel;
|
|
|
|
entry.entry.callback = tools_select_cmd_callback;
|
1999-10-03 21:50:19 +08:00
|
|
|
entry.entry.callback_action = tool_info->tool_id;
|
1999-10-28 23:05:49 +08:00
|
|
|
entry.entry.item_type = NULL;
|
|
|
|
entry.help_page = tool_info->private_tip;
|
|
|
|
entry.description = NULL;
|
1999-10-03 21:50:19 +08:00
|
|
|
|
1999-11-20 20:12:41 +08:00
|
|
|
menus_create_item (image_factory, &entry, (gpointer) tool_info, 2);
|
1998-06-22 04:17:21 +08:00
|
|
|
}
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
void
|
1999-10-04 00:54:17 +08:00
|
|
|
menus_set_sensitive (gchar *path,
|
|
|
|
gboolean sensitive)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
1998-06-07 21:55:36 +08:00
|
|
|
GtkItemFactory *ifactory;
|
|
|
|
GtkWidget *widget = NULL;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
if (initialize)
|
|
|
|
menus_init ();
|
|
|
|
|
1998-06-07 21:55:36 +08:00
|
|
|
ifactory = gtk_item_factory_from_path (path);
|
|
|
|
|
|
|
|
if (ifactory)
|
|
|
|
{
|
|
|
|
widget = gtk_item_factory_get_widget (ifactory, path);
|
1999-06-22 06:12:07 +08:00
|
|
|
|
1999-11-24 03:11:29 +08:00
|
|
|
if (widget)
|
|
|
|
gtk_widget_set_sensitive (widget, sensitive);
|
1998-06-07 21:55:36 +08:00
|
|
|
}
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1998-06-07 21:55:36 +08:00
|
|
|
if (!ifactory || !widget)
|
1999-10-04 00:54:17 +08:00
|
|
|
g_warning ("Unable to set sensitivity for menu which doesn't exist:\n%s",
|
|
|
|
path);
|
1999-06-22 06:12:07 +08:00
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-06-07 05:58:48 +08:00
|
|
|
void
|
1999-10-04 00:54:17 +08:00
|
|
|
menus_set_state (gchar *path,
|
|
|
|
gboolean state)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
1998-06-07 21:55:36 +08:00
|
|
|
GtkItemFactory *ifactory;
|
|
|
|
GtkWidget *widget = NULL;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
if (initialize)
|
|
|
|
menus_init ();
|
|
|
|
|
1998-06-07 21:55:36 +08:00
|
|
|
ifactory = gtk_item_factory_from_path (path);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1998-06-07 21:55:36 +08:00
|
|
|
if (ifactory)
|
|
|
|
{
|
|
|
|
widget = gtk_item_factory_get_widget (ifactory, path);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1998-06-07 21:55:36 +08:00
|
|
|
if (widget && GTK_IS_CHECK_MENU_ITEM (widget))
|
1999-01-21 09:05:24 +08:00
|
|
|
gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (widget), state);
|
1998-06-07 21:55:36 +08:00
|
|
|
else
|
|
|
|
widget = NULL;
|
|
|
|
}
|
1999-11-24 03:11:29 +08:00
|
|
|
|
1998-06-07 21:55:36 +08:00
|
|
|
if (!ifactory || !widget)
|
1999-10-04 00:54:17 +08:00
|
|
|
g_warning ("Unable to set state for menu which doesn't exist:\n%s\n",
|
|
|
|
path);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1999-10-04 00:54:17 +08:00
|
|
|
menus_destroy (gchar *path)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
if (initialize)
|
|
|
|
menus_init ();
|
|
|
|
|
1998-06-07 21:55:36 +08:00
|
|
|
gtk_item_factories_path_delete (NULL, path);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1999-06-05 10:11:16 +08:00
|
|
|
menus_quit (void)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
1998-06-07 21:55:36 +08:00
|
|
|
gchar *filename;
|
|
|
|
|
1999-03-07 20:56:03 +08:00
|
|
|
filename = gimp_personal_rc_file ("menurc");
|
1998-06-07 21:55:36 +08:00
|
|
|
gtk_item_factory_dump_rc (filename, NULL, TRUE);
|
|
|
|
g_free (filename);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1998-02-04 06:56:55 +08:00
|
|
|
if (!initialize)
|
|
|
|
{
|
1998-06-09 08:50:32 +08:00
|
|
|
gtk_object_unref (GTK_OBJECT (toolbox_factory));
|
|
|
|
gtk_object_unref (GTK_OBJECT (image_factory));
|
|
|
|
gtk_object_unref (GTK_OBJECT (load_factory));
|
|
|
|
gtk_object_unref (GTK_OBJECT (save_factory));
|
1999-06-07 01:26:51 +08:00
|
|
|
gtk_object_unref (GTK_OBJECT (layers_factory));
|
|
|
|
gtk_object_unref (GTK_OBJECT (channels_factory));
|
|
|
|
gtk_object_unref (GTK_OBJECT (paths_factory));
|
1998-02-04 06:56:55 +08:00
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
1999-11-20 20:12:41 +08:00
|
|
|
static void
|
1999-06-22 04:04:04 +08:00
|
|
|
menus_last_opened_cmd_callback (GtkWidget *widget,
|
|
|
|
gpointer callback_data,
|
|
|
|
guint num)
|
1998-07-12 13:18:17 +08:00
|
|
|
{
|
|
|
|
gchar *filename, *raw_filename;
|
1999-07-15 00:02:32 +08:00
|
|
|
guint num_entries;
|
2000-01-26 01:46:56 +08:00
|
|
|
gint status;
|
1999-07-15 00:02:32 +08:00
|
|
|
|
|
|
|
num_entries = g_slist_length (last_opened_raw_filenames);
|
|
|
|
if (num >= num_entries)
|
|
|
|
return;
|
1998-07-12 13:18:17 +08:00
|
|
|
|
2000-01-26 01:46:56 +08:00
|
|
|
raw_filename =
|
|
|
|
((GString *) g_slist_nth_data (last_opened_raw_filenames, num))->str;
|
1999-02-07 18:45:56 +08:00
|
|
|
filename = g_basename (raw_filename);
|
1998-07-12 13:18:17 +08:00
|
|
|
|
2000-01-26 01:46:56 +08:00
|
|
|
status = file_open (raw_filename, raw_filename);
|
|
|
|
|
|
|
|
if (status != PDB_SUCCESS &&
|
|
|
|
status != PDB_CANCEL)
|
|
|
|
{
|
|
|
|
g_message (_("Error opening file: %s\n"), raw_filename);
|
|
|
|
}
|
1998-07-12 13:18:17 +08:00
|
|
|
}
|
|
|
|
|
1999-11-20 20:12:41 +08:00
|
|
|
static void
|
1999-06-05 10:11:16 +08:00
|
|
|
menus_last_opened_update_labels (void)
|
1998-07-12 13:18:17 +08:00
|
|
|
{
|
1999-06-22 06:12:07 +08:00
|
|
|
GSList *filename_slist;
|
|
|
|
GString *entry_filename, *path;
|
|
|
|
GtkWidget *widget;
|
|
|
|
gint i;
|
|
|
|
guint num_entries;
|
1998-07-12 13:18:17 +08:00
|
|
|
|
|
|
|
entry_filename = g_string_new ("");
|
|
|
|
path = g_string_new ("");
|
|
|
|
|
|
|
|
filename_slist = last_opened_raw_filenames;
|
1998-07-14 06:31:45 +08:00
|
|
|
num_entries = g_slist_length (last_opened_raw_filenames);
|
1998-07-12 13:18:17 +08:00
|
|
|
|
|
|
|
for (i = 1; i <= num_entries; i++)
|
|
|
|
{
|
1999-10-03 21:50:19 +08:00
|
|
|
g_string_sprintf (entry_filename, "%d. %s", i,
|
|
|
|
g_basename (((GString *) filename_slist->data)->str));
|
1998-07-12 13:18:17 +08:00
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
g_string_sprintf (path, "/File/MRU%02d", i);
|
1998-07-12 13:18:17 +08:00
|
|
|
|
|
|
|
widget = gtk_item_factory_get_widget (toolbox_factory, path->str);
|
1999-12-02 21:00:18 +08:00
|
|
|
if (widget)
|
|
|
|
{
|
|
|
|
gtk_widget_show (widget);
|
1998-07-12 13:18:17 +08:00
|
|
|
|
1999-12-02 21:00:18 +08:00
|
|
|
gtk_label_set (GTK_LABEL (GTK_BIN (widget)->child),
|
|
|
|
entry_filename->str);
|
|
|
|
}
|
1998-07-12 13:18:17 +08:00
|
|
|
filename_slist = filename_slist->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_string_free (entry_filename, TRUE);
|
|
|
|
g_string_free (path, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
menus_last_opened_add (gchar *filename)
|
|
|
|
{
|
1999-06-22 06:12:07 +08:00
|
|
|
GString *raw_filename;
|
1999-11-25 19:35:48 +08:00
|
|
|
GSList *list;
|
1999-12-02 21:00:18 +08:00
|
|
|
GtkWidget *menu_item;
|
1999-06-22 06:12:07 +08:00
|
|
|
guint num_entries;
|
1998-07-14 06:31:45 +08:00
|
|
|
|
1999-04-21 07:36:59 +08:00
|
|
|
/* ignore the add if we've already got the filename on the list */
|
1999-11-25 19:35:48 +08:00
|
|
|
for (list = last_opened_raw_filenames; list; list = g_slist_next (list))
|
1999-06-22 06:12:07 +08:00
|
|
|
{
|
1999-11-25 19:35:48 +08:00
|
|
|
raw_filename = list->data;
|
|
|
|
|
1999-04-21 07:36:59 +08:00
|
|
|
if (!strcmp (raw_filename->str, filename))
|
1999-06-22 06:12:07 +08:00
|
|
|
return;
|
|
|
|
}
|
1999-04-21 07:36:59 +08:00
|
|
|
|
1998-07-14 06:31:45 +08:00
|
|
|
num_entries = g_slist_length (last_opened_raw_filenames);
|
1998-07-12 13:18:17 +08:00
|
|
|
|
|
|
|
if (num_entries == last_opened_size)
|
|
|
|
{
|
1998-07-14 06:31:45 +08:00
|
|
|
g_slist_remove_link (last_opened_raw_filenames,
|
|
|
|
g_slist_last (last_opened_raw_filenames));
|
1998-07-12 13:18:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
raw_filename = g_string_new (filename);
|
1999-10-03 21:50:19 +08:00
|
|
|
last_opened_raw_filenames = g_slist_prepend (last_opened_raw_filenames,
|
|
|
|
raw_filename);
|
1998-07-12 13:18:17 +08:00
|
|
|
|
|
|
|
if (num_entries == 0)
|
|
|
|
{
|
1999-12-02 21:00:18 +08:00
|
|
|
menu_item = gtk_item_factory_get_widget (toolbox_factory, "/File/---MRU");
|
|
|
|
gtk_widget_show (menu_item);
|
1998-07-12 13:18:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
menus_last_opened_update_labels ();
|
|
|
|
}
|
|
|
|
|
1999-11-20 20:12:41 +08:00
|
|
|
static void
|
1999-01-27 14:30:37 +08:00
|
|
|
menus_init_mru (void)
|
1998-07-12 13:18:17 +08:00
|
|
|
{
|
1999-12-02 21:00:18 +08:00
|
|
|
GimpItemFactoryEntry *last_opened_entries;
|
|
|
|
GtkWidget *menu_item;
|
|
|
|
gchar *paths;
|
|
|
|
gchar *accelerators;
|
|
|
|
gint i;
|
1998-07-12 13:18:17 +08:00
|
|
|
|
1999-10-04 00:54:17 +08:00
|
|
|
last_opened_entries = g_new (GimpItemFactoryEntry, last_opened_size);
|
1998-07-12 13:18:17 +08:00
|
|
|
|
|
|
|
paths = g_new (gchar, last_opened_size * MRU_MENU_ENTRY_SIZE);
|
|
|
|
accelerators = g_new (gchar, 9 * MRU_MENU_ACCEL_SIZE);
|
|
|
|
|
|
|
|
for (i = 0; i < last_opened_size; i++)
|
|
|
|
{
|
|
|
|
gchar *path, *accelerator;
|
1999-10-04 00:54:17 +08:00
|
|
|
|
1998-07-12 13:18:17 +08:00
|
|
|
path = &paths[i * MRU_MENU_ENTRY_SIZE];
|
|
|
|
if (i < 9)
|
|
|
|
accelerator = &accelerators[i * MRU_MENU_ACCEL_SIZE];
|
|
|
|
else
|
|
|
|
accelerator = NULL;
|
|
|
|
|
1999-10-04 00:54:17 +08:00
|
|
|
last_opened_entries[i].entry.path = path;
|
|
|
|
last_opened_entries[i].entry.accelerator = accelerator;
|
|
|
|
last_opened_entries[i].entry.callback =
|
|
|
|
(GtkItemFactoryCallback) menus_last_opened_cmd_callback;
|
|
|
|
last_opened_entries[i].entry.callback_action = i;
|
|
|
|
last_opened_entries[i].entry.item_type = NULL;
|
|
|
|
last_opened_entries[i].help_page = "file/last_opened.html";
|
|
|
|
last_opened_entries[i].description = NULL;
|
1998-07-12 13:18:17 +08:00
|
|
|
|
1999-11-25 19:35:48 +08:00
|
|
|
g_snprintf (path, MRU_MENU_ENTRY_SIZE, "/File/MRU%02d", i + 1);
|
1999-01-31 08:57:45 +08:00
|
|
|
if (accelerator != NULL)
|
|
|
|
g_snprintf (accelerator, MRU_MENU_ACCEL_SIZE, "<control>%d", i + 1);
|
1998-07-12 13:18:17 +08:00
|
|
|
}
|
|
|
|
|
1999-10-04 00:54:17 +08:00
|
|
|
menus_create_items (toolbox_factory, last_opened_size,
|
|
|
|
last_opened_entries, NULL, 2);
|
Lots of ii8n stuff here and some additions to the de.po. Applied
Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>
* app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
Lots of ii8n stuff here and some additions to the de.po.
Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
gimp-egger-981007-1, gimp-egger-981008-1,
gimp-egger-981009-1.patch, gimp-egger-981010-1.patch
* plug-in/guillotine/guillotine.c: added the coordinates
of the split images from the original image to the title.
ie foo.jpg (0,0) for the image in the topleft.
* plug-in/script-fu/scripts/neon-logo.scm,
perspective-shadow.scm, predator.scm,rendermap.scm,
ripply-anim.scm, select_to_image.scm,swirltile.scm,
xach-effect.scm: updated scripts to use new script-fu stuff
wooo boy! a big un!
in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.
-adrian
1998-10-15 07:23:52 +08:00
|
|
|
|
1998-07-12 13:18:17 +08:00
|
|
|
for (i=0; i < last_opened_size; i++)
|
|
|
|
{
|
1999-12-02 21:00:18 +08:00
|
|
|
menu_item =
|
|
|
|
gtk_item_factory_get_widget (toolbox_factory,
|
|
|
|
last_opened_entries[i].entry.path);
|
|
|
|
gtk_widget_hide (menu_item);
|
1998-07-12 13:18:17 +08:00
|
|
|
}
|
|
|
|
|
1999-12-02 21:00:18 +08:00
|
|
|
menu_item = gtk_item_factory_get_widget (toolbox_factory, "/File/---MRU");
|
|
|
|
if (menu_item && menu_item->parent)
|
|
|
|
gtk_menu_reorder_child (GTK_MENU (menu_item->parent), menu_item, -1);
|
|
|
|
gtk_widget_hide (menu_item);
|
|
|
|
|
|
|
|
menu_item = gtk_item_factory_get_widget (toolbox_factory, "/File/Quit");
|
|
|
|
if (menu_item && menu_item->parent)
|
|
|
|
gtk_menu_reorder_child (GTK_MENU (menu_item->parent), menu_item, -1);
|
1999-10-04 00:54:17 +08:00
|
|
|
|
1998-07-12 13:18:17 +08:00
|
|
|
g_free (paths);
|
|
|
|
g_free (accelerators);
|
|
|
|
g_free (last_opened_entries);
|
|
|
|
}
|
|
|
|
|
1999-10-03 21:50:19 +08:00
|
|
|
/* This function gets called while browsing a menu created
|
|
|
|
* by a GtkItemFactory
|
|
|
|
*/
|
|
|
|
static gint
|
|
|
|
menus_item_key_press (GtkWidget *widget,
|
|
|
|
GdkEventKey *kevent,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GtkItemFactory *item_factory = NULL;
|
|
|
|
GtkWidget *active_menu_item = NULL;
|
|
|
|
gchar *help_path = NULL;
|
|
|
|
gchar *help_page = NULL;
|
|
|
|
|
2000-02-12 23:01:33 +08:00
|
|
|
item_factory = (GtkItemFactory *) data;
|
|
|
|
active_menu_item = GTK_MENU_SHELL (widget)->active_menu_item;
|
|
|
|
|
|
|
|
/* first, check if the user tries to assign a shortcut to the help
|
|
|
|
* menu items and ignore it...
|
|
|
|
*/
|
|
|
|
if (active_menu_item)
|
|
|
|
{
|
|
|
|
help_page = (gchar *) gtk_object_get_data (GTK_OBJECT (active_menu_item),
|
|
|
|
"help_page");
|
|
|
|
|
|
|
|
if (help_page &&
|
|
|
|
*help_page &&
|
|
|
|
item_factory == toolbox_factory &&
|
|
|
|
(strcmp (help_page, "help/dialogs/help.html") == 0 ||
|
|
|
|
strcmp (help_page, "help/context_help.html") == 0))
|
|
|
|
{
|
|
|
|
gtk_signal_emit_stop_by_name (GTK_OBJECT (widget), "key_press_event");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ...otherwise, for any key except F1, continue with the standard
|
|
|
|
* GtkItemFactory callback and assign a new shortcut...
|
|
|
|
*/
|
1999-10-03 21:50:19 +08:00
|
|
|
if (kevent->keyval != GDK_F1)
|
|
|
|
return FALSE;
|
|
|
|
|
2000-02-12 23:01:33 +08:00
|
|
|
/* ...finally, if F1 was pressed over any menu, show it's help page...
|
|
|
|
*/
|
|
|
|
gtk_signal_emit_stop_by_name (GTK_OBJECT (widget), "key_press_event");
|
1999-10-03 21:50:19 +08:00
|
|
|
|
|
|
|
help_path = (gchar *) gtk_object_get_data (GTK_OBJECT (item_factory),
|
|
|
|
"help_path");
|
|
|
|
|
2000-02-12 23:01:33 +08:00
|
|
|
if (! help_page ||
|
|
|
|
! *help_page)
|
1999-10-03 21:50:19 +08:00
|
|
|
help_page = "index.html";
|
|
|
|
|
|
|
|
if (help_path && help_page)
|
|
|
|
{
|
|
|
|
gchar *help_string;
|
|
|
|
|
|
|
|
help_string = g_strdup_printf ("%s/%s", help_path, help_page);
|
|
|
|
gimp_help (help_string);
|
|
|
|
g_free (help_string);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gimp_help (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set up the callback to catch the "F1" key */
|
|
|
|
static void
|
|
|
|
menus_item_realize (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
if (GTK_IS_MENU_SHELL (widget->parent))
|
|
|
|
{
|
|
|
|
if (! gtk_object_get_data (GTK_OBJECT (widget->parent),
|
|
|
|
"menus_key_press_connected"))
|
|
|
|
{
|
|
|
|
gtk_signal_connect (GTK_OBJECT (widget->parent), "key_press_event",
|
|
|
|
GTK_SIGNAL_FUNC (menus_item_key_press),
|
|
|
|
(gpointer) data);
|
|
|
|
|
|
|
|
gtk_object_set_data (GTK_OBJECT (widget->parent),
|
|
|
|
"menus_key_press_connected",
|
|
|
|
(gpointer) TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
menus_create_item (GtkItemFactory *item_factory,
|
|
|
|
GimpItemFactoryEntry *entry,
|
|
|
|
gpointer callback_data,
|
|
|
|
guint callback_type)
|
|
|
|
{
|
1999-12-02 21:00:18 +08:00
|
|
|
GtkWidget *menu_item;
|
1999-10-03 21:50:19 +08:00
|
|
|
|
2000-03-09 04:57:49 +08:00
|
|
|
if (!(strstr (entry->entry.path, "tearoff1")))
|
|
|
|
menus_create_branches (item_factory, entry);
|
|
|
|
|
1999-10-03 21:50:19 +08:00
|
|
|
gtk_item_factory_create_item (item_factory,
|
|
|
|
(GtkItemFactoryEntry *) entry,
|
|
|
|
callback_data,
|
|
|
|
callback_type);
|
|
|
|
|
1999-12-02 21:00:18 +08:00
|
|
|
menu_item = gtk_item_factory_get_item (item_factory,
|
|
|
|
((GtkItemFactoryEntry *) entry)->path);
|
1999-10-03 21:50:19 +08:00
|
|
|
|
1999-12-02 21:00:18 +08:00
|
|
|
if (menu_item)
|
1999-10-03 21:50:19 +08:00
|
|
|
{
|
1999-12-02 21:00:18 +08:00
|
|
|
gtk_signal_connect_after (GTK_OBJECT (menu_item), "realize",
|
1999-10-03 21:50:19 +08:00
|
|
|
GTK_SIGNAL_FUNC (menus_item_realize),
|
|
|
|
(gpointer) item_factory);
|
|
|
|
|
1999-12-02 21:00:18 +08:00
|
|
|
gtk_object_set_data (GTK_OBJECT (menu_item), "help_page",
|
1999-10-03 21:50:19 +08:00
|
|
|
(gpointer) entry->help_page);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
menus_create_items (GtkItemFactory *item_factory,
|
|
|
|
guint n_entries,
|
|
|
|
GimpItemFactoryEntry *entries,
|
|
|
|
gpointer callback_data,
|
|
|
|
guint callback_type)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
for (i = 0; i < n_entries; i++)
|
|
|
|
{
|
|
|
|
menus_create_item (item_factory,
|
|
|
|
entries + i,
|
|
|
|
callback_data,
|
|
|
|
callback_type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-11-20 20:12:41 +08:00
|
|
|
static void
|
1999-12-02 21:00:18 +08:00
|
|
|
menus_init (void)
|
1998-07-12 13:18:17 +08:00
|
|
|
{
|
1999-12-02 21:00:18 +08:00
|
|
|
GtkWidget *menu_item;
|
|
|
|
gchar *filename;
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
if (! initialize)
|
|
|
|
return;
|
|
|
|
|
|
|
|
initialize = FALSE;
|
|
|
|
|
|
|
|
toolbox_factory = gtk_item_factory_new (GTK_TYPE_MENU_BAR, "<Toolbox>",
|
|
|
|
NULL);
|
1999-10-03 21:50:19 +08:00
|
|
|
gtk_object_set_data (GTK_OBJECT (toolbox_factory), "help_path",
|
|
|
|
(gpointer) "toolbox");
|
1999-06-22 04:04:04 +08:00
|
|
|
gtk_item_factory_set_translate_func (toolbox_factory, menu_translate,
|
1999-12-02 21:00:18 +08:00
|
|
|
"<Toolbox>", NULL);
|
|
|
|
menus_create_items (toolbox_factory,
|
|
|
|
n_toolbox_entries,
|
|
|
|
toolbox_entries,
|
|
|
|
NULL, 2);
|
Lots of ii8n stuff here and some additions to the de.po. Applied
Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>
* app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
Lots of ii8n stuff here and some additions to the de.po.
Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
gimp-egger-981007-1, gimp-egger-981008-1,
gimp-egger-981009-1.patch, gimp-egger-981010-1.patch
* plug-in/guillotine/guillotine.c: added the coordinates
of the split images from the original image to the title.
ie foo.jpg (0,0) for the image in the topleft.
* plug-in/script-fu/scripts/neon-logo.scm,
perspective-shadow.scm, predator.scm,rendermap.scm,
ripply-anim.scm, select_to_image.scm,swirltile.scm,
xach-effect.scm: updated scripts to use new script-fu stuff
wooo boy! a big un!
in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.
-adrian
1998-10-15 07:23:52 +08:00
|
|
|
|
1999-12-02 21:00:18 +08:00
|
|
|
menus_init_mru ();
|
1999-10-03 21:50:19 +08:00
|
|
|
|
1999-12-02 21:00:18 +08:00
|
|
|
image_factory = gtk_item_factory_new (GTK_TYPE_MENU, "<Image>", NULL);
|
|
|
|
gtk_object_set_data (GTK_OBJECT (image_factory), "help_path",
|
|
|
|
(gpointer) "image");
|
|
|
|
gtk_item_factory_set_translate_func (image_factory, menu_translate,
|
|
|
|
"<Image>", NULL);
|
|
|
|
menus_create_items (image_factory,
|
|
|
|
n_image_entries,
|
|
|
|
image_entries,
|
|
|
|
NULL, 2);
|
|
|
|
|
|
|
|
load_factory = gtk_item_factory_new (GTK_TYPE_MENU, "<Load>", NULL);
|
|
|
|
gtk_object_set_data (GTK_OBJECT (load_factory), "help_path",
|
|
|
|
(gpointer) "open");
|
|
|
|
gtk_item_factory_set_translate_func (load_factory, menu_translate,
|
|
|
|
"<Load>", NULL);
|
|
|
|
menus_create_items (load_factory,
|
|
|
|
n_load_entries,
|
|
|
|
load_entries,
|
|
|
|
NULL, 2);
|
|
|
|
|
|
|
|
save_factory = gtk_item_factory_new (GTK_TYPE_MENU, "<Save>", NULL);
|
|
|
|
gtk_object_set_data (GTK_OBJECT (save_factory), "help_path",
|
|
|
|
(gpointer) "save");
|
|
|
|
gtk_item_factory_set_translate_func (save_factory, menu_translate,
|
|
|
|
"<Save>", NULL);
|
|
|
|
menus_create_items (save_factory,
|
|
|
|
n_save_entries,
|
|
|
|
save_entries,
|
|
|
|
NULL, 2);
|
|
|
|
|
|
|
|
layers_factory = gtk_item_factory_new (GTK_TYPE_MENU, "<Layers>", NULL);
|
|
|
|
gtk_object_set_data (GTK_OBJECT (layers_factory), "help_path",
|
|
|
|
(gpointer) "layers");
|
|
|
|
gtk_item_factory_set_translate_func (layers_factory, menu_translate,
|
|
|
|
"<Layers>", NULL);
|
|
|
|
menus_create_items (layers_factory,
|
|
|
|
n_layers_entries,
|
|
|
|
layers_entries,
|
|
|
|
NULL, 2);
|
|
|
|
|
|
|
|
channels_factory = gtk_item_factory_new (GTK_TYPE_MENU, "<Channels>", NULL);
|
|
|
|
gtk_object_set_data (GTK_OBJECT (channels_factory), "help_path",
|
|
|
|
(gpointer) "channels");
|
|
|
|
gtk_item_factory_set_translate_func (channels_factory, menu_translate,
|
|
|
|
"<Channels>", NULL);
|
|
|
|
menus_create_items (channels_factory,
|
|
|
|
n_channels_entries,
|
|
|
|
channels_entries,
|
|
|
|
NULL, 2);
|
|
|
|
|
|
|
|
paths_factory = gtk_item_factory_new (GTK_TYPE_MENU, "<Paths>", NULL);
|
|
|
|
gtk_object_set_data (GTK_OBJECT (paths_factory), "help_path",
|
|
|
|
(gpointer) "paths");
|
|
|
|
gtk_item_factory_set_translate_func (paths_factory, menu_translate,
|
|
|
|
"<Paths>", NULL);
|
|
|
|
menus_create_items (paths_factory,
|
|
|
|
n_paths_entries,
|
|
|
|
paths_entries,
|
|
|
|
NULL, 2);
|
|
|
|
|
|
|
|
for (i = 0; i < num_tools; i++)
|
|
|
|
{
|
|
|
|
/* FIXME this need to use access functions to check a flag */
|
|
|
|
if (tool_info[i].menu_path)
|
|
|
|
menus_tools_create (&tool_info[i]);
|
|
|
|
}
|
1998-08-06 07:46:04 +08:00
|
|
|
|
1999-12-02 21:00:18 +08:00
|
|
|
/* reorder <Image>/Image/Colors */
|
|
|
|
menu_item = gtk_item_factory_get_widget (image_factory,
|
|
|
|
tool_info[POSTERIZE].menu_path);
|
|
|
|
if (menu_item && menu_item->parent)
|
|
|
|
gtk_menu_reorder_child (GTK_MENU (menu_item->parent), menu_item, 3);
|
1998-06-22 04:17:21 +08:00
|
|
|
|
1999-12-02 21:00:18 +08:00
|
|
|
{
|
|
|
|
static ToolType color_tools[] = { COLOR_BALANCE,
|
|
|
|
HUE_SATURATION,
|
|
|
|
BRIGHTNESS_CONTRAST,
|
|
|
|
THRESHOLD,
|
|
|
|
LEVELS,
|
|
|
|
CURVES };
|
|
|
|
static gint n_color_tools = (sizeof (color_tools) /
|
|
|
|
sizeof (color_tools[0]));
|
|
|
|
gint i, pos;
|
1999-06-07 01:26:51 +08:00
|
|
|
|
1999-12-02 21:00:18 +08:00
|
|
|
pos = 1;
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-12-02 21:00:18 +08:00
|
|
|
for (i = 0; i < n_color_tools; i++)
|
1999-11-20 20:12:41 +08:00
|
|
|
{
|
1999-12-02 21:00:18 +08:00
|
|
|
menu_item =
|
|
|
|
gtk_item_factory_get_widget (image_factory,
|
|
|
|
tool_info[color_tools[i]].menu_path);
|
|
|
|
if (menu_item && menu_item->parent)
|
1999-11-20 20:12:41 +08:00
|
|
|
{
|
1999-12-02 21:00:18 +08:00
|
|
|
gtk_menu_reorder_child (GTK_MENU (menu_item->parent),
|
|
|
|
menu_item, pos);
|
|
|
|
pos++;
|
1999-11-20 20:12:41 +08:00
|
|
|
}
|
|
|
|
}
|
1999-12-02 21:00:18 +08:00
|
|
|
}
|
1999-11-20 20:12:41 +08:00
|
|
|
|
1999-12-02 21:00:18 +08:00
|
|
|
filename = gimp_personal_rc_file ("menurc");
|
|
|
|
gtk_item_factory_parse_rc (filename);
|
|
|
|
g_free (filename);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
1999-06-22 04:04:04 +08:00
|
|
|
|
1999-12-08 02:56:12 +08:00
|
|
|
#ifdef ENABLE_NLS
|
|
|
|
|
1999-06-22 04:04:04 +08:00
|
|
|
static gchar *
|
|
|
|
menu_translate (const gchar *path,
|
|
|
|
gpointer data)
|
|
|
|
{
|
1999-11-26 18:17:19 +08:00
|
|
|
static gchar *menupath = NULL;
|
|
|
|
|
2000-02-24 04:25:24 +08:00
|
|
|
GtkItemFactory *item_factory = NULL;
|
2000-03-09 06:39:14 +08:00
|
|
|
gchar *retval;
|
1999-11-25 19:35:48 +08:00
|
|
|
gchar *factory;
|
2000-02-10 01:39:40 +08:00
|
|
|
gchar *translation;
|
2000-02-24 04:25:24 +08:00
|
|
|
gchar *domain = NULL;
|
2000-02-27 03:09:28 +08:00
|
|
|
gchar *complete = NULL;
|
|
|
|
gchar *p, *t;
|
1999-11-25 19:35:48 +08:00
|
|
|
|
|
|
|
factory = (gchar *) data;
|
1999-08-28 05:06:00 +08:00
|
|
|
|
1999-11-26 18:17:19 +08:00
|
|
|
if (menupath)
|
|
|
|
g_free (menupath);
|
|
|
|
|
2000-03-09 06:39:14 +08:00
|
|
|
retval = menupath = g_strdup (path);
|
1999-11-25 19:35:48 +08:00
|
|
|
|
|
|
|
if ((strstr (path, "/tearoff1") != NULL) ||
|
|
|
|
(strstr (path, "/---") != NULL) ||
|
|
|
|
(strstr (path, "/MRU") != NULL))
|
2000-03-09 06:39:14 +08:00
|
|
|
return retval;
|
1999-11-23 09:06:16 +08:00
|
|
|
|
2000-02-24 04:25:24 +08:00
|
|
|
if (factory)
|
|
|
|
item_factory = gtk_item_factory_from_path (factory);
|
|
|
|
if (item_factory)
|
|
|
|
domain = gtk_object_get_data (GTK_OBJECT (item_factory), "textdomain");
|
1999-11-24 03:11:29 +08:00
|
|
|
|
2000-02-27 03:09:28 +08:00
|
|
|
if (domain) /* use the plugin textdomain */
|
1999-11-24 03:11:29 +08:00
|
|
|
{
|
2000-03-09 06:53:20 +08:00
|
|
|
g_free (menupath);
|
|
|
|
menupath = g_strconcat (factory, path, NULL);
|
2000-02-27 03:09:28 +08:00
|
|
|
complete = gtk_object_get_data (GTK_OBJECT (item_factory), "complete");
|
2000-03-09 04:57:49 +08:00
|
|
|
|
2000-02-27 03:09:28 +08:00
|
|
|
if (complete)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* This is a branch, use the complete path for translation,
|
|
|
|
* then strip off entries from the end until it matches.
|
|
|
|
*/
|
2000-03-09 04:57:49 +08:00
|
|
|
complete = g_strconcat (factory, complete, NULL);
|
2000-02-27 03:09:28 +08:00
|
|
|
translation = g_strdup (dgettext (domain, complete));
|
|
|
|
|
2000-03-09 06:53:20 +08:00
|
|
|
while (*complete && *translation && strcmp (complete, menupath))
|
2000-02-27 03:09:28 +08:00
|
|
|
{
|
|
|
|
p = strrchr (complete, '/');
|
|
|
|
t = strrchr (translation, '/');
|
|
|
|
if (p && t)
|
|
|
|
{
|
|
|
|
*p = '\0';
|
|
|
|
*t = '\0';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
2000-03-09 06:53:20 +08:00
|
|
|
|
|
|
|
g_free (complete);
|
2000-02-27 03:09:28 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2000-03-09 06:53:20 +08:00
|
|
|
translation = dgettext (domain, menupath);
|
2000-02-27 03:09:28 +08:00
|
|
|
}
|
2000-03-09 04:57:49 +08:00
|
|
|
|
2000-02-10 01:39:40 +08:00
|
|
|
/*
|
2000-02-24 04:25:24 +08:00
|
|
|
* Work around a bug in GTK+ prior to 1.2.7 (similar workaround below)
|
2000-02-10 01:39:40 +08:00
|
|
|
*/
|
2000-02-27 03:09:28 +08:00
|
|
|
if (strncmp (factory, translation, strlen (factory)) == 0)
|
|
|
|
{
|
2000-03-09 06:39:14 +08:00
|
|
|
retval = translation + strlen (factory);
|
2000-03-09 06:53:20 +08:00
|
|
|
if (complete)
|
|
|
|
{
|
|
|
|
g_free (menupath);
|
|
|
|
menupath = translation;
|
|
|
|
}
|
2000-02-27 03:09:28 +08:00
|
|
|
}
|
2000-02-12 01:02:13 +08:00
|
|
|
else
|
2000-02-27 03:09:28 +08:00
|
|
|
{
|
2000-03-09 06:53:20 +08:00
|
|
|
g_warning ("bad translation for menupath: %s", menupath);
|
|
|
|
retval = menupath + strlen (factory);
|
2000-02-27 03:09:28 +08:00
|
|
|
if (complete)
|
|
|
|
g_free (translation);
|
|
|
|
}
|
1999-08-28 05:06:00 +08:00
|
|
|
}
|
2000-02-24 04:25:24 +08:00
|
|
|
else
|
|
|
|
{
|
|
|
|
translation = gettext (menupath);
|
2000-03-09 06:39:14 +08:00
|
|
|
|
2000-02-24 04:25:24 +08:00
|
|
|
if (*translation == '/')
|
2000-03-09 06:39:14 +08:00
|
|
|
retval = translation;
|
2000-02-24 04:25:24 +08:00
|
|
|
else
|
|
|
|
g_warning ("bad translation for menupath: %s", menupath);
|
|
|
|
}
|
1999-08-28 05:06:00 +08:00
|
|
|
|
2000-03-09 06:39:14 +08:00
|
|
|
return retval;
|
1999-06-22 04:04:04 +08:00
|
|
|
}
|
1999-08-24 06:47:36 +08:00
|
|
|
|
1999-12-08 02:56:12 +08:00
|
|
|
#endif /* ENABLE_NLS */
|
|
|
|
|
1999-08-24 06:47:36 +08:00
|
|
|
static gint
|
|
|
|
tearoff_delete_cb (GtkWidget *widget,
|
|
|
|
GdkEvent *event,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
/* Unregister if dialog is deleted as well */
|
1999-10-03 21:50:19 +08:00
|
|
|
dialog_unregister ((GtkWidget *) data);
|
1999-08-24 06:47:36 +08:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
tearoff_cmd_callback (GtkWidget *widget,
|
|
|
|
gpointer callback_data,
|
|
|
|
guint callback_action)
|
|
|
|
{
|
1999-10-03 21:50:19 +08:00
|
|
|
if (GTK_IS_TEAROFF_MENU_ITEM (widget))
|
1999-08-24 06:47:36 +08:00
|
|
|
{
|
1999-11-25 19:35:48 +08:00
|
|
|
GtkTearoffMenuItem *tomi = (GtkTearoffMenuItem *) widget;
|
|
|
|
|
1999-10-03 21:50:19 +08:00
|
|
|
if (tomi->torn_off)
|
1999-08-24 06:47:36 +08:00
|
|
|
{
|
1999-11-25 19:35:48 +08:00
|
|
|
GtkWidget *top = gtk_widget_get_toplevel (widget);
|
1999-08-24 06:47:36 +08:00
|
|
|
|
|
|
|
/* This should be a window */
|
1999-10-03 21:50:19 +08:00
|
|
|
if (!GTK_IS_WINDOW (top))
|
1999-08-24 06:47:36 +08:00
|
|
|
{
|
1999-12-02 21:00:18 +08:00
|
|
|
g_message ("tearoff menu not in top level window");
|
1999-08-24 06:47:36 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1999-10-04 00:54:17 +08:00
|
|
|
dialog_register (top);
|
1999-08-24 06:47:36 +08:00
|
|
|
gtk_signal_connect_object (GTK_OBJECT (top),
|
|
|
|
"delete_event",
|
|
|
|
GTK_SIGNAL_FUNC (tearoff_delete_cb),
|
|
|
|
GTK_OBJECT (top));
|
1999-12-02 21:00:18 +08:00
|
|
|
|
1999-10-04 00:54:17 +08:00
|
|
|
gtk_object_set_data (GTK_OBJECT (widget), "tearoff_menu_top",
|
|
|
|
top);
|
2000-02-10 08:00:54 +08:00
|
|
|
|
|
|
|
gimp_dialog_set_icon (GTK_WINDOW (top));
|
1999-08-24 06:47:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1999-10-04 00:54:17 +08:00
|
|
|
GtkWidget *top;
|
|
|
|
|
|
|
|
top = (GtkWidget *) gtk_object_get_data (GTK_OBJECT (widget),
|
|
|
|
"tearoff_menu_top");
|
|
|
|
|
|
|
|
if (!top)
|
1999-08-24 06:47:36 +08:00
|
|
|
{
|
1999-11-24 05:02:54 +08:00
|
|
|
g_message ("can't unregister tearoff menu top level window");
|
1999-08-24 06:47:36 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1999-10-04 00:54:17 +08:00
|
|
|
dialog_unregister (top);
|
1999-08-24 06:47:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-11-20 20:12:41 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
help_debug_cmd_callback (GtkWidget *widget,
|
|
|
|
gpointer callback_data,
|
|
|
|
guint callback_action)
|
|
|
|
{
|
1999-11-30 08:58:38 +08:00
|
|
|
/* ugly, but ANSI C compliant */
|
|
|
|
gint n_factories = 7;
|
|
|
|
GtkItemFactory *factories[7];
|
|
|
|
GimpItemFactoryEntry *entries[7];
|
|
|
|
gint num_entries[7];
|
1999-11-20 20:12:41 +08:00
|
|
|
gchar *help_path;
|
|
|
|
gint i, j;
|
|
|
|
|
1999-11-30 08:58:38 +08:00
|
|
|
|
|
|
|
factories[0] = toolbox_factory;
|
|
|
|
factories[1] = image_factory;
|
|
|
|
factories[2] = layers_factory;
|
|
|
|
factories[3] = channels_factory;
|
|
|
|
factories[4] = paths_factory;
|
|
|
|
factories[5] = load_factory;
|
|
|
|
factories[6] = save_factory;
|
|
|
|
|
|
|
|
entries[0] = toolbox_entries;
|
|
|
|
entries[1] = image_entries;
|
|
|
|
entries[2] = layers_entries;
|
|
|
|
entries[3] = channels_entries;
|
|
|
|
entries[4] = paths_entries;
|
|
|
|
entries[5] = load_entries;
|
|
|
|
entries[6] = save_entries;
|
|
|
|
|
|
|
|
num_entries[0] = n_toolbox_entries;
|
|
|
|
num_entries[1] = n_image_entries;
|
|
|
|
num_entries[2] = n_layers_entries;
|
|
|
|
num_entries[3] = n_channels_entries;
|
|
|
|
num_entries[4] = n_paths_entries;
|
|
|
|
num_entries[5] = n_load_entries;
|
|
|
|
num_entries[6] = n_save_entries;
|
|
|
|
|
1999-11-20 20:12:41 +08:00
|
|
|
for (i = 0; i < n_factories; i++)
|
|
|
|
{
|
|
|
|
help_path = gtk_object_get_data (GTK_OBJECT (factories[i]), "help_path");
|
|
|
|
|
|
|
|
for (j = 0; j < num_entries[i]; j++)
|
|
|
|
{
|
|
|
|
if (entries[i][j].help_page)
|
|
|
|
g_print ("%s%s\t\t(%s/%s)\n",
|
|
|
|
factories[i]->path,
|
|
|
|
entries[i][j].entry.path,
|
|
|
|
help_path,
|
|
|
|
entries[i][j].help_page);
|
|
|
|
else
|
|
|
|
g_print ("%s%s\n",
|
|
|
|
factories[i]->path,
|
|
|
|
entries[i][j].entry.path);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_print ("\n");
|
|
|
|
}
|
|
|
|
}
|