gimp/app/widgets/gimpcontainermenuimpl.c
Michael Natterer 18dd072836 app/gimpprogress.[ch] s/GDisplay/GimpDisplay/
2001-10-16  Michael Natterer  <mitch@gimp.org>

	* app/gimpprogress.[ch]
	* app/undo.c: s/GDisplay/GimpDisplay/

	* app/plug_in.[ch]: removed unused boolean "destroy" field of
	the PlugIn struct.

	* app/core/gimpedit.c: don't include "app_procs.h"

	* app/display/gimpdisplay-callbacks.c: moved the "grab_abd_scroll"
	stuff from gimpdisplay-scroll.* here (less complicated and easier
	to cleanup...)

	* app/display/gimpdisplay-scroll.[ch]: removed here.

	* app/display/gimpdisplay-render.[ch]
	* app/display/gimpdisplay-selection.[ch]
	* app/display/gimpdisplayshell.c: s/GDisplay/GimpDisplay/g

	* app/display/gimpdisplay.[ch]: ditto, removed gdisplay_active()
	which was just a wrapper around
	"gimp_context_get_display (gimp_get_user_context (the_gimp))"
	(which is more to type but makes the use of the global
	"the_gimp" variable more obvious).

	* app/gui/color-area.h
	* app/gui/edit-commands.c
	* app/gui/file-commands.c
	* app/gui/file-dialog-utils.c
	* app/gui/image-commands.c
	* app/gui/info-window.h
	* app/gui/paths-dialog.h
	* app/gui/select-commands.c
	* app/gui/tool-options-dialog.c
	* app/gui/tools-commands.c
	* app/gui/view-commands.c: s/GDisplay/GimpDisplay/, gdisplay_active()
	removal, include "app_procs.h" for "the_gimp".

	* app/tools/gimpbezierselecttool.h
	* app/tools/gimpbrightnesscontrasttool.[ch]
	* app/tools/gimpbycolorselecttool.c
	* app/tools/gimpcolorbalancetool.[ch]
	* app/tools/gimpcurvestool.[ch]
	* app/tools/gimpeditselectiontool.h
	* app/tools/gimphistogramtool.[ch]
	* app/tools/gimphuesaturationtool.[ch]
	* app/tools/gimplevelstool.[ch]
	* app/tools/gimpmovetool.h
	* app/tools/gimpperspectivetool.h
	* app/tools/gimpposterizetool.[ch]
	* app/tools/gimprotatetool.h
	* app/tools/gimpscaletool.h
	* app/tools/gimpsheartool.h
	* app/tools/gimptexttool.h
	* app/tools/gimpthresholdtool.[ch]
	* app/tools/gimptool.[ch]
	* app/tools/gimptransformtool.h
	* app/tools/tool_manager.[ch]: lots of s/GDisplay/GimpDisplay/, made
	all *_dialog_hide() functions private, cleanup.

	* app/widgets/*: removed GtkType and gtk_type_* stuff entirely and
	use GObject functions, removed lots of empty "destroy" methods and
	use more type checking class cast macros instead of casting
	directly.

	* app/widgets/gimpcontainermenu.c: fixed item insert order.

	* app/widgets/gimphistogramview.[ch]: cleaned up and renamed all
	functions.

	* app/widgets/gimpwidgets-utils.[ch]: removed gimp_dialog_hide() as
	Gtk+ does the right thing (TM) now.

	* tools/pdbgen/pdb/color.pdb: implemented "histogram" without
	digging into tools/ and widgets/ (needs to be done for all
	color PDB functions).

	* tools/pdbgen/pdb/gimprc.pdb: no need to use "the_gimp" in a PDB
	function as a "Gimp" pointer is passed to them all.

	* tools/pdbgen/pdb/image.pdb: don't include "app_procs.h"

	* app/pdb/color_cmds.c
	* app/pdb/gimprc_cmds.c
	* app/pdb/image_cmds.c: regenerated.

	* app/pdb/procedural_db.c: don't include "app_procs.h"
2001-10-17 11:33:43 +00:00

330 lines
9.4 KiB
C

/* The GIMP -- an image manipulation program
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* gimpcontainermenuimpl.c
* Copyright (C) 2001 Michael Natterer
*
* 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>
#include "widgets-types.h"
#include "core/gimpcontainer.h"
#include "core/gimpcontext.h"
#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;
GType
gimp_container_menu_impl_get_type (void)
{
static GType menu_type = 0;
if (! menu_type)
{
static const GTypeInfo menu_info =
{
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,
};
menu_type = g_type_register_static (GIMP_TYPE_CONTAINER_MENU,
"GimpContainerMenuImpl",
&menu_info, 0);
}
return menu_type;
}
static void
gimp_container_menu_impl_class_init (GimpContainerMenuImplClass *klass)
{
GimpContainerMenuClass *container_menu_class;
container_menu_class = GIMP_CONTAINER_MENU_CLASS (klass);
parent_class = g_type_class_peek_parent (klass);
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);
menu_impl = g_object_new (GIMP_TYPE_CONTAINER_MENU_IMPL, NULL);
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 +
2 * menu_impl->empty_item->style->ythickness);
gtk_widget_set_sensitive (menu_impl->empty_item, FALSE);
gtk_widget_show (menu_impl->empty_item);
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_impl->empty_item);
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);
gimp_menu_item_set_name_func (GIMP_MENU_ITEM (menu_item),
menu->get_name_func);
g_signal_connect (G_OBJECT (menu_item), "activate",
G_CALLBACK (gimp_container_menu_impl_item_selected),
menu);
gtk_menu_shell_insert (GTK_MENU_SHELL (menu), menu_item, index);
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)
{
gboolean active;
active = (gtk_menu_get_active (GTK_MENU (menu)) == menu_item);
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);
if (active)
gimp_container_menu_impl_set_history (menu, 0);
}
}
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)
{
gboolean active;
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);
}