mirror of https://github.com/GNOME/gimp.git
removed function gimp_menu_path_strip_uline() ...
2003-08-09 Henrik Brix Andersen <brix@gimp.org> * gimp/app/widgets/gimpwidgets-utils.[ch]: removed function gimp_menu_path_strip_uline() ... * gimp/libgimpbase/gimputils.[ch]: ... and added it here under the name gimp_strip_uline() * gimp/devel-docs/libgimpbase/libgimpbase-sections.txt: added gimp_strip_uline to gimputils section * gimp/app/plug-in/plug-in.c * gimp/app/widgets/gimpitemfactory.c * gimp/app/widgets/gimptoolbox. * gimp/app/gui/plug-in-menus.c: changed accordingly * gimp/plug-ins/script-fu/script-fu-scripts.c (script_fu_interface): use gimp_strip_uline() to strip mnemonics from script-fu menu paths * gimp/app/gui/vectors-menu.c * gimp/app/gui/templates-menu.c * gimp/app/gui/qmask-menu.c * gimp/app/gui/palettes-menu.c * gimp/app/gui/palette-editor-menu.c * gimp/app/gui/images-menu.c * gimp/app/gui/gradients-menu.c * gimp/app/gui/gradient-editor-menu.c * gimp/app/gui/documents-menu.c * gimp/app/gui/dialogs-menu.c * gimp/app/gui/colormap-editor-menu.c * gimp/app/gui/channels-menu.c * gimp/app/gui/buffers-menu.c * gimp/app/gui/brushes-menu.c * gimp/app/gui/layers-menu.c * gimp/plug-ins/pygimp/plug-ins/clothify.py * gimp/plug-ins/pygimp/plug-ins/shadow_bevel.py * gimp/plug-ins/pygimp/plug-ins/whirlpinch.py * gimp/plug-ins/pygimp/plug-ins/foggify.py * gimp/plug-ins/script-fu/scripts/*.scm * gimp/plug-ins/script-fu/script-fu.c: added mnemonics fixing more of bug #106991 * gimp/app/gui/error-console-menu.c (error_console_menu_update): updated menu item names, added mnemonics * gimp/plug-ins/common/animoptimize.c * gimp/plug-ins/common/animationplay.c: don't prepend every menu entry with "Animation"
This commit is contained in:
parent
dd2464c10e
commit
f36a63f68c
50
ChangeLog
50
ChangeLog
|
@ -1,3 +1,53 @@
|
|||
2003-08-11 Henrik Brix Andersen <brix@gimp.org>
|
||||
|
||||
* gimp/app/widgets/gimpwidgets-utils.[ch]: removed function
|
||||
gimp_menu_path_strip_uline() ...
|
||||
|
||||
* gimp/libgimpbase/gimputils.[ch]: ... and added it here under the
|
||||
name gimp_strip_uline()
|
||||
|
||||
* gimp/devel-docs/libgimpbase/libgimpbase-sections.txt: added
|
||||
gimp_strip_uline to gimputils section
|
||||
|
||||
* gimp/app/plug-in/plug-in.c
|
||||
* gimp/app/widgets/gimpitemfactory.c
|
||||
* gimp/app/widgets/gimptoolbox.
|
||||
* gimp/app/gui/plug-in-menus.c: changed accordingly
|
||||
|
||||
* gimp/plug-ins/script-fu/script-fu-scripts.c
|
||||
(script_fu_interface): use gimp_strip_uline() to strip mnemonics
|
||||
from script-fu menu paths
|
||||
|
||||
* gimp/app/gui/vectors-menu.c
|
||||
* gimp/app/gui/templates-menu.c
|
||||
* gimp/app/gui/qmask-menu.c
|
||||
* gimp/app/gui/palettes-menu.c
|
||||
* gimp/app/gui/palette-editor-menu.c
|
||||
* gimp/app/gui/images-menu.c
|
||||
* gimp/app/gui/gradients-menu.c
|
||||
* gimp/app/gui/gradient-editor-menu.c
|
||||
* gimp/app/gui/documents-menu.c
|
||||
* gimp/app/gui/dialogs-menu.c
|
||||
* gimp/app/gui/colormap-editor-menu.c
|
||||
* gimp/app/gui/channels-menu.c
|
||||
* gimp/app/gui/buffers-menu.c
|
||||
* gimp/app/gui/brushes-menu.c
|
||||
* gimp/app/gui/layers-menu.c
|
||||
* gimp/plug-ins/pygimp/plug-ins/clothify.py
|
||||
* gimp/plug-ins/pygimp/plug-ins/shadow_bevel.py
|
||||
* gimp/plug-ins/pygimp/plug-ins/whirlpinch.py
|
||||
* gimp/plug-ins/pygimp/plug-ins/foggify.py
|
||||
* gimp/plug-ins/script-fu/scripts/*.scm
|
||||
* gimp/plug-ins/script-fu/script-fu.c: added mnemonics fixing more
|
||||
of bug #106991
|
||||
|
||||
* gimp/app/gui/error-console-menu.c (error_console_menu_update):
|
||||
updated menu item names, added mnemonics
|
||||
|
||||
* gimp/plug-ins/common/animoptimize.c *
|
||||
gimp/plug-ins/common/animationplay.c: don't prepend every menu
|
||||
entry with "Animation"
|
||||
|
||||
2003-08-10 Dave Neary <bolsh@gimp.org>
|
||||
|
||||
* Made 1.3.18 release.
|
||||
|
|
|
@ -41,22 +41,22 @@
|
|||
|
||||
GimpItemFactoryEntry brushes_menu_entries[] =
|
||||
{
|
||||
{ { N_("/New Brush"), NULL,
|
||||
{ { N_("/_New Brush"), NULL,
|
||||
data_new_data_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_NEW },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/Duplicate Brush"), NULL,
|
||||
{ { N_("/D_uplicate Brush"), NULL,
|
||||
data_duplicate_data_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_DUPLICATE },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/Edit Brush..."), NULL,
|
||||
{ { N_("/_Edit Brush..."), NULL,
|
||||
data_edit_data_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_EDIT },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/Delete Brush..."), NULL,
|
||||
{ { N_("/_Delete Brush..."), NULL,
|
||||
data_delete_data_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_DELETE },
|
||||
NULL,
|
||||
|
@ -64,7 +64,7 @@ GimpItemFactoryEntry brushes_menu_entries[] =
|
|||
|
||||
MENU_SEPARATOR ("/---"),
|
||||
|
||||
{ { N_("/Refresh Brushes"), NULL,
|
||||
{ { N_("/_Refresh Brushes"), NULL,
|
||||
data_refresh_data_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_REFRESH },
|
||||
NULL,
|
||||
|
|
|
@ -38,22 +38,22 @@
|
|||
|
||||
GimpItemFactoryEntry buffers_menu_entries[] =
|
||||
{
|
||||
{ { N_("/Paste Buffer"), NULL,
|
||||
{ { N_("/_Paste Buffer"), NULL,
|
||||
buffers_paste_buffer_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_PASTE },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/Paste Buffer Into"), NULL,
|
||||
{ { N_("/Paste Buffer _Into"), NULL,
|
||||
buffers_paste_buffer_into_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_PASTE_INTO },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/Paste Buffer as New"), NULL,
|
||||
{ { N_("/Paste Buffer as _New"), NULL,
|
||||
buffers_paste_buffer_as_new_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_PASTE_AS_NEW },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/Delete Buffer"), NULL,
|
||||
{ { N_("/_Delete Buffer"), NULL,
|
||||
buffers_delete_buffer_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_DELETE },
|
||||
NULL,
|
||||
|
|
|
@ -40,22 +40,22 @@
|
|||
|
||||
GimpItemFactoryEntry channels_menu_entries[] =
|
||||
{
|
||||
{ { N_("/New Channel..."), "<control>N",
|
||||
{ { N_("/_New Channel..."), "<control>N",
|
||||
channels_new_channel_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_NEW },
|
||||
NULL,
|
||||
"dialogs/new_channel.html", NULL },
|
||||
{ { N_("/Raise Channel"), "<control>F",
|
||||
{ { N_("/_Raise Channel"), "<control>F",
|
||||
channels_raise_channel_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_GO_UP },
|
||||
NULL,
|
||||
"raise_channel.html", NULL },
|
||||
{ { N_("/Lower Channel"), "<control>B",
|
||||
{ { N_("/_Lower Channel"), "<control>B",
|
||||
channels_lower_channel_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_GO_DOWN },
|
||||
NULL,
|
||||
"lower_channel.html", NULL },
|
||||
{ { N_("/Duplicate Channel"), "<control>C",
|
||||
{ { N_("/D_uplicate Channel"), "<control>C",
|
||||
channels_duplicate_channel_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_DUPLICATE },
|
||||
NULL,
|
||||
|
@ -63,22 +63,22 @@ GimpItemFactoryEntry channels_menu_entries[] =
|
|||
|
||||
MENU_SEPARATOR ("/---"),
|
||||
|
||||
{ { N_("/Channel to Selection"), "<control>S",
|
||||
{ { N_("/Channel to Sele_ction"), "<control>S",
|
||||
channels_channel_to_sel_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_SELECTION_REPLACE },
|
||||
NULL,
|
||||
"channel_to_selection.html", NULL },
|
||||
{ { N_("/Add to Selection"), NULL,
|
||||
{ { N_("/_Add to Selection"), NULL,
|
||||
channels_add_channel_to_sel_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_SELECTION_ADD },
|
||||
NULL,
|
||||
"channel_to_selection.html#add", NULL },
|
||||
{ { N_("/Subtract from Selection"), NULL,
|
||||
{ { N_("/_Subtract from Selection"), NULL,
|
||||
channels_sub_channel_from_sel_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_SELECTION_SUBTRACT },
|
||||
NULL,
|
||||
"channel_to_selection.html#subtract", NULL },
|
||||
{ { N_("/Intersect with Selection"), NULL,
|
||||
{ { N_("/_Intersect with Selection"), NULL,
|
||||
channels_intersect_channel_with_sel_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_SELECTION_INTERSECT },
|
||||
NULL,
|
||||
|
@ -86,7 +86,7 @@ GimpItemFactoryEntry channels_menu_entries[] =
|
|||
|
||||
MENU_SEPARATOR ("/---"),
|
||||
|
||||
{ { N_("/Delete Channel"), "<control>X",
|
||||
{ { N_("/_Delete Channel"), "<control>X",
|
||||
channels_delete_channel_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_DELETE },
|
||||
NULL,
|
||||
|
@ -94,7 +94,7 @@ GimpItemFactoryEntry channels_menu_entries[] =
|
|||
|
||||
MENU_SEPARATOR ("/---"),
|
||||
|
||||
{ { N_("/Edit Channel Attributes..."), NULL,
|
||||
{ { N_("/_Edit Channel Attributes..."), NULL,
|
||||
channels_edit_channel_attributes_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_EDIT },
|
||||
NULL,
|
||||
|
|
|
@ -37,12 +37,12 @@
|
|||
|
||||
GimpItemFactoryEntry colormap_editor_menu_entries[] =
|
||||
{
|
||||
{ { N_("/Add Color"), NULL,
|
||||
{ { N_("/_Add Color"), NULL,
|
||||
colormap_editor_add_color_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_NEW },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/Edit Color..."), NULL,
|
||||
{ { N_("/_Edit Color..."), NULL,
|
||||
colormap_editor_edit_color_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_EDIT },
|
||||
NULL,
|
||||
|
|
|
@ -54,109 +54,111 @@
|
|||
|
||||
GimpItemFactoryEntry dialogs_menu_entries[] =
|
||||
{
|
||||
{ { N_("/Select Tab"), NULL, NULL, 0 },
|
||||
{ { N_("/_Select Tab"), NULL, NULL, 0 },
|
||||
NULL, NULL, NULL },
|
||||
|
||||
ADD_TAB (N_("/Add Tab/Tool Options..."), "gimp-tool-options",
|
||||
MENU_BRANCH ("/_Add Tab"),
|
||||
|
||||
ADD_TAB (N_("/Add Tab/Tool _Options..."), "gimp-tool-options",
|
||||
"<StockItem>", GIMP_STOCK_TOOL_OPTIONS),
|
||||
ADD_TAB (N_("/Add Tab/Device Status..."), "gimp-device-status",
|
||||
ADD_TAB (N_("/Add Tab/_Device Status..."), "gimp-device-status",
|
||||
"<StockItem>", GIMP_STOCK_DEVICE_STATUS),
|
||||
|
||||
MENU_SEPARATOR ("/Add Tab/---"),
|
||||
|
||||
ADD_TAB (N_("/Add Tab/Layers..."), "gimp-layer-list",
|
||||
ADD_TAB (N_("/Add Tab/_Layers..."), "gimp-layer-list",
|
||||
"<StockItem>", GIMP_STOCK_LAYERS),
|
||||
ADD_TAB (N_("/Add Tab/Channels..."), "gimp-channel-list",
|
||||
ADD_TAB (N_("/Add Tab/_Channels..."), "gimp-channel-list",
|
||||
"<StockItem>", GIMP_STOCK_CHANNELS),
|
||||
ADD_TAB (N_("/Add Tab/Paths..."), "gimp-vectors-list",
|
||||
ADD_TAB (N_("/Add Tab/_Paths..."), "gimp-vectors-list",
|
||||
"<StockItem>", GIMP_STOCK_PATHS),
|
||||
ADD_TAB (N_("/Add Tab/Indexed Palette..."), "gimp-indexed-palette",
|
||||
ADD_TAB (N_("/Add Tab/_Indexed Palette..."), "gimp-indexed-palette",
|
||||
"<StockItem>", GTK_STOCK_SELECT_COLOR),
|
||||
ADD_TAB (N_("/Add Tab/Selection Editor..."), "gimp-selection-editor",
|
||||
ADD_TAB (N_("/Add Tab/_Selection Editor..."), "gimp-selection-editor",
|
||||
"<StockItem>", GIMP_STOCK_TOOL_RECT_SELECT),
|
||||
ADD_TAB (N_("/Add Tab/Navigation..."), "gimp-navigation-view",
|
||||
ADD_TAB (N_("/Add Tab/Na_vigation..."), "gimp-navigation-view",
|
||||
"<StockItem>", GIMP_STOCK_NAVIGATION),
|
||||
ADD_TAB (N_("/Add Tab/Undo History..."), "gimp-undo-history",
|
||||
ADD_TAB (N_("/Add Tab/_Undo History..."), "gimp-undo-history",
|
||||
"<StockItem>", GTK_STOCK_UNDO),
|
||||
|
||||
MENU_SEPARATOR ("/Add Tab/---"),
|
||||
|
||||
ADD_TAB (N_("/Add Tab/Colors..."), "gimp-color-editor",
|
||||
ADD_TAB (N_("/Add Tab/Colo_rs..."), "gimp-color-editor",
|
||||
"<StockItem>", GIMP_STOCK_DEFAULT_COLORS),
|
||||
ADD_TAB (N_("/Add Tab/Brushes..."), "gimp-brush-grid",
|
||||
ADD_TAB (N_("/Add Tab/Brus_hes..."), "gimp-brush-grid",
|
||||
"<StockItem>", GIMP_STOCK_TOOL_PAINTBRUSH),
|
||||
ADD_TAB (N_("/Add Tab/Patterns..."), "gimp-pattern-grid",
|
||||
ADD_TAB (N_("/Add Tab/P_atterns..."), "gimp-pattern-grid",
|
||||
"<StockItem>", GIMP_STOCK_TOOL_BUCKET_FILL),
|
||||
ADD_TAB (N_("/Add Tab/Gradients..."), "gimp-gradient-list",
|
||||
ADD_TAB (N_("/Add Tab/_Gradients..."), "gimp-gradient-list",
|
||||
"<StockItem>", GIMP_STOCK_TOOL_BLEND),
|
||||
ADD_TAB (N_("/Add Tab/Palettes..."), "gimp-palette-list",
|
||||
ADD_TAB (N_("/Add Tab/Pal_ettes..."), "gimp-palette-list",
|
||||
"<StockItem>", GTK_STOCK_SELECT_COLOR),
|
||||
ADD_TAB (N_("/Add Tab/Fonts..."), "gimp-font-list",
|
||||
ADD_TAB (N_("/Add Tab/_Fonts..."), "gimp-font-list",
|
||||
"<StockItem>", GTK_STOCK_SELECT_FONT),
|
||||
ADD_TAB (N_("/Add Tab/Buffers..."), "gimp-buffer-list",
|
||||
ADD_TAB (N_("/Add Tab/_Buffers..."), "gimp-buffer-list",
|
||||
"<StockItem>", GTK_STOCK_PASTE),
|
||||
|
||||
MENU_SEPARATOR ("/Add Tab/---"),
|
||||
|
||||
ADD_TAB (N_("/Add Tab/Images..."), "gimp-image-list",
|
||||
ADD_TAB (N_("/Add Tab/I_mages..."), "gimp-image-list",
|
||||
"<StockItem>", GIMP_STOCK_IMAGES),
|
||||
ADD_TAB (N_("/Add Tab/Document History..."), "gimp-document-list",
|
||||
ADD_TAB (N_("/Add Tab/Document Histor_y..."), "gimp-document-list",
|
||||
"<StockItem>", GTK_STOCK_OPEN),
|
||||
ADD_TAB (N_("/Add Tab/Templates..."), "gimp-template-list",
|
||||
ADD_TAB (N_("/Add Tab/_Templates..."), "gimp-template-list",
|
||||
"<StockItem>", GIMP_STOCK_TEMPLATE),
|
||||
ADD_TAB (N_("/Add Tab/Error Console..."), "gimp-error-console",
|
||||
ADD_TAB (N_("/Add Tab/Error Co_nsole..."), "gimp-error-console",
|
||||
"<StockItem>", GIMP_STOCK_WARNING),
|
||||
|
||||
MENU_SEPARATOR ("/Add Tab/---"),
|
||||
|
||||
ADD_TAB (N_("/Add Tab/Tools..."), "gimp-tool-list", NULL, NULL),
|
||||
|
||||
{ { N_("/Remove Tab"), NULL,
|
||||
{ { N_("/_Remove Tab"), NULL,
|
||||
dialogs_remove_tab_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_REMOVE },
|
||||
NULL, NULL, NULL },
|
||||
|
||||
MENU_SEPARATOR ("/---"),
|
||||
|
||||
MENU_BRANCH ("/Preview Size"),
|
||||
MENU_BRANCH ("/Preview Si_ze"),
|
||||
|
||||
{ { N_("/Preview Size/Tiny"), NULL,
|
||||
{ { N_("/Preview Size/_Tiny"), NULL,
|
||||
dialogs_preview_size_cmd_callback,
|
||||
GIMP_PREVIEW_SIZE_TINY, "<RadioItem>" },
|
||||
NULL, NULL, NULL },
|
||||
|
||||
PREVIEW_SIZE (N_("/Preview Size/Extra Small"), GIMP_PREVIEW_SIZE_EXTRA_SMALL),
|
||||
PREVIEW_SIZE (N_("/Preview Size/Small"), GIMP_PREVIEW_SIZE_SMALL),
|
||||
PREVIEW_SIZE (N_("/Preview Size/Medium"), GIMP_PREVIEW_SIZE_MEDIUM),
|
||||
PREVIEW_SIZE (N_("/Preview Size/Large"), GIMP_PREVIEW_SIZE_LARGE),
|
||||
PREVIEW_SIZE (N_("/Preview Size/Extra Large"), GIMP_PREVIEW_SIZE_EXTRA_LARGE),
|
||||
PREVIEW_SIZE (N_("/Preview Size/Huge"), GIMP_PREVIEW_SIZE_HUGE),
|
||||
PREVIEW_SIZE (N_("/Preview Size/Enormous"), GIMP_PREVIEW_SIZE_ENORMOUS),
|
||||
PREVIEW_SIZE (N_("/Preview Size/Gigantic"), GIMP_PREVIEW_SIZE_GIGANTIC),
|
||||
PREVIEW_SIZE (N_("/Preview Size/E_xtra Small"), GIMP_PREVIEW_SIZE_EXTRA_SMALL),
|
||||
PREVIEW_SIZE (N_("/Preview Size/_Small"), GIMP_PREVIEW_SIZE_SMALL),
|
||||
PREVIEW_SIZE (N_("/Preview Size/_Medium"), GIMP_PREVIEW_SIZE_MEDIUM),
|
||||
PREVIEW_SIZE (N_("/Preview Size/_Large"), GIMP_PREVIEW_SIZE_LARGE),
|
||||
PREVIEW_SIZE (N_("/Preview Size/Ex_tra Large"), GIMP_PREVIEW_SIZE_EXTRA_LARGE),
|
||||
PREVIEW_SIZE (N_("/Preview Size/_Huge"), GIMP_PREVIEW_SIZE_HUGE),
|
||||
PREVIEW_SIZE (N_("/Preview Size/_Enormous"), GIMP_PREVIEW_SIZE_ENORMOUS),
|
||||
PREVIEW_SIZE (N_("/Preview Size/_Gigantic"), GIMP_PREVIEW_SIZE_GIGANTIC),
|
||||
|
||||
MENU_BRANCH ("/Tab Style"),
|
||||
MENU_BRANCH ("/_Tab Style"),
|
||||
|
||||
{ { N_("/Tab Style/Icon"), NULL,
|
||||
{ { N_("/Tab Style/_Icon"), NULL,
|
||||
dialogs_tab_style_cmd_callback,
|
||||
GIMP_TAB_STYLE_ICON, "<RadioItem>" },
|
||||
NULL, NULL, NULL },
|
||||
|
||||
TAB_STYLE (N_("/Tab Style/Text"), GIMP_TAB_STYLE_NAME),
|
||||
TAB_STYLE (N_("/Tab Style/Icon & Text"), GIMP_TAB_STYLE_ICON_NAME),
|
||||
TAB_STYLE (N_("/Tab Style/_Text"), GIMP_TAB_STYLE_NAME),
|
||||
TAB_STYLE (N_("/Tab Style/I_con & Text"), GIMP_TAB_STYLE_ICON_NAME),
|
||||
|
||||
{ { N_("/View as List"), NULL,
|
||||
{ { N_("/View as _List"), NULL,
|
||||
dialogs_toggle_view_cmd_callback, GIMP_VIEW_TYPE_LIST, "<RadioItem>" },
|
||||
NULL, NULL, NULL },
|
||||
{ { N_("/View as Grid"), NULL,
|
||||
{ { N_("/View as _Grid"), NULL,
|
||||
dialogs_toggle_view_cmd_callback, GIMP_VIEW_TYPE_GRID, "/View as List" },
|
||||
NULL, NULL, NULL },
|
||||
|
||||
MENU_SEPARATOR ("/image-menu-separator"),
|
||||
|
||||
{ { N_("/Show Image Menu"), NULL,
|
||||
{ { N_("/Show Image _Menu"), NULL,
|
||||
dialogs_toggle_image_menu_cmd_callback, 0, "<ToggleItem>" },
|
||||
NULL, NULL, NULL },
|
||||
{ { N_("/Auto Follow Active Image"), NULL,
|
||||
{ { N_("/Auto Follow Active _Image"), NULL,
|
||||
dialogs_toggle_auto_cmd_callback, 0, "<ToggleItem>" },
|
||||
NULL, NULL, NULL }
|
||||
};
|
||||
|
|
|
@ -39,34 +39,34 @@
|
|||
|
||||
GimpItemFactoryEntry documents_menu_entries[] =
|
||||
{
|
||||
{ { N_("/Open Image"), "",
|
||||
{ { N_("/_Open Image"), "",
|
||||
documents_open_document_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_OPEN },
|
||||
NULL, NULL, NULL },
|
||||
{ { N_("/Raise or Open Image"), "",
|
||||
{ { N_("/_Raise or Open Image"), "",
|
||||
documents_raise_or_open_document_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_OPEN },
|
||||
NULL, NULL, NULL },
|
||||
{ { N_("/File Open Dialog..."), "",
|
||||
{ { N_("/File Open _Dialog..."), "",
|
||||
documents_file_open_dialog_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_OPEN },
|
||||
NULL, NULL, NULL },
|
||||
{ { N_("/Remove Entry"), NULL,
|
||||
{ { N_("/Remove _Entry"), NULL,
|
||||
documents_remove_document_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_REMOVE },
|
||||
NULL, NULL, NULL },
|
||||
|
||||
MENU_SEPARATOR ("/---"),
|
||||
|
||||
{ { N_("/Recreate Preview"), NULL,
|
||||
{ { N_("/Recreate _Preview"), NULL,
|
||||
documents_recreate_preview_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_REFRESH },
|
||||
NULL, NULL, NULL },
|
||||
{ { N_("/Reload all Previews"), NULL,
|
||||
{ { N_("/Reload _all Previews"), NULL,
|
||||
documents_reload_previews_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_REFRESH },
|
||||
NULL, NULL, NULL },
|
||||
{ { N_("/Remove Dangling Entries"), NULL,
|
||||
{ { N_("/Remove Dangling E_ntries"), NULL,
|
||||
documents_delete_dangling_documents_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_REFRESH },
|
||||
NULL, NULL, NULL },
|
||||
|
|
|
@ -35,18 +35,18 @@
|
|||
|
||||
GimpItemFactoryEntry error_console_menu_entries[] =
|
||||
{
|
||||
{ { N_("/Clear Errors"), "",
|
||||
{ { N_("/_Clear Errors"), "",
|
||||
error_console_clear_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_CLEAR },
|
||||
NULL, NULL, NULL },
|
||||
|
||||
{ { "/---", NULL, NULL, 0, "<Separator>", NULL }, NULL, NULL, NULL },
|
||||
|
||||
{ { N_("/Save all Errors to File..."), "",
|
||||
{ { N_("/Save _All Errors to File..."), "",
|
||||
error_console_save_all_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_SAVE_AS },
|
||||
NULL, NULL, NULL },
|
||||
{ { N_("/Save Selection to File..."), "",
|
||||
{ { N_("/Save _Selection to File..."), "",
|
||||
error_console_save_selection_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_SAVE_AS },
|
||||
NULL, NULL, NULL }
|
||||
|
@ -70,8 +70,8 @@ error_console_menu_update (GtkItemFactory *factory,
|
|||
#define SET_SENSITIVE(menu,condition) \
|
||||
gimp_item_factory_set_sensitive (factory, menu, (condition) != 0)
|
||||
|
||||
SET_SENSITIVE ("/Clear Console", TRUE);
|
||||
SET_SENSITIVE ("/Save all Errors to File...", TRUE);
|
||||
SET_SENSITIVE ("/Clear Errors", TRUE);
|
||||
SET_SENSITIVE ("/Save All Errors to File...", TRUE);
|
||||
SET_SENSITIVE ("/Save Selection to File...", selection);
|
||||
|
||||
#undef SET_SENSITIVE
|
||||
|
|
|
@ -55,24 +55,26 @@
|
|||
|
||||
GimpItemFactoryEntry gradient_editor_menu_entries[] =
|
||||
{
|
||||
{ { N_("/Left Endpoint's Color..."), NULL,
|
||||
{ { N_("/L_eft Endpoint's Color..."), NULL,
|
||||
gradient_editor_left_color_cmd_callback, 0 },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
|
||||
{ { N_("/Load Left Color From/Left Neighbor's Right Endpoint"), NULL,
|
||||
MENU_BRANCH (N_("/_Load Left Color From")),
|
||||
|
||||
{ { N_("/Load Left Color From/_Left Neighbor's Right Endpoint"), NULL,
|
||||
gradient_editor_load_left_cmd_callback, 0 },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/Load Left Color From/Right Endpoint"), NULL,
|
||||
{ { N_("/Load Left Color From/_Right Endpoint"), NULL,
|
||||
gradient_editor_load_left_cmd_callback, 1 },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/Load Left Color From/FG Color"), NULL,
|
||||
{ { N_("/Load Left Color From/_FG Color"), NULL,
|
||||
gradient_editor_load_left_cmd_callback, 2 },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/Load Left Color From/BG Color"), NULL,
|
||||
{ { N_("/Load Left Color From/_BG Color"), NULL,
|
||||
gradient_editor_load_left_cmd_callback, 3 },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
|
@ -90,7 +92,7 @@ GimpItemFactoryEntry gradient_editor_menu_entries[] =
|
|||
LOAD_LEFT_FROM ("09", 12),
|
||||
LOAD_LEFT_FROM ("10", 13),
|
||||
|
||||
MENU_BRANCH (N_("/Save Left Color To")),
|
||||
MENU_BRANCH (N_("/_Save Left Color To")),
|
||||
|
||||
SAVE_LEFT_TO ("01", 0),
|
||||
SAVE_LEFT_TO ("02", 1),
|
||||
|
@ -105,24 +107,26 @@ GimpItemFactoryEntry gradient_editor_menu_entries[] =
|
|||
|
||||
MENU_SEPARATOR ("/---"),
|
||||
|
||||
{ { N_("/Right Endpoint's Color..."), NULL,
|
||||
{ { N_("/R_ight Endpoint's Color..."), NULL,
|
||||
gradient_editor_right_color_cmd_callback, 0 },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
|
||||
{ { N_("/Load Right Color From/Right Neighbor's Left Endpoint"), NULL,
|
||||
MENU_BRANCH (N_("/Load Right Color Fr_om")),
|
||||
|
||||
{ { N_("/Load Right Color From/_Right Neighbor's Left Endpoint"), NULL,
|
||||
gradient_editor_load_right_cmd_callback, 0 },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/Load Right Color From/Left Endpoint"), NULL,
|
||||
{ { N_("/Load Right Color From/_Left Endpoint"), NULL,
|
||||
gradient_editor_load_right_cmd_callback, 1 },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/Load Right Color From/FG Color"), NULL,
|
||||
{ { N_("/Load Right Color From/_FG Color"), NULL,
|
||||
gradient_editor_load_right_cmd_callback, 2 },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/Load Right Color From/BG Color"), NULL,
|
||||
{ { N_("/Load Right Color From/_BG Color"), NULL,
|
||||
gradient_editor_load_right_cmd_callback, 3 },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
|
@ -140,7 +144,7 @@ GimpItemFactoryEntry gradient_editor_menu_entries[] =
|
|||
LOAD_RIGHT_FROM ("09", 12),
|
||||
LOAD_RIGHT_FROM ("10", 13),
|
||||
|
||||
MENU_BRANCH (N_("/Save Right Color To")),
|
||||
MENU_BRANCH (N_("/Sa_ve Right Color To")),
|
||||
|
||||
SAVE_RIGHT_TO ("01", 0),
|
||||
SAVE_RIGHT_TO ("02", 1),
|
||||
|
@ -155,27 +159,27 @@ GimpItemFactoryEntry gradient_editor_menu_entries[] =
|
|||
|
||||
MENU_SEPARATOR ("/---"),
|
||||
|
||||
{ { N_("/blendingfunction/Linear"), NULL,
|
||||
{ { N_("/blendingfunction/_Linear"), NULL,
|
||||
gradient_editor_blending_func_cmd_callback,
|
||||
GIMP_GRAD_LINEAR, "<RadioItem>" },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/blendingfunction/Curved"), NULL,
|
||||
{ { N_("/blendingfunction/_Curved"), NULL,
|
||||
gradient_editor_blending_func_cmd_callback,
|
||||
GIMP_GRAD_CURVED, "/blendingfunction/Linear" },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/blendingfunction/Sinusodial"), NULL,
|
||||
{ { N_("/blendingfunction/_Sinusodial"), NULL,
|
||||
gradient_editor_blending_func_cmd_callback,
|
||||
GIMP_GRAD_SINE, "/blendingfunction/Linear" },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/blendingfunction/Spherical (increasing)"), NULL,
|
||||
{ { N_("/blendingfunction/Spherical (i_ncreasing)"), NULL,
|
||||
gradient_editor_blending_func_cmd_callback,
|
||||
GIMP_GRAD_SPHERE_INCREASING, "/blendingfunction/Linear" },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/blendingfunction/Spherical (decreasing)"), NULL,
|
||||
{ { N_("/blendingfunction/Spherical (_decreasing)"), NULL,
|
||||
gradient_editor_blending_func_cmd_callback,
|
||||
GIMP_GRAD_SPHERE_DECREASING, "/blendingfunction/Linear" },
|
||||
NULL,
|
||||
|
@ -185,17 +189,17 @@ GimpItemFactoryEntry gradient_editor_menu_entries[] =
|
|||
NULL,
|
||||
NULL, NULL },
|
||||
|
||||
{ { N_("/coloringtype/RGB"), NULL,
|
||||
{ { N_("/coloringtype/_RGB"), NULL,
|
||||
gradient_editor_coloring_type_cmd_callback,
|
||||
GIMP_GRAD_RGB, "<RadioItem>" },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/coloringtype/HSV (counter-clockwise hue)"), NULL,
|
||||
{ { N_("/coloringtype/HSV (_counter-clockwise hue)"), NULL,
|
||||
gradient_editor_coloring_type_cmd_callback,
|
||||
GIMP_GRAD_HSV_CCW, "/coloringtype/RGB" },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/coloringtype/HSV (clockwise hue)"), NULL,
|
||||
{ { N_("/coloringtype/HSV (clockwise _hue)"), NULL,
|
||||
gradient_editor_coloring_type_cmd_callback,
|
||||
GIMP_GRAD_HSV_CW, "/coloringtype/RGB" },
|
||||
NULL,
|
||||
|
@ -238,11 +242,11 @@ GimpItemFactoryEntry gradient_editor_menu_entries[] =
|
|||
|
||||
MENU_SEPARATOR ("/---"),
|
||||
|
||||
{ { N_("/Blend Endpoints' Colors"), "B",
|
||||
{ { N_("/Ble_nd Endpoints' Colors"), "B",
|
||||
gradient_editor_blend_color_cmd_callback, 0 },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/Blend Endpoints' Opacity"), "<control>B",
|
||||
{ { N_("/Blend Endpoints' Opacit_y"), "<control>B",
|
||||
gradient_editor_blend_opacity_cmd_callback, 0 },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
|
@ -387,29 +391,29 @@ gradient_editor_menu_update (GtkItemFactory *factory,
|
|||
|
||||
if (! selection)
|
||||
{
|
||||
SET_LABEL ("/blendingfunction", _("Blending Function for Segment"));
|
||||
SET_LABEL ("/coloringtype", _("Coloring Type for Segment"));
|
||||
SET_LABEL ("/blendingfunction", _("_Blending Function for Segment"));
|
||||
SET_LABEL ("/coloringtype", _("Coloring _Type for Segment"));
|
||||
|
||||
SET_LABEL ("/flip", _("Flip Segment"));
|
||||
SET_LABEL ("/replicate", _("Replicate Segment..."));
|
||||
SET_LABEL ("/splitmidpoint", _("Split Segment at Midpoint"));
|
||||
SET_LABEL ("/splituniformly", _("Split Segment Uniformly..."));
|
||||
SET_LABEL ("/delete", _("Delete Segment"));
|
||||
SET_LABEL ("/recenter", _("Re-center Segment's Midpoint"));
|
||||
SET_LABEL ("/redistribute", _("Re-distribute Handles in Segment"));
|
||||
SET_LABEL ("/flip", _("_Flip Segment"));
|
||||
SET_LABEL ("/replicate", _("_Replicate Segment..."));
|
||||
SET_LABEL ("/splitmidpoint", _("Split Segment at _Midpoint"));
|
||||
SET_LABEL ("/splituniformly", _("Split Segment _Uniformly..."));
|
||||
SET_LABEL ("/delete", _("_Delete Segment"));
|
||||
SET_LABEL ("/recenter", _("Re-_center Segment's Midpoint"));
|
||||
SET_LABEL ("/redistribute", _("Re-distribute _Handles in Segment"));
|
||||
}
|
||||
else
|
||||
{
|
||||
SET_LABEL ("/blendingfunction", _("Blending Function for Selection"));
|
||||
SET_LABEL ("/coloringtype", _("Coloring Type for Selection"));
|
||||
SET_LABEL ("/blendingfunction", _("_Blending Function for Selection"));
|
||||
SET_LABEL ("/coloringtype", _("Coloring _Type for Selection"));
|
||||
|
||||
SET_LABEL ("/flip", _("Flip Selection"));
|
||||
SET_LABEL ("/replicate", _("Replicate Selection..."));
|
||||
SET_LABEL ("/splitmidpoint", _("Split Segments at Midpoints"));
|
||||
SET_LABEL ("/splituniformly", _("Split Segments Uniformly..."));
|
||||
SET_LABEL ("/delete", _("Delete Selection"));
|
||||
SET_LABEL ("/recenter", _("Re-center Midpoints in Selection"));
|
||||
SET_LABEL ("/redistribute", _("Re-distribute Handles in Selection"));
|
||||
SET_LABEL ("/flip", _("_Flip Selection"));
|
||||
SET_LABEL ("/replicate", _("_Replicate Selection..."));
|
||||
SET_LABEL ("/splitmidpoint", _("Split Segments at _Midpoints"));
|
||||
SET_LABEL ("/splituniformly", _("Split Segments _Uniformly..."));
|
||||
SET_LABEL ("/delete", _("_Delete Selection"));
|
||||
SET_LABEL ("/recenter", _("Re-_center Midpoints in Selection"));
|
||||
SET_LABEL ("/redistribute", _("Re-distribute _Handles in Selection"));
|
||||
}
|
||||
|
||||
SET_SENSITIVE ("/blendingfunction/(Varies)", FALSE);
|
||||
|
|
|
@ -42,22 +42,22 @@
|
|||
|
||||
GimpItemFactoryEntry gradients_menu_entries[] =
|
||||
{
|
||||
{ { N_("/New Gradient"), NULL,
|
||||
{ { N_("/_New Gradient"), NULL,
|
||||
data_new_data_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_NEW },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/Duplicate Gradient"), NULL,
|
||||
{ { N_("/D_uplicate Gradient"), NULL,
|
||||
data_duplicate_data_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_DUPLICATE },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/Edit Gradient..."), NULL,
|
||||
{ { N_("/_Edit Gradient..."), NULL,
|
||||
data_edit_data_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_EDIT },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/Delete Gradient..."), NULL,
|
||||
{ { N_("/_Delete Gradient..."), NULL,
|
||||
data_delete_data_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_DELETE },
|
||||
NULL,
|
||||
|
@ -65,7 +65,7 @@ GimpItemFactoryEntry gradients_menu_entries[] =
|
|||
|
||||
MENU_SEPARATOR ("/---"),
|
||||
|
||||
{ { N_("/Refresh Gradients"), NULL,
|
||||
{ { N_("/_Refresh Gradients"), NULL,
|
||||
data_refresh_data_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_REFRESH },
|
||||
NULL,
|
||||
|
@ -73,7 +73,7 @@ GimpItemFactoryEntry gradients_menu_entries[] =
|
|||
|
||||
MENU_SEPARATOR ("/---"),
|
||||
|
||||
{ { N_("/Save as POV-Ray..."), NULL,
|
||||
{ { N_("/Save as _POV-Ray..."), NULL,
|
||||
gradients_save_as_pov_ray_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_SAVE_AS },
|
||||
NULL,
|
||||
|
|
|
@ -39,15 +39,15 @@
|
|||
|
||||
GimpItemFactoryEntry images_menu_entries[] =
|
||||
{
|
||||
{ { N_("/Raise Displays"), NULL,
|
||||
{ { N_("/_Raise Displays"), NULL,
|
||||
images_raise_displays_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_GOTO_TOP },
|
||||
NULL, NULL, NULL },
|
||||
{ { N_("/New Display"), NULL,
|
||||
{ { N_("/_New Display"), NULL,
|
||||
images_new_display_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_NEW },
|
||||
NULL, NULL, NULL },
|
||||
{ { N_("/Delete Image"), NULL,
|
||||
{ { N_("/_Delete Image"), NULL,
|
||||
images_delete_image_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_DELETE },
|
||||
NULL, NULL, NULL }
|
||||
|
|
|
@ -40,49 +40,49 @@
|
|||
|
||||
GimpItemFactoryEntry layers_menu_entries[] =
|
||||
{
|
||||
{ { N_("/New Layer..."), "<control>N",
|
||||
{ { N_("/_New Layer..."), "<control>N",
|
||||
layers_new_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_NEW },
|
||||
NULL,
|
||||
"dialogs/new_layer.html", NULL },
|
||||
|
||||
{ { N_("/Raise Layer"), "<control>F",
|
||||
{ { N_("/_Raise Layer"), "<control>F",
|
||||
layers_raise_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_GO_UP },
|
||||
NULL,
|
||||
"stack/stack.html#raise_layer", NULL },
|
||||
{ { N_("/Layer to Top"), "<control><shift>F",
|
||||
{ { N_("/Layer to _Top"), "<control><shift>F",
|
||||
layers_raise_to_top_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_GOTO_TOP },
|
||||
NULL,
|
||||
"stack/stack.html#later_to_top", NULL },
|
||||
{ { N_("/Lower Layer"), "<control>B",
|
||||
{ { N_("/_Lower Layer"), "<control>B",
|
||||
layers_lower_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_GO_DOWN },
|
||||
NULL,
|
||||
"stack/stack.html#lower_layer", NULL },
|
||||
{ { N_("/Layer to Bottom"), "<control><shift>B",
|
||||
{ { N_("/Layer to _Bottom"), "<control><shift>B",
|
||||
layers_lower_to_bottom_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_GOTO_BOTTOM },
|
||||
NULL,
|
||||
"stack/stack.html#layer_to_bottom", NULL },
|
||||
|
||||
{ { N_("/Duplicate Layer"), "<control>C",
|
||||
{ { N_("/D_uplicate Layer"), "<control>C",
|
||||
layers_duplicate_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_DUPLICATE },
|
||||
NULL,
|
||||
"duplicate_layer.html", NULL },
|
||||
{ { N_("/Anchor Layer"), "<control>H",
|
||||
{ { N_("/_Anchor Layer"), "<control>H",
|
||||
layers_anchor_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_ANCHOR },
|
||||
NULL,
|
||||
"anchor_layer.html", NULL },
|
||||
{ { N_("/Merge Down"), "<control><shift>M",
|
||||
{ { N_("/Merge Do_wn"), "<control><shift>M",
|
||||
layers_merge_down_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_MERGE_DOWN },
|
||||
NULL,
|
||||
"merge_down.html", NULL },
|
||||
{ { N_("/Delete Layer"), "<control>X",
|
||||
{ { N_("/_Delete Layer"), "<control>X",
|
||||
layers_delete_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_DELETE },
|
||||
NULL,
|
||||
|
@ -90,17 +90,17 @@ GimpItemFactoryEntry layers_menu_entries[] =
|
|||
|
||||
MENU_SEPARATOR ("/---"),
|
||||
|
||||
{ { N_("/Layer Boundary Size..."), "<control>R",
|
||||
{ { N_("/Layer B_oundary Size..."), "<control>R",
|
||||
layers_resize_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_RESIZE },
|
||||
NULL,
|
||||
"dialogs/layer_boundary_size.html", NULL },
|
||||
{ { N_("/Layer to Imagesize"), NULL,
|
||||
{ { N_("/Layer to _Imagesize"), NULL,
|
||||
layers_resize_to_image_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_LAYER_TO_IMAGESIZE },
|
||||
NULL,
|
||||
"layer_to_image_size.html", NULL },
|
||||
{ { N_("/Scale Layer..."), "<control>S",
|
||||
{ { N_("/_Scale Layer..."), "<control>S",
|
||||
layers_scale_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_SCALE },
|
||||
NULL,
|
||||
|
@ -108,20 +108,20 @@ GimpItemFactoryEntry layers_menu_entries[] =
|
|||
|
||||
MENU_SEPARATOR ("/---"),
|
||||
|
||||
{ { N_("/Add Layer Mask..."), NULL,
|
||||
{ { N_("/Add La_yer Mask..."), NULL,
|
||||
layers_add_layer_mask_cmd_callback, 0 },
|
||||
NULL,
|
||||
"dialogs/add_layer_mask.html", NULL },
|
||||
{ { N_("/Apply Layer Mask"), NULL,
|
||||
{ { N_("/Apply Layer _Mask"), NULL,
|
||||
layers_apply_layer_mask_cmd_callback, 0 },
|
||||
NULL,
|
||||
"apply_mask.html", NULL },
|
||||
{ { N_("/Delete Layer Mask"), NULL,
|
||||
{ { N_("/Delete Layer Mas_k"), NULL,
|
||||
layers_delete_layer_mask_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_DELETE },
|
||||
NULL,
|
||||
"delete_mask.html", NULL },
|
||||
{ { N_("/Mask to Selection"), NULL,
|
||||
{ { N_("/Mask to Sele_ction"), NULL,
|
||||
layers_mask_select_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_SELECTION_REPLACE },
|
||||
NULL,
|
||||
|
@ -129,11 +129,11 @@ GimpItemFactoryEntry layers_menu_entries[] =
|
|||
|
||||
MENU_SEPARATOR ("/---"),
|
||||
|
||||
{ { N_("/Add Alpha Channel"), NULL,
|
||||
{ { N_("/Add Alpha C_hannel"), NULL,
|
||||
layers_add_alpha_channel_cmd_callback, 0 },
|
||||
NULL,
|
||||
"add_alpha_channel.html", NULL },
|
||||
{ { N_("/Alpha to Selection"), NULL,
|
||||
{ { N_("/Al_pha to Selection"), NULL,
|
||||
layers_alpha_select_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_SELECTION_REPLACE },
|
||||
NULL,
|
||||
|
@ -141,7 +141,7 @@ GimpItemFactoryEntry layers_menu_entries[] =
|
|||
|
||||
MENU_SEPARATOR ("/---"),
|
||||
|
||||
{ { N_("/Edit Layer Attributes..."), NULL,
|
||||
{ { N_("/_Edit Layer Attributes..."), NULL,
|
||||
layers_edit_attributes_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_EDIT },
|
||||
NULL,
|
||||
|
|
|
@ -35,30 +35,30 @@
|
|||
|
||||
GimpItemFactoryEntry palette_editor_menu_entries[] =
|
||||
{
|
||||
{ { N_("/New Color"), "",
|
||||
{ { N_("/_New Color"), "",
|
||||
palette_editor_new_color_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_NEW },
|
||||
NULL, NULL, NULL },
|
||||
{ { N_("/Edit Color..."), "",
|
||||
{ { N_("/_Edit Color..."), "",
|
||||
palette_editor_edit_color_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_EDIT },
|
||||
NULL, NULL, NULL },
|
||||
{ { N_("/Delete Color"), "",
|
||||
{ { N_("/_Delete Color"), "",
|
||||
palette_editor_delete_color_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_DELETE },
|
||||
NULL, NULL, NULL },
|
||||
|
||||
{ { "/---", NULL, NULL, 0, "<Separator>", NULL }, NULL, NULL, NULL },
|
||||
|
||||
{ { N_("/Zoom Out"), "",
|
||||
{ { N_("/Zoom _Out"), "",
|
||||
palette_editor_zoom_out_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_ZOOM_OUT },
|
||||
NULL, NULL, NULL },
|
||||
{ { N_("/Zoom In"), "",
|
||||
{ { N_("/Zoom _In"), "",
|
||||
palette_editor_zoom_in_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_ZOOM_IN },
|
||||
NULL, NULL, NULL },
|
||||
{ { N_("/Zoom All"), "",
|
||||
{ { N_("/Zoom _All"), "",
|
||||
palette_editor_zoom_all_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_ZOOM_FIT },
|
||||
NULL, NULL, NULL }
|
||||
|
|
|
@ -42,22 +42,22 @@
|
|||
|
||||
GimpItemFactoryEntry palettes_menu_entries[] =
|
||||
{
|
||||
{ { N_("/New Palette"), NULL,
|
||||
{ { N_("/_New Palette"), NULL,
|
||||
data_new_data_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_NEW },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/Duplicate Palette"), NULL,
|
||||
{ { N_("/D_uplicate Palette"), NULL,
|
||||
data_duplicate_data_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_DUPLICATE },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/Edit Palette..."), NULL,
|
||||
{ { N_("/_Edit Palette..."), NULL,
|
||||
data_edit_data_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_EDIT },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/Delete Palette..."), NULL,
|
||||
{ { N_("/_Delete Palette..."), NULL,
|
||||
data_delete_data_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_DELETE },
|
||||
NULL,
|
||||
|
@ -65,7 +65,7 @@ GimpItemFactoryEntry palettes_menu_entries[] =
|
|||
|
||||
MENU_SEPARATOR ("/---"),
|
||||
|
||||
{ { N_("/Refresh Palettes"), NULL,
|
||||
{ { N_("/_Refresh Palettes"), NULL,
|
||||
data_refresh_data_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_REFRESH },
|
||||
NULL,
|
||||
|
@ -73,12 +73,12 @@ GimpItemFactoryEntry palettes_menu_entries[] =
|
|||
|
||||
MENU_SEPARATOR ("/---"),
|
||||
|
||||
{ { N_("/Import Palette..."), NULL,
|
||||
{ { N_("/_Import Palette..."), NULL,
|
||||
palettes_import_palette_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_CONVERT },
|
||||
NULL,
|
||||
NULL, NULL },
|
||||
{ { N_("/Merge Palettes..."), NULL,
|
||||
{ { N_("/_Merge Palettes..."), NULL,
|
||||
palettes_merge_palettes_cmd_callback, 0 },
|
||||
NULL,
|
||||
NULL, NULL }
|
||||
|
|
|
@ -257,7 +257,7 @@ plug_in_menus_delete_entry (const gchar *menu_path)
|
|||
|
||||
g_return_if_fail (menu_path != NULL);
|
||||
|
||||
path = gimp_menu_path_strip_uline (menu_path);
|
||||
path = gimp_strip_uline (menu_path);
|
||||
|
||||
for (list = gimp_item_factories_from_path (menu_path);
|
||||
list;
|
||||
|
@ -327,7 +327,7 @@ plug_in_menus_update (GimpItemFactory *item_factory,
|
|||
{
|
||||
gchar *menu_path;
|
||||
|
||||
menu_path = gimp_menu_path_strip_uline (proc_def->menu_path);
|
||||
menu_path = gimp_strip_uline (proc_def->menu_path);
|
||||
|
||||
gimp_item_factory_set_sensitive (GTK_ITEM_FACTORY (item_factory),
|
||||
menu_path,
|
||||
|
@ -354,7 +354,7 @@ plug_in_menus_update (GimpItemFactory *item_factory,
|
|||
progname, NULL),
|
||||
proc_def->menu_path);
|
||||
|
||||
stripped = gimp_menu_path_strip_uline (path);
|
||||
stripped = gimp_strip_uline (path);
|
||||
basename = g_path_get_basename (stripped);
|
||||
|
||||
g_free (stripped);
|
||||
|
|
|
@ -40,22 +40,22 @@
|
|||
|
||||
GimpItemFactoryEntry qmask_menu_entries[] =
|
||||
{
|
||||
{ { N_("/QMask Active"), NULL,
|
||||
{ { N_("/_QMask Active"), NULL,
|
||||
qmask_toggle_cmd_callback, 0, "<ToggleItem>" },
|
||||
NULL, NULL, NULL },
|
||||
|
||||
MENU_SEPARATOR ("/---"),
|
||||
|
||||
{ { N_("/Mask Selected Areas"), NULL,
|
||||
{ { N_("/Mask _Selected Areas"), NULL,
|
||||
qmask_invert_cmd_callback, TRUE, "<RadioItem>" },
|
||||
NULL, NULL, NULL },
|
||||
{ { N_("/Mask Unselected Areas"), NULL,
|
||||
{ { N_("/Mask _Unselected Areas"), NULL,
|
||||
qmask_invert_cmd_callback, FALSE, "/Mask Selected Areas" },
|
||||
NULL, NULL, NULL },
|
||||
|
||||
MENU_SEPARATOR ("/---"),
|
||||
|
||||
{ { N_("/Configure Color and Opacity..."), NULL,
|
||||
{ { N_("/_Configure Color and Opacity..."), NULL,
|
||||
qmask_configure_cmd_callback, 0 },
|
||||
NULL, NULL, NULL }
|
||||
};
|
||||
|
|
|
@ -39,23 +39,23 @@
|
|||
|
||||
GimpItemFactoryEntry templates_menu_entries[] =
|
||||
{
|
||||
{ { N_("/New Template..."), "",
|
||||
{ { N_("/_New Template..."), "",
|
||||
templates_new_template_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_NEW },
|
||||
NULL, NULL, NULL },
|
||||
{ { N_("/Duplicate Template..."), "",
|
||||
{ { N_("/D_uplicate Template..."), "",
|
||||
templates_duplicate_template_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_DUPLICATE },
|
||||
NULL, NULL, NULL },
|
||||
{ { N_("/Edit Template..."), "",
|
||||
{ { N_("/_Edit Template..."), "",
|
||||
templates_edit_template_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_EDIT },
|
||||
NULL, NULL, NULL },
|
||||
{ { N_("/Create Image from Template..."), "",
|
||||
{ { N_("/_Create Image from Template..."), "",
|
||||
templates_create_image_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_IMAGE },
|
||||
NULL, NULL, NULL },
|
||||
{ { N_("/Delete Template..."), "",
|
||||
{ { N_("/_Delete Template..."), "",
|
||||
templates_delete_template_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_DELETE },
|
||||
NULL, NULL, NULL }
|
||||
|
|
|
@ -40,22 +40,22 @@
|
|||
|
||||
GimpItemFactoryEntry vectors_menu_entries[] =
|
||||
{
|
||||
{ { N_("/New Path..."), "<control>N",
|
||||
{ { N_("/_New Path..."), "<control>N",
|
||||
vectors_new_vectors_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_NEW },
|
||||
NULL,
|
||||
"new_path.html", NULL },
|
||||
{ { N_("/Raise Path"), "<control>F",
|
||||
{ { N_("/_Raise Path"), "<control>F",
|
||||
vectors_raise_vectors_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_GO_UP },
|
||||
NULL,
|
||||
"raise_path.html", NULL },
|
||||
{ { N_("/Lower Path"), "<control>B",
|
||||
{ { N_("/_Lower Path"), "<control>B",
|
||||
vectors_lower_vectors_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_GO_DOWN },
|
||||
NULL,
|
||||
"lower_path.html", NULL },
|
||||
{ { N_("/Duplicate Path"), "<control>U",
|
||||
{ { N_("/D_uplicate Path"), "<control>U",
|
||||
vectors_duplicate_vectors_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_DUPLICATE },
|
||||
NULL,
|
||||
|
@ -63,33 +63,33 @@ GimpItemFactoryEntry vectors_menu_entries[] =
|
|||
|
||||
MENU_SEPARATOR ("/---"),
|
||||
|
||||
{ { N_("/Path to Selection"), "<control>S",
|
||||
{ { N_("/Path to Sele_ction"), "<control>S",
|
||||
vectors_vectors_to_sel_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_SELECTION_REPLACE },
|
||||
NULL,
|
||||
"path_to_selection.html", NULL },
|
||||
{ { N_("/Add to Selection"), NULL,
|
||||
{ { N_("/_Add to Selection"), NULL,
|
||||
vectors_add_vectors_to_sel_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_SELECTION_ADD },
|
||||
NULL,
|
||||
"path_to_selection.html#add", NULL },
|
||||
{ { N_("/Subtract from Selection"), NULL,
|
||||
{ { N_("/_Subtract from Selection"), NULL,
|
||||
vectors_sub_vectors_from_sel_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_SELECTION_SUBTRACT },
|
||||
NULL,
|
||||
"path_to_selection.html#subtract", NULL },
|
||||
{ { N_("/Intersect with Selection"), NULL,
|
||||
{ { N_("/_Intersect with Selection"), NULL,
|
||||
vectors_intersect_vectors_with_sel_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_SELECTION_INTERSECT },
|
||||
NULL,
|
||||
"path_to_selection.html#intersect", NULL },
|
||||
|
||||
{ { N_("/Selection to Path"), "<control>P",
|
||||
{ { N_("/Selecti_on to Path"), "<control>P",
|
||||
vectors_sel_to_vectors_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_SELECTION_TO_PATH },
|
||||
NULL,
|
||||
"filters/sel2path.html", NULL },
|
||||
{ { N_("/Stroke Path"), "<control>T",
|
||||
{ { N_("/Stro_ke Path"), "<control>T",
|
||||
vectors_stroke_vectors_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_PATH_STROKE },
|
||||
NULL,
|
||||
|
@ -97,22 +97,23 @@ GimpItemFactoryEntry vectors_menu_entries[] =
|
|||
|
||||
MENU_SEPARATOR ("/---"),
|
||||
|
||||
{ { N_("/Copy Path"), "<control>C",
|
||||
{ { N_("/Co_py Path"), "<control>C",
|
||||
vectors_copy_vectors_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_COPY },
|
||||
NULL,
|
||||
"copy_path.html", NULL },
|
||||
{ { N_("/Paste Path"), "<control>V",
|
||||
|
||||
{ { N_("/Paste Pat_h"), "<control>V",
|
||||
vectors_paste_vectors_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_PASTE },
|
||||
NULL,
|
||||
"paste_path.html", NULL },
|
||||
{ { N_("/Import Path..."), "<control>I",
|
||||
{ { N_("/I_mport Path..."), "<control>I",
|
||||
vectors_import_vectors_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_OPEN },
|
||||
NULL,
|
||||
"dialogs/import_path.html", NULL },
|
||||
{ { N_("/Export Path..."), "<control>E",
|
||||
{ { N_("/E_xport Path..."), "<control>E",
|
||||
vectors_export_vectors_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_SAVE },
|
||||
NULL,
|
||||
|
@ -120,7 +121,7 @@ GimpItemFactoryEntry vectors_menu_entries[] =
|
|||
|
||||
MENU_SEPARATOR ("/---"),
|
||||
|
||||
{ { N_("/Delete Path"), "<control>X",
|
||||
{ { N_("/_Delete Path"), "<control>X",
|
||||
vectors_delete_vectors_cmd_callback, 0,
|
||||
"<StockItem>", GTK_STOCK_DELETE },
|
||||
NULL,
|
||||
|
@ -128,12 +129,12 @@ GimpItemFactoryEntry vectors_menu_entries[] =
|
|||
|
||||
MENU_SEPARATOR ("/---"),
|
||||
|
||||
{ { N_("/Path Tool"), NULL,
|
||||
{ { N_("/Path _Tool"), NULL,
|
||||
vectors_vectors_tool_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_TOOL_PATH },
|
||||
NULL,
|
||||
"tools/path_tool.html", NULL },
|
||||
{ { N_("/Edit Path Attributes..."), NULL,
|
||||
{ { N_("/_Edit Path Attributes..."), NULL,
|
||||
vectors_edit_vectors_attributes_cmd_callback, 0,
|
||||
"<StockItem>", GIMP_STOCK_EDIT },
|
||||
NULL,
|
||||
|
|
|
@ -257,7 +257,7 @@ plug_in_menus_delete_entry (const gchar *menu_path)
|
|||
|
||||
g_return_if_fail (menu_path != NULL);
|
||||
|
||||
path = gimp_menu_path_strip_uline (menu_path);
|
||||
path = gimp_strip_uline (menu_path);
|
||||
|
||||
for (list = gimp_item_factories_from_path (menu_path);
|
||||
list;
|
||||
|
@ -327,7 +327,7 @@ plug_in_menus_update (GimpItemFactory *item_factory,
|
|||
{
|
||||
gchar *menu_path;
|
||||
|
||||
menu_path = gimp_menu_path_strip_uline (proc_def->menu_path);
|
||||
menu_path = gimp_strip_uline (proc_def->menu_path);
|
||||
|
||||
gimp_item_factory_set_sensitive (GTK_ITEM_FACTORY (item_factory),
|
||||
menu_path,
|
||||
|
@ -354,7 +354,7 @@ plug_in_menus_update (GimpItemFactory *item_factory,
|
|||
progname, NULL),
|
||||
proc_def->menu_path);
|
||||
|
||||
stripped = gimp_menu_path_strip_uline (path);
|
||||
stripped = gimp_strip_uline (path);
|
||||
basename = g_path_get_basename (stripped);
|
||||
|
||||
g_free (stripped);
|
||||
|
|
|
@ -909,7 +909,7 @@ plug_in_get_undo_desc (PlugIn *plug_in)
|
|||
plug_in->prog, NULL),
|
||||
proc_def->menu_path);
|
||||
|
||||
stripped = gimp_menu_path_strip_uline (path);
|
||||
stripped = gimp_strip_uline (path);
|
||||
undo_desc = g_path_get_basename (stripped);
|
||||
g_free (stripped);
|
||||
|
||||
|
|
|
@ -909,7 +909,7 @@ plug_in_get_undo_desc (PlugIn *plug_in)
|
|||
plug_in->prog, NULL),
|
||||
proc_def->menu_path);
|
||||
|
||||
stripped = gimp_menu_path_strip_uline (path);
|
||||
stripped = gimp_strip_uline (path);
|
||||
undo_desc = g_path_get_basename (stripped);
|
||||
g_free (stripped);
|
||||
|
||||
|
|
|
@ -312,7 +312,7 @@ gimp_item_factory_create_item (GimpItemFactory *item_factory,
|
|||
if (textdomain)
|
||||
g_object_set_data (G_OBJECT (item_factory), "textdomain", NULL);
|
||||
|
||||
menu_path = gimp_menu_path_strip_uline (((GtkItemFactoryEntry *) entry)->path);
|
||||
menu_path = gimp_strip_uline (((GtkItemFactoryEntry *) entry)->path);
|
||||
|
||||
menu_item = gtk_item_factory_get_item (GTK_ITEM_FACTORY (item_factory),
|
||||
menu_path);
|
||||
|
|
|
@ -666,7 +666,7 @@ toolbox_create_tools (GimpToolbox *toolbox,
|
|||
GtkWidget *menu_item;
|
||||
gchar *menu_path;
|
||||
|
||||
menu_path = gimp_menu_path_strip_uline (tool_info->menu_path);
|
||||
menu_path = gimp_strip_uline (tool_info->menu_path);
|
||||
|
||||
menu_item =
|
||||
gtk_item_factory_get_widget (GTK_ITEM_FACTORY (item_factory),
|
||||
|
|
|
@ -544,35 +544,3 @@ gimp_rgb_get_gdk_color (const GimpRGB *rgb,
|
|||
gdk_color->green = (g << 8) | g;
|
||||
gdk_color->blue = (b << 8) | b;
|
||||
}
|
||||
|
||||
gchar *
|
||||
gimp_menu_path_strip_uline (const gchar *menu_path)
|
||||
{
|
||||
gchar *escaped;
|
||||
gchar *p;
|
||||
|
||||
if (! menu_path)
|
||||
return NULL;
|
||||
|
||||
p = escaped = g_strdup (menu_path);
|
||||
|
||||
while (*menu_path)
|
||||
{
|
||||
if (*menu_path == '_')
|
||||
{
|
||||
/* "__" means a literal "_" in the menu path */
|
||||
if (menu_path[1] == '_')
|
||||
*p++ = *menu_path++;
|
||||
|
||||
menu_path++;
|
||||
}
|
||||
else
|
||||
{
|
||||
*p++ = *menu_path++;
|
||||
}
|
||||
}
|
||||
|
||||
*p = '\0';
|
||||
|
||||
return escaped;
|
||||
}
|
||||
|
|
|
@ -60,7 +60,5 @@ void gimp_get_screen_resolution (GdkScreen *screen,
|
|||
void gimp_rgb_get_gdk_color (const GimpRGB *rgb,
|
||||
GdkColor *gdk_color);
|
||||
|
||||
gchar * gimp_menu_path_strip_uline (const gchar *menu_path);
|
||||
|
||||
|
||||
#endif /* __GIMP_WIDGETS_UTILS_H__ */
|
||||
|
|
|
@ -126,6 +126,7 @@ gimp_unit_get_plural
|
|||
<FILE>gimputils</FILE>
|
||||
gimp_utf8_strtrim
|
||||
gimp_memsize_to_string
|
||||
gimp_strip_uline
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
|
|
|
@ -33,3 +33,12 @@ Utilities of general interest
|
|||
@Returns:
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gimp_strip_uline ##### -->
|
||||
<para>
|
||||
|
||||
</para>
|
||||
|
||||
@str:
|
||||
@Returns:
|
||||
|
||||
|
||||
|
|
|
@ -140,3 +140,46 @@ gimp_memsize_to_string (gulong memsize)
|
|||
return g_strdup_printf (_("%.1f MB"), (gdouble) memsize / 1024.0);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* gimp_strip_uline:
|
||||
* @str: Underline infested string (or %NULL)
|
||||
*
|
||||
* This function returns a copy of @str stripped of underline
|
||||
* characters. This comes in handy when needing to strip mnemonics
|
||||
* from menu paths etc.
|
||||
*
|
||||
* Return value: A (possibly stripped) copy of @str which should be
|
||||
* freed using g_free() when it is not needed any longer.
|
||||
**/
|
||||
gchar *
|
||||
gimp_strip_uline (const gchar *str)
|
||||
{
|
||||
gchar *escaped;
|
||||
gchar *p;
|
||||
|
||||
if (! str)
|
||||
return NULL;
|
||||
|
||||
p = escaped = g_strdup (str);
|
||||
|
||||
while (*str)
|
||||
{
|
||||
if (*str == '_')
|
||||
{
|
||||
/* "__" means a literal "_" in the menu path */
|
||||
if (str[1] == '_')
|
||||
*p++ = *str++;
|
||||
|
||||
str++;
|
||||
}
|
||||
else
|
||||
{
|
||||
*p++ = *str++;
|
||||
}
|
||||
}
|
||||
|
||||
*p = '\0';
|
||||
|
||||
return escaped;
|
||||
}
|
||||
|
|
|
@ -26,5 +26,7 @@ gchar * gimp_utf8_strtrim (const gchar *str,
|
|||
|
||||
gchar * gimp_memsize_to_string (gulong memsize);
|
||||
|
||||
gchar * gimp_strip_uline (const gchar *str);
|
||||
|
||||
|
||||
#endif /* __GIMP_UTILS_H__ */
|
||||
|
|
|
@ -238,7 +238,7 @@ query (void)
|
|||
"Adam D. Moss <adam@gimp.org>",
|
||||
"Adam D. Moss <adam@gimp.org>",
|
||||
"1997, 1998...",
|
||||
N_("<Image>/Filters/Animation/Animation _Playback..."),
|
||||
N_("<Image>/Filters/Animation/_Playback..."),
|
||||
"RGB*, INDEXED*, GRAY*",
|
||||
GIMP_PLUGIN,
|
||||
G_N_ELEMENTS (args), 0,
|
||||
|
|
|
@ -173,7 +173,7 @@ query (void)
|
|||
"Adam D. Moss <adam@gimp.org>",
|
||||
"Adam D. Moss <adam@gimp.org>",
|
||||
"1997-2001",
|
||||
N_("<Image>/Filters/Animation/Animation _Optimize"),
|
||||
N_("<Image>/Filters/Animation/_Optimize"),
|
||||
"RGB*, INDEXED*, GRAY*",
|
||||
GIMP_PLUGIN,
|
||||
G_N_ELEMENTS (args),
|
||||
|
@ -190,7 +190,7 @@ query (void)
|
|||
"Adam D. Moss <adam@gimp.org>",
|
||||
"Adam D. Moss <adam@gimp.org>",
|
||||
"1997-2001",
|
||||
N_("<Image>/Filters/Animation/Animation _UnOptimize"),
|
||||
N_("<Image>/Filters/Animation/_UnOptimize"),
|
||||
"RGB*, INDEXED*, GRAY*",
|
||||
GIMP_PLUGIN,
|
||||
G_N_ELEMENTS (args),
|
||||
|
@ -205,7 +205,7 @@ query (void)
|
|||
"Adam D. Moss <adam@gimp.org>",
|
||||
"Adam D. Moss <adam@gimp.org>",
|
||||
"2001",
|
||||
N_("<Image>/Filters/Animation/Animation: _Remove Backdrop"),
|
||||
N_("<Image>/Filters/Animation/_Remove Backdrop"),
|
||||
"RGB*, INDEXED*, GRAY*",
|
||||
GIMP_PLUGIN,
|
||||
G_N_ELEMENTS (args),
|
||||
|
@ -221,7 +221,7 @@ query (void)
|
|||
"Adam D. Moss <adam@gimp.org>",
|
||||
"Adam D. Moss <adam@gimp.org>",
|
||||
"2001",
|
||||
N_("<Image>/Filters/Animation/Animation: _Find Backdrop"),
|
||||
N_("<Image>/Filters/Animation/_Find Backdrop"),
|
||||
"RGB*, INDEXED*, GRAY*",
|
||||
GIMP_PLUGIN,
|
||||
G_N_ELEMENTS (args),
|
||||
|
|
|
@ -53,7 +53,7 @@ register(
|
|||
"James Henstridge",
|
||||
"James Henstridge",
|
||||
"1997-1999",
|
||||
"<Image>/Python-Fu/Alchemy/Clothify",
|
||||
"<Image>/Python-Fu/Alchemy/_Clothify",
|
||||
"RGB*, GRAY*",
|
||||
[
|
||||
(PF_INT, "x_blur", "X Blur", 9),
|
||||
|
|
|
@ -34,7 +34,7 @@ register(
|
|||
"James Henstridge",
|
||||
"James Henstridge",
|
||||
"1999",
|
||||
"<Image>/Python-Fu/Effects/Add fog",
|
||||
"<Image>/Python-Fu/Effects/Add _fog",
|
||||
"RGB*, GRAY*",
|
||||
[
|
||||
(PF_STRING, "name", "The new layer name", "Clouds"),
|
||||
|
|
|
@ -43,7 +43,7 @@ register(
|
|||
"James Henstridge",
|
||||
"James Henstridge",
|
||||
"1999",
|
||||
"<Image>/Python-Fu/Effects/Drop Shadow and Bevel",
|
||||
"<Image>/Python-Fu/Effects/_Drop Shadow and Bevel",
|
||||
"RGBA, GRAYA",
|
||||
[
|
||||
(PF_SLIDER, "blur", "Shadow Blur", 6, (1, 30, 1)),
|
||||
|
|
|
@ -203,7 +203,7 @@ register(
|
|||
"James Henstridge (translated from C plugin)",
|
||||
"James Henstridge",
|
||||
"1997-1999",
|
||||
"<Image>/Python-Fu/Distorts/Whirl and Pinch",
|
||||
"<Image>/Python-Fu/Distorts/_Whirl and Pinch",
|
||||
"RGB*, GRAY*",
|
||||
[
|
||||
(PF_SLIDER, "whirl", "Whirl angle", 90, (-360, 360, 1)),
|
||||
|
|
|
@ -1082,6 +1082,7 @@ script_fu_interface (SFScript *script)
|
|||
GtkWidget *hbox;
|
||||
GtkWidget *menu_item;
|
||||
GSList *list;
|
||||
gchar *title;
|
||||
gchar *buf;
|
||||
gint start_args;
|
||||
gint i;
|
||||
|
@ -1112,9 +1113,13 @@ script_fu_interface (SFScript *script)
|
|||
/* strip the first part of the menupath if it contains _("/Script-Fu/") */
|
||||
buf = strstr (gettext (script->description), _("/Script-Fu/"));
|
||||
if (buf)
|
||||
sf_interface->title = g_strdup (buf + strlen (_("/Script-Fu/")));
|
||||
title = g_strdup (buf + strlen (_("/Script-Fu/")));
|
||||
else
|
||||
sf_interface->title = g_strdup (gettext (script->description));
|
||||
title = g_strdup (gettext (script->description));
|
||||
|
||||
/* strip mnemonics from the menupath */
|
||||
sf_interface->title = gimp_strip_uline (title);
|
||||
g_free (title);
|
||||
|
||||
buf = strstr (sf_interface->title, "...");
|
||||
if (buf)
|
||||
|
|
|
@ -1082,6 +1082,7 @@ script_fu_interface (SFScript *script)
|
|||
GtkWidget *hbox;
|
||||
GtkWidget *menu_item;
|
||||
GSList *list;
|
||||
gchar *title;
|
||||
gchar *buf;
|
||||
gint start_args;
|
||||
gint i;
|
||||
|
@ -1112,9 +1113,13 @@ script_fu_interface (SFScript *script)
|
|||
/* strip the first part of the menupath if it contains _("/Script-Fu/") */
|
||||
buf = strstr (gettext (script->description), _("/Script-Fu/"));
|
||||
if (buf)
|
||||
sf_interface->title = g_strdup (buf + strlen (_("/Script-Fu/")));
|
||||
title = g_strdup (buf + strlen (_("/Script-Fu/")));
|
||||
else
|
||||
sf_interface->title = g_strdup (gettext (script->description));
|
||||
title = g_strdup (gettext (script->description));
|
||||
|
||||
/* strip mnemonics from the menupath */
|
||||
sf_interface->title = gimp_strip_uline (title);
|
||||
g_free (title);
|
||||
|
||||
buf = strstr (sf_interface->title, "...");
|
||||
if (buf)
|
||||
|
|
|
@ -117,7 +117,7 @@ script_fu_query (void)
|
|||
"Spencer Kimball & Peter Mattis",
|
||||
"Spencer Kimball & Peter Mattis",
|
||||
"1997",
|
||||
N_("<Toolbox>/Xtns/Script-Fu/Console..."),
|
||||
N_("<Toolbox>/Xtns/Script-Fu/_Console..."),
|
||||
NULL,
|
||||
GIMP_PLUGIN,
|
||||
G_N_ELEMENTS (console_args), 0,
|
||||
|
@ -142,7 +142,7 @@ script_fu_query (void)
|
|||
"Spencer Kimball & Peter Mattis",
|
||||
"Spencer Kimball & Peter Mattis",
|
||||
"1997",
|
||||
N_("<Toolbox>/Xtns/Script-Fu/Server..."),
|
||||
N_("<Toolbox>/Xtns/Script-Fu/_Server..."),
|
||||
NULL,
|
||||
GIMP_PLUGIN,
|
||||
G_N_ELEMENTS (server_args), 0,
|
||||
|
@ -271,7 +271,7 @@ script_fu_auxillary_init (void)
|
|||
"Spencer Kimball & Peter Mattis",
|
||||
"Spencer Kimball & Peter Mattis",
|
||||
"1997",
|
||||
N_("<Toolbox>/Xtns/Script-Fu/Refresh"),
|
||||
N_("<Toolbox>/Xtns/Script-Fu/_Refresh"),
|
||||
NULL,
|
||||
GIMP_TEMPORARY,
|
||||
G_N_ELEMENTS (args), 0,
|
||||
|
|
|
@ -101,7 +101,7 @@
|
|||
(gimp-displays-flush)))
|
||||
|
||||
(script-fu-register "script-fu-3d-outline-logo-alpha"
|
||||
_"<Image>/Script-Fu/Alpha to Logo/3D Outline..."
|
||||
_"<Image>/Script-Fu/Alpha to Logo/3D _Outline..."
|
||||
"Creates outlined texts with drop shadow"
|
||||
"Hrvoje Horvat (hhorvat@open.hr)"
|
||||
"Hrvoje Horvat"
|
||||
|
@ -138,7 +138,7 @@
|
|||
(gimp-display-new img)))
|
||||
|
||||
(script-fu-register "script-fu-3d-outline-logo"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/3D Outline..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/3D _Outline..."
|
||||
"Creates outlined texts with drop shadow"
|
||||
"Hrvoje Horvat (hhorvat@open.hr)"
|
||||
"Hrvoje Horvat"
|
||||
|
|
|
@ -210,7 +210,7 @@
|
|||
)
|
||||
|
||||
(script-fu-register "script-fu-3dtruchet"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Patterns/3D Truchet..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Patterns/3_D Truchet..."
|
||||
"3D Truchet pattern"
|
||||
"Adrian Likins <aklikins@eos.ncsu.edu>"
|
||||
"Adrian Likins"
|
||||
|
|
|
@ -202,7 +202,7 @@
|
|||
)
|
||||
|
||||
(script-fu-register "script-fu-add-bevel"
|
||||
_"<Image>/Script-Fu/Decor/Add Bevel..."
|
||||
_"<Image>/Script-Fu/Decor/Add B_evel..."
|
||||
"Add a bevel to an image"
|
||||
"Andrew Donkin <ard@cs.waikato.ac.nz>"
|
||||
"Andrew Donkin"
|
||||
|
|
|
@ -159,7 +159,7 @@
|
|||
)
|
||||
|
||||
(script-fu-register "script-fu-addborder"
|
||||
_"<Image>/Script-Fu/Decor/Add Border..."
|
||||
_"<Image>/Script-Fu/Decor/Add _Border..."
|
||||
"Add a border around an image"
|
||||
"Andy Thomas <alt@picnic.demon.co.uk>"
|
||||
"Andy Thomas"
|
||||
|
|
|
@ -126,7 +126,7 @@
|
|||
(gimp-display-new img)))
|
||||
|
||||
(script-fu-register "script-fu-alien-glow-right-arrow"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Alien Glow/Arrow..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Alien Glow/_Arrow..."
|
||||
"Create an X-file deal"
|
||||
"Adrian Likins"
|
||||
"Adrian Likins"
|
||||
|
|
|
@ -70,7 +70,7 @@
|
|||
|
||||
|
||||
(script-fu-register "script-fu-alien-glow-horizontal-ruler"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Alien Glow/Hrule..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Alien Glow/_Hrule..."
|
||||
"Create an Hrule with the Alien Glow look"
|
||||
"Adrian Likins"
|
||||
"Adrian Likins"
|
||||
|
|
|
@ -90,7 +90,7 @@
|
|||
(gimp-display-new img)))
|
||||
|
||||
(script-fu-register "script-fu-alien-glow-bullet"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Alien Glow/Bullet..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Alien Glow/_Bullet..."
|
||||
"Create a Bullet with an Alien Glow theme for web pages"
|
||||
"Adrian Likins"
|
||||
"Adrian Likins"
|
||||
|
|
|
@ -130,7 +130,7 @@
|
|||
(gimp-display-new img)))
|
||||
|
||||
(script-fu-register "script-fu-alien-glow-button"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Alien Glow/Button..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Alien Glow/B_utton..."
|
||||
"Button with an eerie glow"
|
||||
"Adrian Likins"
|
||||
"Adrian Likins"
|
||||
|
|
|
@ -52,7 +52,7 @@
|
|||
(gimp-displays-flush)))
|
||||
|
||||
(script-fu-register "script-fu-alien-glow-logo-alpha"
|
||||
_"<Image>/Script-Fu/Alpha to Logo/Alien Glow..."
|
||||
_"<Image>/Script-Fu/Alpha to Logo/Alien _Glow..."
|
||||
"Create an X-Files-esque logo with the specified glow color"
|
||||
"Spencer Kimball"
|
||||
"Spencer Kimball"
|
||||
|
@ -84,7 +84,7 @@
|
|||
(gimp-display-new img)))
|
||||
|
||||
(script-fu-register "script-fu-alien-glow-logo"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/Alien Glow..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/Alien _Glow..."
|
||||
"Create an X-Files-esque logo with the specified glow color"
|
||||
"Spencer Kimball"
|
||||
"Spencer Kimball"
|
||||
|
|
|
@ -115,7 +115,7 @@
|
|||
(gimp-displays-flush)))
|
||||
|
||||
(script-fu-register "script-fu-alien-neon-logo-alpha"
|
||||
_"<Image>/Script-Fu/Alpha to Logo/Alien Neon..."
|
||||
_"<Image>/Script-Fu/Alpha to Logo/Alien _Neon..."
|
||||
"Creates a psychedelic effect with outlines of the specified color around the letters"
|
||||
"Raphael Quinet (quinet@gamers.org)"
|
||||
"Raphael Quinet"
|
||||
|
@ -151,7 +151,7 @@
|
|||
(gimp-display-new img)))
|
||||
|
||||
(script-fu-register "script-fu-alien-neon-logo"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/Alien Neon..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/Alien _Neon..."
|
||||
"Creates a psychedelic effect with outlines of the specified color around the letters"
|
||||
"Raphael Quinet (quinet@gamers.org)"
|
||||
"Raphael Quinet"
|
||||
|
|
|
@ -208,7 +208,7 @@
|
|||
|
||||
(script-fu-register
|
||||
"script-fu-asc-2-img"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Utils/ASCII to Image..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Utils/_ASCII to Image..."
|
||||
"Create a new image containing text from a simple text file"
|
||||
"Chris Gutteridge: cjg@ecs.soton.ac.uk"
|
||||
"8th April 1998"
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
(gimp-displays-flush)))
|
||||
|
||||
(script-fu-register "script-fu-basic1-logo-alpha"
|
||||
_"<Image>/Script-Fu/Alpha to Logo/Basic I..."
|
||||
_"<Image>/Script-Fu/Alpha to Logo/_Basic I..."
|
||||
"Creates a simple logo with a drop shadow"
|
||||
"Spencer Kimball"
|
||||
"Spencer Kimball"
|
||||
|
@ -75,7 +75,7 @@
|
|||
(gimp-display-new img)))
|
||||
|
||||
(script-fu-register "script-fu-basic1-logo"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/Basic I..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/_Basic I..."
|
||||
"Creates a simple logo with a drop shadow"
|
||||
"Spencer Kimball"
|
||||
"Spencer Kimball"
|
||||
|
|
|
@ -68,7 +68,7 @@
|
|||
(gimp-displays-flush)))
|
||||
|
||||
(script-fu-register "script-fu-basic2-logo-alpha"
|
||||
_"<Image>/Script-Fu/Alpha to Logo/Basic II..."
|
||||
_"<Image>/Script-Fu/Alpha to Logo/B_asic II..."
|
||||
"Creates a simple logo with a shadow and a highlight"
|
||||
"Spencer Kimball"
|
||||
"Spencer Kimball"
|
||||
|
@ -94,7 +94,7 @@
|
|||
(gimp-display-new img)))
|
||||
|
||||
(script-fu-register "script-fu-basic2-logo"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/Basic II..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/B_asic II..."
|
||||
"Creates a simple logo with a shadow and a highlight"
|
||||
"Spencer Kimball"
|
||||
"Spencer Kimball"
|
||||
|
|
|
@ -133,7 +133,7 @@
|
|||
(gimp-display-new img)))
|
||||
|
||||
(script-fu-register "script-fu-button00"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Buttons/Simple Beveled Button..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Buttons/Simple _Beveled Button..."
|
||||
"Simple beveled button"
|
||||
"Federico Mena Quintero"
|
||||
"Federico Mena Quintero"
|
||||
|
|
|
@ -134,7 +134,7 @@
|
|||
|
||||
|
||||
(script-fu-register "script-fu-beveled-pattern-arrow"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Arrow..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/_Arrow..."
|
||||
"Beveled pattern arrow"
|
||||
"Federico Mena Quintero"
|
||||
"Federico Mena Quintero"
|
||||
|
|
|
@ -74,7 +74,7 @@
|
|||
|
||||
|
||||
(script-fu-register "script-fu-beveled-pattern-bullet"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Bullet..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/_Bullet..."
|
||||
"Beveled pattern bullet"
|
||||
"Federico Mena Quintero"
|
||||
"Federico Mena Quintero"
|
||||
|
|
|
@ -112,7 +112,7 @@
|
|||
|
||||
|
||||
(script-fu-register "script-fu-beveled-pattern-button"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Button..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/B_utton..."
|
||||
"Beveled pattern button"
|
||||
"Federico Mena Quintero"
|
||||
"Federico Mena Quintero"
|
||||
|
|
|
@ -94,7 +94,7 @@
|
|||
|
||||
|
||||
(script-fu-register "script-fu-beveled-pattern-heading"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Heading..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/H_eading..."
|
||||
"Beveled pattern heading"
|
||||
"Federico Mena Quintero"
|
||||
"Federico Mena Quintero"
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
|
||||
|
||||
(script-fu-register "script-fu-beveled-pattern-hrule"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Hrule..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/_Hrule..."
|
||||
"Beveled pattern hrule"
|
||||
"Federico Mena Quintero"
|
||||
"Federico Mena Quintero"
|
||||
|
|
|
@ -217,7 +217,7 @@
|
|||
(gimp-message "Blend Animation needs at least three source layers"))))
|
||||
|
||||
(script-fu-register "script-fu-blend-anim"
|
||||
_"<Image>/Script-Fu/Animators/Blend..."
|
||||
_"<Image>/Script-Fu/Animators/_Blend..."
|
||||
"Blend two or more layers over a background, so that an
|
||||
animation can be saved"
|
||||
"Sven Neumann <sven@gimp.org>"
|
||||
|
|
|
@ -107,7 +107,7 @@
|
|||
|
||||
|
||||
(script-fu-register "script-fu-blended-logo-alpha"
|
||||
_"<Image>/Script-Fu/Alpha to Logo/Blended..."
|
||||
_"<Image>/Script-Fu/Alpha to Logo/Blen_ded..."
|
||||
"Creates logos with blended backgrounds, highlights, and shadows"
|
||||
"Spencer Kimball"
|
||||
"Spencer Kimball"
|
||||
|
@ -152,7 +152,7 @@
|
|||
(gimp-display-new img)))
|
||||
|
||||
(script-fu-register "script-fu-blended-logo"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/Blended..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/Blen_ded..."
|
||||
"Creates logos with blended backgrounds, highlights, and shadows"
|
||||
"Spencer Kimball"
|
||||
"Spencer Kimball"
|
||||
|
|
|
@ -77,7 +77,7 @@
|
|||
(gimp-displays-flush)))
|
||||
|
||||
(script-fu-register "script-fu-bovinated-logo-alpha"
|
||||
_"<Image>/Script-Fu/Alpha to Logo/Bovination..."
|
||||
_"<Image>/Script-Fu/Alpha to Logo/Bo_vination..."
|
||||
"Makes Cow-spotted logos"
|
||||
"Brian McFee <keebler@wco.com>"
|
||||
"Brian McFee"
|
||||
|
@ -105,7 +105,7 @@
|
|||
(gimp-display-new img)))
|
||||
|
||||
(script-fu-register "script-fu-bovinated-logo"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/Bovination..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/Bo_vination..."
|
||||
"Makes Cow-spotted logos"
|
||||
"Brian McFee <keebler@wco.com>"
|
||||
"Brian McFee"
|
||||
|
|
|
@ -179,7 +179,7 @@
|
|||
|
||||
|
||||
(script-fu-register "script-fu-burn-in-anim"
|
||||
"<Image>/Script-Fu/Animators/Burn-In..."
|
||||
"<Image>/Script-Fu/Animators/B_urn-In..."
|
||||
"Burn-in like effect on a fg (text) layer and a bg layer; V2.1"
|
||||
"Roland Berger roland@fuchur.leute.server.de"
|
||||
"Roland Berger"
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
|
||||
(script-fu-register
|
||||
"script-fu-camo-pattern"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Patterns/Camouflage..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Patterns/_Camouflage..."
|
||||
"Camouflage pattern"
|
||||
"Chris Gutteridge: cjg@ecs.soton.ac.uk"
|
||||
"28th April 1998"
|
||||
|
|
|
@ -177,7 +177,7 @@
|
|||
(gimp-image-undo-enable img)))
|
||||
|
||||
(script-fu-register "script-fu-carve-it"
|
||||
_"<Image>/Script-Fu/Stencil Ops/Carve-It..."
|
||||
_"<Image>/Script-Fu/Stencil Ops/C_arve-It..."
|
||||
"Use the specified [GRAY] drawable as a stencil to carve from the specified image. The specified image must be either RGB colour or grayscale, not indexed."
|
||||
"Spencer Kimball"
|
||||
"Spencer Kimball"
|
||||
|
|
|
@ -65,7 +65,7 @@
|
|||
(gimp-displays-flush)))
|
||||
|
||||
(script-fu-register "script-fu-chalk-logo-alpha"
|
||||
_"<Image>/Script-Fu/Alpha to Logo/Chalk..."
|
||||
_"<Image>/Script-Fu/Alpha to Logo/_Chalk..."
|
||||
"Chalk scribbled logos"
|
||||
"Manish Singh <msingh@uclink4.berkeley.edu>"
|
||||
"Manish Singh"
|
||||
|
@ -97,7 +97,7 @@
|
|||
(gimp-display-new img)))
|
||||
|
||||
(script-fu-register "script-fu-chalk-logo"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/Chalk..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/_Chalk..."
|
||||
"Chalk scribbled logos"
|
||||
"Manish Singh <msingh@uclink4.berkeley.edu>"
|
||||
"Manish Singh"
|
||||
|
|
|
@ -130,7 +130,7 @@
|
|||
(gimp-displays-flush)))
|
||||
|
||||
(script-fu-register "script-fu-chip-away-logo-alpha"
|
||||
_"<Image>/Script-Fu/Alpha to Logo/Chip Away..."
|
||||
_"<Image>/Script-Fu/Alpha to Logo/Chip Awa_y..."
|
||||
"Chip away effect"
|
||||
"Adrian Likins <adrian@gimp.org>"
|
||||
"Adrian Likins <adrian@gimp.org>"
|
||||
|
@ -172,7 +172,7 @@
|
|||
(gimp-display-new img)))
|
||||
|
||||
(script-fu-register "script-fu-chip-away-logo"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/Chip Away..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/Chip Awa_y..."
|
||||
"Chip away effect"
|
||||
"Adrian Likins <adrian@gimp.org>"
|
||||
"Adrian Likins <adrian@gimp.org>"
|
||||
|
|
|
@ -182,7 +182,7 @@
|
|||
(gimp-image-undo-enable img)))
|
||||
|
||||
(script-fu-register "script-fu-sota-chrome-it"
|
||||
_"<Image>/Script-Fu/Stencil Ops/Chrome-It..."
|
||||
_"<Image>/Script-Fu/Stencil Ops/C_hrome-It..."
|
||||
"Use the specified [GRAY] drawable as a stencil to run the chrome effect on."
|
||||
"Spencer Kimball"
|
||||
"Spencer Kimball"
|
||||
|
|
|
@ -74,7 +74,7 @@
|
|||
(gimp-displays-flush)))
|
||||
|
||||
(script-fu-register "script-fu-chrome-logo-alpha"
|
||||
_"<Image>/Script-Fu/Alpha to Logo/Chrome..."
|
||||
_"<Image>/Script-Fu/Alpha to Logo/C_hrome..."
|
||||
"Somewhat simplistic, but cool chromed logos"
|
||||
"Spencer Kimball"
|
||||
"Spencer Kimball & Peter Mattis"
|
||||
|
@ -100,7 +100,7 @@
|
|||
(gimp-display-new img)))
|
||||
|
||||
(script-fu-register "script-fu-chrome-logo"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/Chrome..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/C_hrome..."
|
||||
"Somewhat simplistic, but cool chromed logos"
|
||||
"Spencer Kimball"
|
||||
"Spencer Kimball & Peter Mattis"
|
||||
|
|
|
@ -122,7 +122,7 @@
|
|||
(gimp-displays-flush)))
|
||||
|
||||
(script-fu-register "script-fu-circuit"
|
||||
_"<Image>/Script-Fu/Render/Circuit..."
|
||||
_"<Image>/Script-Fu/Render/_Circuit..."
|
||||
"Fills the current selection with something that looks
|
||||
vaguely like a circuit board."
|
||||
"Adrian Likins <adrian@gimp.org>"
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
(script-fu-register "script-fu-clothify"
|
||||
_"<Image>/Script-Fu/Alchemy/Clothify..."
|
||||
_"<Image>/Script-Fu/Alchemy/_Clothify..."
|
||||
"Gives the current layer a cloth-like texture"
|
||||
"Tim Newsome <drz@froody.bloke.com>"
|
||||
"Tim Newsome"
|
||||
|
|
|
@ -72,7 +72,7 @@
|
|||
; Register the function with the GIMP:
|
||||
|
||||
(script-fu-register "script-fu-coffee-stain"
|
||||
_"<Image>/Script-Fu/Decor/Coffee Stain..."
|
||||
_"<Image>/Script-Fu/Decor/_Coffee Stain..."
|
||||
"Draws realistic looking coffee stains"
|
||||
"Chris Gutteridge"
|
||||
"1998, Chris Gutteridge / ECS dept, University of Southampton, England."
|
||||
|
|
|
@ -103,7 +103,7 @@
|
|||
(gimp-displays-flush)))
|
||||
|
||||
(script-fu-register "script-fu-comic-logo-alpha"
|
||||
_"<Image>/Script-Fu/Alpha to Logo/Comic Book..."
|
||||
_"<Image>/Script-Fu/Alpha to Logo/Comic Boo_k..."
|
||||
"Comic-book Style Logos"
|
||||
"Brian McFee <keebler@wco.com>"
|
||||
"Brian McFee"
|
||||
|
@ -138,7 +138,7 @@
|
|||
(gimp-display-new img)))
|
||||
|
||||
(script-fu-register "script-fu-comic-logo"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/Comic Book..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/Comic Boo_k..."
|
||||
"Comic-book Style Logos"
|
||||
"Brian McFee <keebler@wco.com>"
|
||||
"Brian McFee"
|
||||
|
|
|
@ -121,7 +121,7 @@
|
|||
(gimp-displays-flush)))
|
||||
|
||||
(script-fu-register "script-fu-cool-metal-logo-alpha"
|
||||
_"<Image>/Script-Fu/Alpha to Logo/Cool Metal..."
|
||||
_"<Image>/Script-Fu/Alpha to Logo/Cool _Metal..."
|
||||
"Metallic logos with reflections and perspective shadows"
|
||||
"Spencer Kimball & Rob Malda"
|
||||
"Spencer Kimball & Rob Malda"
|
||||
|
@ -152,7 +152,7 @@
|
|||
(gimp-display-new img)))
|
||||
|
||||
(script-fu-register "script-fu-cool-metal-logo"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/Cool Metal..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/Cool _Metal..."
|
||||
"Metallic logos with reflections and perspective shadows"
|
||||
"Spencer Kimball & Rob Malda"
|
||||
"Spencer Kimball & Rob Malda"
|
||||
|
|
|
@ -72,7 +72,7 @@
|
|||
(gimp-displays-flush)))
|
||||
|
||||
(script-fu-register "script-fu-copy-visible"
|
||||
_"<Image>/Edit/Copy Visible"
|
||||
_"<Image>/Edit/Copy _Visible"
|
||||
"Copy the visible selection"
|
||||
"Sven Neumann <sven@gimp.org>, Adrian Likins <adrian@gimp.org>"
|
||||
"Sven Neumann, Adrian Likins"
|
||||
|
|
|
@ -85,7 +85,7 @@
|
|||
; Register the function with the GIMP:
|
||||
|
||||
(script-fu-register "script-fu-distress-selection"
|
||||
_"<Image>/Script-Fu/Selection/Distress Selection..."
|
||||
_"<Image>/Script-Fu/Selection/_Distress Selection..."
|
||||
"No description"
|
||||
"Chris Gutteridge"
|
||||
"1998, Chris Gutteridge / ECS dept, University of Southampton, England."
|
||||
|
|
|
@ -156,7 +156,7 @@
|
|||
(gimp-displays-flush)))
|
||||
|
||||
(script-fu-register "script-fu-drop-shadow"
|
||||
_"<Image>/Script-Fu/Shadow/Drop-Shadow..."
|
||||
_"<Image>/Script-Fu/Shadow/_Drop-Shadow..."
|
||||
"Add a drop-shadow of the current selection or alpha-channel"
|
||||
"Sven Neumann <sven@gimp.org>"
|
||||
"Sven Neumann"
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
(gimp-displays-flush)))
|
||||
|
||||
(script-fu-register "script-fu-erase-rows"
|
||||
_"<Image>/Script-Fu/Alchemy/Erase every other Row..."
|
||||
_"<Image>/Script-Fu/Alchemy/_Erase every other Row..."
|
||||
"Erase every other row/column with the background color"
|
||||
"Federico Mena Quintero"
|
||||
"Federico Mena Quintero"
|
||||
|
|
|
@ -186,7 +186,7 @@
|
|||
|
||||
(script-fu-register
|
||||
"script-fu-fade-outline"
|
||||
_"<Image>/Script-Fu/Selection/Fade Outline..."
|
||||
_"<Image>/Script-Fu/Selection/_Fade Outline..."
|
||||
"Blend the Layers outline border from one alpha value (opaque) to another (transparent) by generating a Layermask"
|
||||
"Wolfgang Hofer <hof@hotbot.com>"
|
||||
"Wolfgang Hofer"
|
||||
|
|
|
@ -55,7 +55,7 @@
|
|||
))
|
||||
|
||||
(script-fu-register "script-fu-flatland"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Patterns/Flatland..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Patterns/_Flatland..."
|
||||
"A Land Pattern"
|
||||
"Adrian Likins <aklikins@eos.ncsu.edu>"
|
||||
"Adrian Likins"
|
||||
|
|
|
@ -61,7 +61,7 @@
|
|||
(gimp-display-new img)))
|
||||
|
||||
(script-fu-register "script-fu-font-map"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Utils/Font Map..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Utils/_Font Map..."
|
||||
"Generate a listing of the specified fonts"
|
||||
"Spencer Kimball"
|
||||
"Spencer Kimball"
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
|
||||
|
||||
(script-fu-register "script-fu-frosty-logo-alpha"
|
||||
_"<Image>/Script-Fu/Alpha to Logo/Frosty..."
|
||||
_"<Image>/Script-Fu/Alpha to Logo/_Frosty..."
|
||||
"Frozen logos with drop shadows"
|
||||
"Spencer Kimball & Ed Mackey"
|
||||
"Spencer Kimball & Ed Mackey"
|
||||
|
@ -110,7 +110,7 @@
|
|||
(gimp-display-new img)))
|
||||
|
||||
(script-fu-register "script-fu-frosty-logo"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/Frosty..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/_Frosty..."
|
||||
"Frozen logos with drop shadows"
|
||||
"Spencer Kimball & Ed Mackey"
|
||||
"Spencer Kimball & Ed Mackey"
|
||||
|
|
|
@ -148,7 +148,7 @@
|
|||
|
||||
(script-fu-register
|
||||
"script-fu-fuzzy-border"
|
||||
_"<Image>/Script-Fu/Decor/Fuzzy Border..."
|
||||
_"<Image>/Script-Fu/Decor/_Fuzzy Border..."
|
||||
"Fade border to chosen color"
|
||||
"Chris Gutteridge"
|
||||
"1998, Chris Gutteridge / ECS dept, University of Southampton, England."
|
||||
|
|
|
@ -134,7 +134,7 @@
|
|||
|
||||
|
||||
(script-fu-register "script-fu-big-header-gimp-org"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Gimp.Org/Big Header..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Gimp.Org/_Big Header..."
|
||||
"Big Gimp.org Header"
|
||||
"Adrian Likins & Jens Lautenbacher"
|
||||
"Adrian Likins & Jens Lautenbacher"
|
||||
|
@ -153,7 +153,7 @@
|
|||
SF-ADJUSTMENT _"Number of Colors" '(15 2 255 1 10 0 1))
|
||||
|
||||
(script-fu-register "script-fu-small-header-gimp-org"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Gimp.Org/Small Header..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Gimp.Org/_Small Header..."
|
||||
"Small Gimp.org Header"
|
||||
"Adrian Likins & Jens Lautenbacher"
|
||||
"Adrian Likins & Jens Lautenbacher"
|
||||
|
|
|
@ -105,7 +105,7 @@
|
|||
|
||||
|
||||
(script-fu-register "script-fu-tube-button-label-gimp-org"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Gimp.Org/Tube Button Label..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Gimp.Org/_Tube Button Label..."
|
||||
"Tube Button Label Header for gimp.org"
|
||||
"Adrian Likins & Jens Lautenbacher"
|
||||
"Adrian Likins & Jens Lautenbacher"
|
||||
|
@ -116,7 +116,7 @@
|
|||
SF-TOGGLE _"Index Image" TRUE)
|
||||
|
||||
(script-fu-register "script-fu-tube-subbutton-label-gimp-org"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Gimp.Org/Tube Sub-Button Label..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Gimp.Org/T_ube Sub-Button Label..."
|
||||
"Tube Button Label Header for gimp.org"
|
||||
"Adrian Likins & Jens Lautenbacher"
|
||||
"Adrian Likins & Jens Lautenbacher"
|
||||
|
@ -127,7 +127,7 @@
|
|||
SF-TOGGLE _"Index Image" TRUE)
|
||||
|
||||
(script-fu-register "script-fu-tube-subsubbutton-label-gimp-org"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Gimp.Org/Tube Sub-Sub-Button Label..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Gimp.Org/Tub_e Sub-Sub-Button Label..."
|
||||
"Tube Button Label Header for gimp.org"
|
||||
"Adrian Likins & Jens Lautenbacher"
|
||||
"Adrian Likins & Jens Lautenbacher"
|
||||
|
@ -139,7 +139,7 @@
|
|||
|
||||
|
||||
(script-fu-register "script-fu-labels-gimp-org"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Gimp.Org/General Tube Labels..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Web Page Themes/Gimp.Org/_General Tube Labels..."
|
||||
"Tube Button Label Header for gimp.org"
|
||||
"Adrian Likins & Jens Lautenbacher"
|
||||
"Adrian Likins & Jens Lautenbacher"
|
||||
|
|
|
@ -172,7 +172,7 @@
|
|||
|
||||
|
||||
(script-fu-register "script-fu-glossy-logo-alpha"
|
||||
_"<Image>/Script-Fu/Alpha to Logo/Glossy..."
|
||||
_"<Image>/Script-Fu/Alpha to Logo/Glo_ssy..."
|
||||
"Creates anything you can create with it :)"
|
||||
"Hrvoje Horvat (hhorvat@open.hr)"
|
||||
"Hrvoje Horvat"
|
||||
|
@ -236,7 +236,7 @@
|
|||
(gimp-display-new img)))
|
||||
|
||||
(script-fu-register "script-fu-glossy-logo"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/Glossy..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/Glo_ssy..."
|
||||
"Creates anything you can create with it :)"
|
||||
"Hrvoje Horvat (hhorvat@open.hr)"
|
||||
"Hrvoje Horvat"
|
||||
|
|
|
@ -67,7 +67,7 @@
|
|||
(gimp-displays-flush)))
|
||||
|
||||
(script-fu-register "script-fu-glowing-logo-alpha"
|
||||
_"<Image>/Script-Fu/Alpha to Logo/Glowing Hot..."
|
||||
_"<Image>/Script-Fu/Alpha to Logo/Glo_wing Hot..."
|
||||
"Glowing hot logos"
|
||||
"Spencer Kimball"
|
||||
"Spencer Kimball"
|
||||
|
@ -92,7 +92,7 @@
|
|||
(gimp-display-new img)))
|
||||
|
||||
(script-fu-register "script-fu-glowing-logo"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/Glowing Hot..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/Glo_wing Hot..."
|
||||
"Glowing hot logos"
|
||||
"Spencer Kimball"
|
||||
"Spencer Kimball"
|
||||
|
|
|
@ -88,7 +88,7 @@
|
|||
(gimp-displays-flush)))
|
||||
|
||||
(script-fu-register "script-fu-gradient-bevel-logo-alpha"
|
||||
_"<Image>/Script-Fu/Alpha to Logo/Gradient Bevel..."
|
||||
_"<Image>/Script-Fu/Alpha to Logo/Gradient Beve_l..."
|
||||
"Makes Shiny Bevelly text"
|
||||
"Brian McFee <keebler@wco.com>"
|
||||
"Brian McFee"
|
||||
|
@ -119,7 +119,7 @@
|
|||
(gimp-display-new img)))
|
||||
|
||||
(script-fu-register "script-fu-gradient-bevel-logo"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/Gradient Bevel..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/Gradient Beve_l..."
|
||||
"Makes Shiny Bevelly text"
|
||||
"Brian McFee <keebler@wco.com>"
|
||||
"Brian McFee"
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
(gimp-display-new img)))
|
||||
|
||||
(script-fu-register "script-fu-gradient-example"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Utils/Custom Gradient..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Utils/Custom _Gradient..."
|
||||
"Create an example image of a custom gradient"
|
||||
"Federico Mena Quintero"
|
||||
"Federico Mena Quintero"
|
||||
|
|
|
@ -72,7 +72,7 @@
|
|||
(gimp-displays-flush)))
|
||||
|
||||
(script-fu-register "script-fu-grid-system"
|
||||
_"<Image>/Script-Fu/Render/Grid..."
|
||||
_"<Image>/Script-Fu/Render/_Grid..."
|
||||
"Draw grid as specified by X-DIVIDES (list of propotions relative to the drawable) and Y-DIVIDES. The color and width of grid is detemined by the current settings of brush."
|
||||
"Shuji Narazaki <narazaki@InetQ.or.jp>"
|
||||
"Shuji Narazaki"
|
||||
|
|
|
@ -337,7 +337,7 @@
|
|||
|
||||
(script-fu-register
|
||||
"script-fu-hsv-graph"
|
||||
_"<Image>/Script-Fu/Utils/Draw HSV Graph..."
|
||||
_"<Image>/Script-Fu/Utils/Draw _HSV Graph..."
|
||||
"Draph the graph of H/S/V values on the drawable"
|
||||
"Shuji Narazaki <narazaki@InetQ.or.jp>"
|
||||
"Shuji Narazaki"
|
||||
|
|
|
@ -135,7 +135,7 @@
|
|||
|
||||
(script-fu-register
|
||||
"script-fu-show-image-structure"
|
||||
_"<Image>/Script-Fu/Utils/Show Image Structure..."
|
||||
_"<Image>/Script-Fu/Utils/Show Image _Structure..."
|
||||
"Show the layer structure of the image"
|
||||
"Shuji Narazaki <narazaki@InetQ.or.jp>"
|
||||
"Shuji Narazaki"
|
||||
|
|
|
@ -66,7 +66,7 @@
|
|||
))
|
||||
|
||||
(script-fu-register "script-fu-land"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Patterns/Land..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Patterns/_Land..."
|
||||
"A Topgraphic map pattern"
|
||||
"Adrian Likins <aklikins@eos.ncsu.edu>"
|
||||
"Adrian Likins"
|
||||
|
|
|
@ -99,7 +99,7 @@
|
|||
(gimp-displays-flush)))
|
||||
|
||||
(script-fu-register "script-fu-lava"
|
||||
_"<Image>/Script-Fu/Render/Lava..."
|
||||
_"<Image>/Script-Fu/Render/_Lava..."
|
||||
"Fills the current selection with lava."
|
||||
"Adrian Likins <adrian@gimp.org>"
|
||||
"Adrian Likins"
|
||||
|
|
|
@ -71,7 +71,7 @@
|
|||
|
||||
(script-fu-register
|
||||
"script-fu-line-nova"
|
||||
_"<Image>/Script-Fu/Render/Line Nova..."
|
||||
_"<Image>/Script-Fu/Render/Line _Nova..."
|
||||
"Line Nova. Draw lines with Foreground color from the center of image to the edges. 1st undo cancels bucket-fill. 2nd undo gets orignal selection."
|
||||
"Shuji Narazaki <narazaki@gimp.org>"
|
||||
"Shuji Narazaki"
|
||||
|
|
|
@ -80,7 +80,7 @@
|
|||
; Register with the PDB
|
||||
|
||||
(script-fu-register "script-fu-make-brush-rectangular"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Make Brush/Rectangular..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Make Brush/_Rectangular..."
|
||||
"Create size of brush"
|
||||
"Seth Burgess <sjburges@ou.edu>"
|
||||
"Seth Burgess"
|
||||
|
@ -158,7 +158,7 @@
|
|||
; Register with the PDB
|
||||
|
||||
(script-fu-register "script-fu-make-brush-rectangular-feathered"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Make Brush/Rectangular, Feathered..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Make Brush/Re_ctangular, Feathered..."
|
||||
"Create size of brush"
|
||||
"Seth Burgess <sjburges@ou.edu>"
|
||||
"Seth Burgess"
|
||||
|
@ -229,7 +229,7 @@
|
|||
; Register with the PDB
|
||||
|
||||
(script-fu-register "script-fu-make-brush-elliptical"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Make Brush/Elliptical..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Make Brush/_Elliptical..."
|
||||
"Create size of brush"
|
||||
"Seth Burgess <sjburges@ou.edu>"
|
||||
"Seth Burgess"
|
||||
|
@ -309,7 +309,7 @@
|
|||
; Register with the PDB
|
||||
|
||||
(script-fu-register "script-fu-make-brush-elliptical-feathered"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Make Brush/Elliptical, Feathered..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Make Brush/Elli_ptical, Feathered..."
|
||||
"Makes a feathered elliptical brush of specified size"
|
||||
"Seth Burgess <sjburges@ou.edu>"
|
||||
"Seth Burgess"
|
||||
|
|
|
@ -175,7 +175,7 @@
|
|||
(gimp-displays-flush)))
|
||||
|
||||
(script-fu-register "script-fu-neon-logo-alpha"
|
||||
_"<Image>/Script-Fu/Alpha to Logo/Neon..."
|
||||
_"<Image>/Script-Fu/Alpha to Logo/N_eon..."
|
||||
"Neon logos"
|
||||
"Spencer Kimball"
|
||||
"Spencer Kimball"
|
||||
|
@ -205,7 +205,7 @@
|
|||
(gimp-display-new img)))
|
||||
|
||||
(script-fu-register "script-fu-neon-logo"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/Neon..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Logos/N_eon..."
|
||||
"Neon logos"
|
||||
"Spencer Kimball"
|
||||
"Spencer Kimball"
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
|
||||
(script-fu-register
|
||||
"script-fu-old-photo"
|
||||
_"<Image>/Script-Fu/Decor/Old Photo..."
|
||||
_"<Image>/Script-Fu/Decor/_Old Photo..."
|
||||
"Makes the image look like an old photo. A border size of 0 means no border."
|
||||
"Chris Gutteridge"
|
||||
"1998, Chris Gutteridge / ECS dept, University of Southampton, England."
|
||||
|
|
|
@ -171,7 +171,7 @@
|
|||
(gimp-displays-flush)))
|
||||
|
||||
(script-fu-register "script-fu-perspective-shadow"
|
||||
_"<Image>/Script-Fu/Shadow/Perspective..."
|
||||
_"<Image>/Script-Fu/Shadow/_Perspective..."
|
||||
"Add a perspective shadow"
|
||||
"Sven Neumann <sven@gimp.org>"
|
||||
"Sven Neumann"
|
||||
|
|
|
@ -96,7 +96,7 @@
|
|||
(gimp-displays-flush)))
|
||||
|
||||
(script-fu-register "script-fu-predator"
|
||||
_"<Image>/Script-Fu/Alchemy/Predator..."
|
||||
_"<Image>/Script-Fu/Alchemy/_Predator..."
|
||||
"Looks like images from the movie Predator"
|
||||
"Adrian Likins <adrian@gimp.org>"
|
||||
"Adrian Likins"
|
||||
|
|
|
@ -181,7 +181,7 @@
|
|||
(gimp-display-new img)))
|
||||
|
||||
(script-fu-register "script-fu-round-button"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Buttons/Round Button..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Buttons/_Round Button..."
|
||||
"Round button"
|
||||
"Arturo Espinosa (stolen from quartic's beveled button)"
|
||||
"Arturo Espinosa & Federico Mena Quintero"
|
||||
|
|
|
@ -72,7 +72,7 @@
|
|||
(gimp-display-new theImage))
|
||||
|
||||
(script-fu-register "script-fu-render-map"
|
||||
_"<Toolbox>/Xtns/Script-Fu/Patterns/Render Map..."
|
||||
_"<Toolbox>/Xtns/Script-Fu/Patterns/Render _Map..."
|
||||
"Another pattern which resembles a map"
|
||||
"Chris Gutteridge: cjg@ecs.soton.ac.uk"
|
||||
"28th April 1998"
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue