2001-04-22 08:38:56 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* gimpcontainermenuimpl.c
|
2001-10-18 00:11:28 +08:00
|
|
|
* Copyright (C) 2001 Michael Natterer <mitch@gimp.org>
|
2001-04-22 08:38:56 +08:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2001-05-08 11:48:54 +08:00
|
|
|
#include "widgets-types.h"
|
2001-04-22 08:38:56 +08:00
|
|
|
|
2001-05-09 10:32:03 +08:00
|
|
|
#include "core/gimpcontainer.h"
|
|
|
|
#include "core/gimpcontext.h"
|
|
|
|
|
2001-04-22 08:38:56 +08:00
|
|
|
#include "gimpcontainermenuimpl.h"
|
|
|
|
#include "gimpmenuitem.h"
|
|
|
|
#include "gimppreview.h"
|
|
|
|
|
|
|
|
|
|
|
|
static void gimp_container_menu_impl_class_init (GimpContainerMenuImplClass *klass);
|
|
|
|
static void gimp_container_menu_impl_init (GimpContainerMenuImpl *panel);
|
|
|
|
|
|
|
|
static gpointer gimp_container_menu_impl_insert_item (GimpContainerMenu *view,
|
|
|
|
GimpViewable *viewable,
|
|
|
|
gint index);
|
|
|
|
static void gimp_container_menu_impl_remove_item (GimpContainerMenu *view,
|
|
|
|
GimpViewable *viewable,
|
|
|
|
gpointer insert_data);
|
|
|
|
static void gimp_container_menu_impl_reorder_item (GimpContainerMenu *view,
|
|
|
|
GimpViewable *viewable,
|
|
|
|
gint new_index,
|
|
|
|
gpointer insert_data);
|
|
|
|
static void gimp_container_menu_impl_select_item (GimpContainerMenu *view,
|
|
|
|
GimpViewable *viewable,
|
|
|
|
gpointer insert_data);
|
|
|
|
static void gimp_container_menu_impl_clear_items (GimpContainerMenu *view);
|
|
|
|
static void gimp_container_menu_impl_set_preview_size (GimpContainerMenu *view);
|
|
|
|
|
|
|
|
static void gimp_container_menu_impl_set_history (GimpContainerMenu *view,
|
|
|
|
gint history);
|
|
|
|
|
|
|
|
static void gimp_container_menu_impl_item_selected (GtkWidget *widget,
|
|
|
|
gpointer data);
|
|
|
|
|
|
|
|
|
|
|
|
static GimpContainerMenuClass *parent_class = NULL;
|
|
|
|
|
|
|
|
|
2001-10-17 19:33:43 +08:00
|
|
|
GType
|
2001-04-22 08:38:56 +08:00
|
|
|
gimp_container_menu_impl_get_type (void)
|
|
|
|
{
|
2001-10-17 19:33:43 +08:00
|
|
|
static GType menu_type = 0;
|
2001-04-22 08:38:56 +08:00
|
|
|
|
2001-10-17 19:33:43 +08:00
|
|
|
if (! menu_type)
|
2001-04-22 08:38:56 +08:00
|
|
|
{
|
2001-10-17 19:33:43 +08:00
|
|
|
static const GTypeInfo menu_info =
|
2001-04-22 08:38:56 +08:00
|
|
|
{
|
2001-10-17 19:33:43 +08:00
|
|
|
sizeof (GimpContainerMenuImplClass),
|
|
|
|
NULL, /* base_init */
|
|
|
|
NULL, /* base_finalize */
|
|
|
|
(GClassInitFunc) gimp_container_menu_impl_class_init,
|
|
|
|
NULL, /* class_finalize */
|
|
|
|
NULL, /* class_data */
|
|
|
|
sizeof (GimpContainerMenuImpl),
|
|
|
|
0, /* n_preallocs */
|
|
|
|
(GInstanceInitFunc) gimp_container_menu_impl_init,
|
2001-04-22 08:38:56 +08:00
|
|
|
};
|
|
|
|
|
2001-10-17 19:33:43 +08:00
|
|
|
menu_type = g_type_register_static (GIMP_TYPE_CONTAINER_MENU,
|
|
|
|
"GimpContainerMenuImpl",
|
|
|
|
&menu_info, 0);
|
2001-04-22 08:38:56 +08:00
|
|
|
}
|
|
|
|
|
2001-10-17 19:33:43 +08:00
|
|
|
return menu_type;
|
2001-04-22 08:38:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_container_menu_impl_class_init (GimpContainerMenuImplClass *klass)
|
|
|
|
{
|
|
|
|
GimpContainerMenuClass *container_menu_class;
|
|
|
|
|
2001-10-17 19:33:43 +08:00
|
|
|
container_menu_class = GIMP_CONTAINER_MENU_CLASS (klass);
|
2001-04-22 08:38:56 +08:00
|
|
|
|
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
2001-07-24 Michael Natterer <mitch@gimp.org>
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
* configure.in: require glib/gtk+ >= 1.3.7, commented out the
gtkxmhtml stuff.
From now on, you will need glib, pango, atk and gtk+ HEAD from CVS
to hack or use GIMP HEAD.
Beware, it crashes randomly :)
* app/core/Makefile.am
* app/core/gimpmarshal.list: new file plus rules to generate
gimpmarshal.[ch] from it.
* app/core/*
* app/tools/*
* app/widgets/*
* libgimpwidgets/*: started to use the glib object system. All
core/ objects are still gtk objects however. All signals are
created using g_signal_new(). There are many gtk+ artefacts left.
Finally, we will _not_ use the gtk_signal_foo() wrappers and
friends any more.
* app/colormaps.c
* app/devices.[ch]
* app/disp_callbacks.c
* app/errorconsole.c
* app/file-save.[ch]
* app/interface.c
* app/module_db.c
* app/nav_window.c
* app/ops_buttons.c
* app/scroll.c
* app/user_install.c
* app/gui/about-dialog.c
* app/gui/brush-editor.c
* app/gui/brushes-commands.c
* app/gui/color-notebook.c
* app/gui/colormap-dialog.c
* app/gui/dialogs-commands.c
* app/gui/dialogs-constructors.c
* app/gui/file-commands.c
* app/gui/file-dialog-utils.c
* app/gui/file-new-dialog.c
* app/gui/file-open-dialog.[ch]
* app/gui/file-save-dialog.c
* app/gui/gradient-editor.c
* app/gui/gradients-commands.c
* app/gui/image-commands.c
* app/gui/info-dialog.[ch]
* app/gui/layer-select.c
* app/gui/layers-commands.c
* app/gui/menus.c
* app/gui/offset-dialog.c
* app/gui/palette-editor.c
* app/gui/palettes-commands.c
* app/gui/patterns-commands.c
* app/gui/preferences-dialog.c
* app/gui/resize-dialog.[ch]
* app/gui/splash.c
* app/gui/tips-dialog.c
* app/gui/tool-options-dialog.c
* app/gui/toolbox.c
* app/gui/tools-commands.c
* libgimp/gimpbrushmenu.c
* libgimp/gimpmenu.c
* libgimp/gimppatternmenu.c
* libgimp/gimpui.c
* libgimpbase/gimpenv.c: tons and tons of changes like "const
gchar*", switch from GdkDeviceInfo to GdkDevice (very incomplete
and currently disables), lots of s/gtk_signal/g_signal/,
removal/replacement of deprecated stuff,
s/GtkSignalFunc/GCallback/ and lots of small changes and fixes
while I was on it, zillions of warnings left...
* modules/Makefile.am: disabled the water color selector
temporarily (XInput issues).
* plug-ins/Makefile.am
* plug-ins/common/.cvsignore
* plug-ins/common/Makefile.am
* plug-ins/common/plugin-defs.pl: simply excluded all plug-ins
which did not build (including Script-Fu). They are trivial to
fix.
2001-07-25 05:27:11 +08:00
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
2001-04-22 08:38:56 +08:00
|
|
|
|
|
|
|
container_menu_class->insert_item = gimp_container_menu_impl_insert_item;
|
|
|
|
container_menu_class->remove_item = gimp_container_menu_impl_remove_item;
|
|
|
|
container_menu_class->reorder_item = gimp_container_menu_impl_reorder_item;
|
|
|
|
container_menu_class->select_item = gimp_container_menu_impl_select_item;
|
|
|
|
container_menu_class->clear_items = gimp_container_menu_impl_clear_items;
|
|
|
|
container_menu_class->set_preview_size = gimp_container_menu_impl_set_preview_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_container_menu_impl_init (GimpContainerMenuImpl *menu_impl)
|
|
|
|
{
|
|
|
|
menu_impl->empty_item = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget *
|
|
|
|
gimp_container_menu_new (GimpContainer *container,
|
|
|
|
GimpContext *context,
|
|
|
|
gint preview_size)
|
|
|
|
{
|
|
|
|
GimpContainerMenuImpl *menu_impl;
|
|
|
|
GimpContainerMenu *menu;
|
|
|
|
|
|
|
|
g_return_val_if_fail (! container || GIMP_IS_CONTAINER (container), NULL);
|
|
|
|
g_return_val_if_fail (! context || GIMP_IS_CONTEXT (context), NULL);
|
|
|
|
g_return_val_if_fail (preview_size > 0 && preview_size <= 64, NULL);
|
|
|
|
|
2001-08-10 22:41:39 +08:00
|
|
|
menu_impl = g_object_new (GIMP_TYPE_CONTAINER_MENU_IMPL, NULL);
|
2001-04-22 08:38:56 +08:00
|
|
|
|
|
|
|
menu = GIMP_CONTAINER_MENU (menu_impl);
|
|
|
|
|
|
|
|
menu->preview_size = preview_size;
|
|
|
|
|
|
|
|
menu_impl->empty_item = gtk_menu_item_new_with_label ("(none)");
|
|
|
|
gtk_widget_set_usize (menu_impl->empty_item,
|
|
|
|
-1,
|
|
|
|
preview_size +
|
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
2001-07-24 Michael Natterer <mitch@gimp.org>
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
* configure.in: require glib/gtk+ >= 1.3.7, commented out the
gtkxmhtml stuff.
From now on, you will need glib, pango, atk and gtk+ HEAD from CVS
to hack or use GIMP HEAD.
Beware, it crashes randomly :)
* app/core/Makefile.am
* app/core/gimpmarshal.list: new file plus rules to generate
gimpmarshal.[ch] from it.
* app/core/*
* app/tools/*
* app/widgets/*
* libgimpwidgets/*: started to use the glib object system. All
core/ objects are still gtk objects however. All signals are
created using g_signal_new(). There are many gtk+ artefacts left.
Finally, we will _not_ use the gtk_signal_foo() wrappers and
friends any more.
* app/colormaps.c
* app/devices.[ch]
* app/disp_callbacks.c
* app/errorconsole.c
* app/file-save.[ch]
* app/interface.c
* app/module_db.c
* app/nav_window.c
* app/ops_buttons.c
* app/scroll.c
* app/user_install.c
* app/gui/about-dialog.c
* app/gui/brush-editor.c
* app/gui/brushes-commands.c
* app/gui/color-notebook.c
* app/gui/colormap-dialog.c
* app/gui/dialogs-commands.c
* app/gui/dialogs-constructors.c
* app/gui/file-commands.c
* app/gui/file-dialog-utils.c
* app/gui/file-new-dialog.c
* app/gui/file-open-dialog.[ch]
* app/gui/file-save-dialog.c
* app/gui/gradient-editor.c
* app/gui/gradients-commands.c
* app/gui/image-commands.c
* app/gui/info-dialog.[ch]
* app/gui/layer-select.c
* app/gui/layers-commands.c
* app/gui/menus.c
* app/gui/offset-dialog.c
* app/gui/palette-editor.c
* app/gui/palettes-commands.c
* app/gui/patterns-commands.c
* app/gui/preferences-dialog.c
* app/gui/resize-dialog.[ch]
* app/gui/splash.c
* app/gui/tips-dialog.c
* app/gui/tool-options-dialog.c
* app/gui/toolbox.c
* app/gui/tools-commands.c
* libgimp/gimpbrushmenu.c
* libgimp/gimpmenu.c
* libgimp/gimppatternmenu.c
* libgimp/gimpui.c
* libgimpbase/gimpenv.c: tons and tons of changes like "const
gchar*", switch from GdkDeviceInfo to GdkDevice (very incomplete
and currently disables), lots of s/gtk_signal/g_signal/,
removal/replacement of deprecated stuff,
s/GtkSignalFunc/GCallback/ and lots of small changes and fixes
while I was on it, zillions of warnings left...
* modules/Makefile.am: disabled the water color selector
temporarily (XInput issues).
* plug-ins/Makefile.am
* plug-ins/common/.cvsignore
* plug-ins/common/Makefile.am
* plug-ins/common/plugin-defs.pl: simply excluded all plug-ins
which did not build (including Script-Fu). They are trivial to
fix.
2001-07-25 05:27:11 +08:00
|
|
|
2 * menu_impl->empty_item->style->ythickness);
|
2001-04-22 08:38:56 +08:00
|
|
|
gtk_widget_set_sensitive (menu_impl->empty_item, FALSE);
|
|
|
|
gtk_widget_show (menu_impl->empty_item);
|
|
|
|
|
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
2001-07-24 Michael Natterer <mitch@gimp.org>
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
* configure.in: require glib/gtk+ >= 1.3.7, commented out the
gtkxmhtml stuff.
From now on, you will need glib, pango, atk and gtk+ HEAD from CVS
to hack or use GIMP HEAD.
Beware, it crashes randomly :)
* app/core/Makefile.am
* app/core/gimpmarshal.list: new file plus rules to generate
gimpmarshal.[ch] from it.
* app/core/*
* app/tools/*
* app/widgets/*
* libgimpwidgets/*: started to use the glib object system. All
core/ objects are still gtk objects however. All signals are
created using g_signal_new(). There are many gtk+ artefacts left.
Finally, we will _not_ use the gtk_signal_foo() wrappers and
friends any more.
* app/colormaps.c
* app/devices.[ch]
* app/disp_callbacks.c
* app/errorconsole.c
* app/file-save.[ch]
* app/interface.c
* app/module_db.c
* app/nav_window.c
* app/ops_buttons.c
* app/scroll.c
* app/user_install.c
* app/gui/about-dialog.c
* app/gui/brush-editor.c
* app/gui/brushes-commands.c
* app/gui/color-notebook.c
* app/gui/colormap-dialog.c
* app/gui/dialogs-commands.c
* app/gui/dialogs-constructors.c
* app/gui/file-commands.c
* app/gui/file-dialog-utils.c
* app/gui/file-new-dialog.c
* app/gui/file-open-dialog.[ch]
* app/gui/file-save-dialog.c
* app/gui/gradient-editor.c
* app/gui/gradients-commands.c
* app/gui/image-commands.c
* app/gui/info-dialog.[ch]
* app/gui/layer-select.c
* app/gui/layers-commands.c
* app/gui/menus.c
* app/gui/offset-dialog.c
* app/gui/palette-editor.c
* app/gui/palettes-commands.c
* app/gui/patterns-commands.c
* app/gui/preferences-dialog.c
* app/gui/resize-dialog.[ch]
* app/gui/splash.c
* app/gui/tips-dialog.c
* app/gui/tool-options-dialog.c
* app/gui/toolbox.c
* app/gui/tools-commands.c
* libgimp/gimpbrushmenu.c
* libgimp/gimpmenu.c
* libgimp/gimppatternmenu.c
* libgimp/gimpui.c
* libgimpbase/gimpenv.c: tons and tons of changes like "const
gchar*", switch from GdkDeviceInfo to GdkDevice (very incomplete
and currently disables), lots of s/gtk_signal/g_signal/,
removal/replacement of deprecated stuff,
s/GtkSignalFunc/GCallback/ and lots of small changes and fixes
while I was on it, zillions of warnings left...
* modules/Makefile.am: disabled the water color selector
temporarily (XInput issues).
* plug-ins/Makefile.am
* plug-ins/common/.cvsignore
* plug-ins/common/Makefile.am
* plug-ins/common/plugin-defs.pl: simply excluded all plug-ins
which did not build (including Script-Fu). They are trivial to
fix.
2001-07-25 05:27:11 +08:00
|
|
|
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_impl->empty_item);
|
2001-04-22 08:38:56 +08:00
|
|
|
|
|
|
|
if (container)
|
|
|
|
gimp_container_menu_set_container (menu, container);
|
|
|
|
|
|
|
|
if (context)
|
|
|
|
gimp_container_menu_set_context (menu, context);
|
|
|
|
|
|
|
|
return GTK_WIDGET (menu_impl);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* GimpContainerMenu methods */
|
|
|
|
|
|
|
|
static gpointer
|
|
|
|
gimp_container_menu_impl_insert_item (GimpContainerMenu *menu,
|
|
|
|
GimpViewable *viewable,
|
|
|
|
gint index)
|
|
|
|
{
|
|
|
|
GtkWidget *menu_item;
|
|
|
|
|
|
|
|
menu_item = gimp_menu_item_new (viewable, menu->preview_size);
|
|
|
|
|
2001-05-04 06:19:17 +08:00
|
|
|
gimp_menu_item_set_name_func (GIMP_MENU_ITEM (menu_item),
|
|
|
|
menu->get_name_func);
|
|
|
|
|
2001-07-25 07:11:30 +08:00
|
|
|
g_signal_connect (G_OBJECT (menu_item), "activate",
|
|
|
|
G_CALLBACK (gimp_container_menu_impl_item_selected),
|
|
|
|
menu);
|
2001-04-22 08:38:56 +08:00
|
|
|
|
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
2001-07-24 Michael Natterer <mitch@gimp.org>
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
* configure.in: require glib/gtk+ >= 1.3.7, commented out the
gtkxmhtml stuff.
From now on, you will need glib, pango, atk and gtk+ HEAD from CVS
to hack or use GIMP HEAD.
Beware, it crashes randomly :)
* app/core/Makefile.am
* app/core/gimpmarshal.list: new file plus rules to generate
gimpmarshal.[ch] from it.
* app/core/*
* app/tools/*
* app/widgets/*
* libgimpwidgets/*: started to use the glib object system. All
core/ objects are still gtk objects however. All signals are
created using g_signal_new(). There are many gtk+ artefacts left.
Finally, we will _not_ use the gtk_signal_foo() wrappers and
friends any more.
* app/colormaps.c
* app/devices.[ch]
* app/disp_callbacks.c
* app/errorconsole.c
* app/file-save.[ch]
* app/interface.c
* app/module_db.c
* app/nav_window.c
* app/ops_buttons.c
* app/scroll.c
* app/user_install.c
* app/gui/about-dialog.c
* app/gui/brush-editor.c
* app/gui/brushes-commands.c
* app/gui/color-notebook.c
* app/gui/colormap-dialog.c
* app/gui/dialogs-commands.c
* app/gui/dialogs-constructors.c
* app/gui/file-commands.c
* app/gui/file-dialog-utils.c
* app/gui/file-new-dialog.c
* app/gui/file-open-dialog.[ch]
* app/gui/file-save-dialog.c
* app/gui/gradient-editor.c
* app/gui/gradients-commands.c
* app/gui/image-commands.c
* app/gui/info-dialog.[ch]
* app/gui/layer-select.c
* app/gui/layers-commands.c
* app/gui/menus.c
* app/gui/offset-dialog.c
* app/gui/palette-editor.c
* app/gui/palettes-commands.c
* app/gui/patterns-commands.c
* app/gui/preferences-dialog.c
* app/gui/resize-dialog.[ch]
* app/gui/splash.c
* app/gui/tips-dialog.c
* app/gui/tool-options-dialog.c
* app/gui/toolbox.c
* app/gui/tools-commands.c
* libgimp/gimpbrushmenu.c
* libgimp/gimpmenu.c
* libgimp/gimppatternmenu.c
* libgimp/gimpui.c
* libgimpbase/gimpenv.c: tons and tons of changes like "const
gchar*", switch from GdkDeviceInfo to GdkDevice (very incomplete
and currently disables), lots of s/gtk_signal/g_signal/,
removal/replacement of deprecated stuff,
s/GtkSignalFunc/GCallback/ and lots of small changes and fixes
while I was on it, zillions of warnings left...
* modules/Makefile.am: disabled the water color selector
temporarily (XInput issues).
* plug-ins/Makefile.am
* plug-ins/common/.cvsignore
* plug-ins/common/Makefile.am
* plug-ins/common/plugin-defs.pl: simply excluded all plug-ins
which did not build (including Script-Fu). They are trivial to
fix.
2001-07-25 05:27:11 +08:00
|
|
|
gtk_menu_shell_insert (GTK_MENU_SHELL (menu), menu_item, index);
|
2001-04-22 08:38:56 +08:00
|
|
|
gtk_widget_show (menu_item);
|
|
|
|
|
|
|
|
gtk_menu_reorder_child (GTK_MENU (menu),
|
|
|
|
GIMP_CONTAINER_MENU_IMPL (menu)->empty_item, -1);
|
|
|
|
|
|
|
|
if (g_list_length (GTK_MENU_SHELL (menu)->children) == 2)
|
|
|
|
gtk_widget_hide (GIMP_CONTAINER_MENU_IMPL (menu)->empty_item);
|
|
|
|
|
|
|
|
return (gpointer) menu_item;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_container_menu_impl_remove_item (GimpContainerMenu *menu,
|
|
|
|
GimpViewable *viewable,
|
|
|
|
gpointer insert_data)
|
|
|
|
{
|
|
|
|
GtkWidget *menu_item;
|
|
|
|
|
|
|
|
if (insert_data)
|
|
|
|
menu_item = GTK_WIDGET (insert_data);
|
|
|
|
else
|
|
|
|
menu_item = NULL;
|
|
|
|
|
|
|
|
if (menu_item)
|
|
|
|
{
|
2001-04-26 08:19:31 +08:00
|
|
|
gboolean active;
|
|
|
|
|
|
|
|
active = (gtk_menu_get_active (GTK_MENU (menu)) == menu_item);
|
|
|
|
|
2001-04-22 08:38:56 +08:00
|
|
|
if (g_list_length (GTK_MENU_SHELL (menu)->children) == 2)
|
|
|
|
gtk_widget_show (GIMP_CONTAINER_MENU_IMPL (menu)->empty_item);
|
|
|
|
|
|
|
|
gtk_container_remove (GTK_CONTAINER (menu), menu_item);
|
|
|
|
|
2001-04-26 08:19:31 +08:00
|
|
|
if (active)
|
|
|
|
gimp_container_menu_impl_set_history (menu, 0);
|
2001-04-22 08:38:56 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_container_menu_impl_reorder_item (GimpContainerMenu *menu,
|
|
|
|
GimpViewable *viewable,
|
|
|
|
gint new_index,
|
|
|
|
gpointer insert_data)
|
|
|
|
{
|
|
|
|
GtkWidget *menu_item;
|
|
|
|
|
|
|
|
if (insert_data)
|
|
|
|
menu_item = GTK_WIDGET (insert_data);
|
|
|
|
else
|
|
|
|
menu_item = NULL;
|
|
|
|
|
|
|
|
if (menu_item)
|
|
|
|
{
|
2001-04-26 08:19:31 +08:00
|
|
|
gboolean active;
|
|
|
|
|
2001-04-22 08:38:56 +08:00
|
|
|
active = (gtk_menu_get_active (GTK_MENU (menu)) == menu_item);
|
|
|
|
|
|
|
|
gtk_menu_reorder_child (GTK_MENU (menu),
|
|
|
|
GTK_WIDGET (menu_item), new_index);
|
|
|
|
|
|
|
|
if (active)
|
|
|
|
gimp_container_menu_impl_set_history (menu, new_index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_container_menu_impl_select_item (GimpContainerMenu *menu,
|
|
|
|
GimpViewable *viewable,
|
|
|
|
gpointer insert_data)
|
|
|
|
{
|
|
|
|
GtkWidget *menu_item;
|
|
|
|
|
|
|
|
if (insert_data)
|
|
|
|
menu_item = GTK_WIDGET (insert_data);
|
|
|
|
else
|
|
|
|
menu_item = NULL;
|
|
|
|
|
|
|
|
if (menu_item)
|
|
|
|
{
|
|
|
|
gint index;
|
|
|
|
|
|
|
|
index = gimp_container_get_child_index (menu->container,
|
|
|
|
GIMP_OBJECT (viewable));
|
|
|
|
|
|
|
|
gimp_container_menu_impl_set_history (menu, index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_container_menu_impl_clear_items (GimpContainerMenu *menu)
|
|
|
|
{
|
|
|
|
while (GTK_MENU_SHELL (menu)->children)
|
|
|
|
{
|
|
|
|
gtk_container_remove (GTK_CONTAINER (menu),
|
|
|
|
GTK_WIDGET (GTK_MENU_SHELL (menu)->children->data));
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_widget_show (GIMP_CONTAINER_MENU_IMPL (menu)->empty_item);
|
|
|
|
|
|
|
|
if (GIMP_CONTAINER_MENU_CLASS (parent_class)->clear_items)
|
|
|
|
GIMP_CONTAINER_MENU_CLASS (parent_class)->clear_items (menu);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_container_menu_impl_set_preview_size (GimpContainerMenu *menu)
|
|
|
|
{
|
|
|
|
GList *list;
|
|
|
|
|
|
|
|
for (list = GTK_MENU_SHELL (menu)->children;
|
|
|
|
list;
|
|
|
|
list = g_list_next (list))
|
|
|
|
{
|
|
|
|
GimpMenuItem *menu_item;
|
|
|
|
|
|
|
|
menu_item = GIMP_MENU_ITEM (list->data);
|
|
|
|
|
|
|
|
gimp_preview_set_size (GIMP_PREVIEW (menu_item->preview),
|
|
|
|
menu->preview_size,
|
|
|
|
GIMP_PREVIEW (menu_item->preview)->border_width);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_container_menu_impl_set_history (GimpContainerMenu *menu,
|
|
|
|
gint history)
|
|
|
|
{
|
|
|
|
GtkWidget *parent;
|
|
|
|
|
|
|
|
parent = gtk_menu_get_attach_widget (GTK_MENU (menu));
|
|
|
|
|
|
|
|
if (parent && GTK_IS_OPTION_MENU (parent))
|
|
|
|
{
|
|
|
|
gtk_option_menu_set_history (GTK_OPTION_MENU (parent), history);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gtk_menu_set_active (GTK_MENU (menu), history);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* GtkMenuItem callbacks */
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_container_menu_impl_item_selected (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GimpMenuItem *menu_item;
|
|
|
|
|
|
|
|
menu_item = GIMP_MENU_ITEM (widget);
|
|
|
|
|
|
|
|
gimp_container_menu_item_selected (GIMP_CONTAINER_MENU (data),
|
|
|
|
GIMP_PREVIEW (menu_item->preview)->viewable);
|
|
|
|
}
|