gimp/app/widgets/gimpcontainermenuimpl.c
Michael Natterer 48bf4fb7b2 don't scale the preview up if the buffer is too small.
2003-03-01  Michael Natterer  <mitch@gimp.org>

	* app/core/gimpbuffer.c: don't scale the preview up if the
	buffer is too small.

	* app/core/gimppattern.c: don't add a white border around the
	preview if the pattern is too small.

	* app/widgets/gimppreviewrenderer.[ch]: new object. A buffer
	that updates itself on GimpViewable changes and can render
	itself to any widget. Basically GimpPreview reduced to the
	render and draw code.

	* app/widgets/gimppreview.[ch]: removed all rendering and drawing
	code and keep a GimpPreviewRenderer instance. Connect to its
	"update" signal for queuing draws on the preview.

	* app/widgets/gimpcellrendererviewable.[ch]
	* app/widgets/gimpcontainertreeview.c: same here: removed
	rendering and drawing code and keep GimpPreviewRenderers in the
	list store.  Delays preview creation for GtkTreeViews until the
	buffer is really needed for drawing and adds idle preview updating
	on viewable changes.

	* app/widgets/gimppreview-utils.[ch]
	* app/widgets/gimpbrushpreview.[ch]
	* app/widgets/gimpbufferpreview.[ch]
	* app/widgets/gimpdrawablepreview.[ch]
	* app/widgets/gimpimagepreview.[ch]: removed...

	* app/widgets/gimppreviewrenderer-utils.[ch]
	* app/widgets/gimppreviewrendererbrush.[ch]
	* app/widgets/gimppreviewrendererdrawable.[ch]
	* app/widgets/gimppreviewrendererimage.[ch]: ...and converted to
	GimpPreviewRenderer subclasses.

	* app/display/gimpnavigationview.c
	* app/gui/palette-import-dialog.c
	* app/widgets/Makefile.am
	* app/widgets/widgets-enums.h
	* app/widgets/widgets-types.h
	* app/widgets/gimpchannellistview.c
	* app/widgets/gimpcomponentlistitem.c
	* app/widgets/gimpcontainergridview.c
	* app/widgets/gimpcontainermenuimpl.c
	* app/widgets/gimplayerlistitem.c
	* app/widgets/gimplistitem.c
	* app/widgets/gimpnavigationpreview.[ch]
	* app/widgets/gimpselectioneditor.c
	* app/widgets/gimpvectorslistview.c: changed accordingly.
2003-03-01 03:53:41 +00:00

335 lines
9.6 KiB
C

/* The GIMP -- an image manipulation program
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* gimpcontainermenuimpl.c
* Copyright (C) 2001 Michael Natterer <mitch@gimp.org>
*
* 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"
#include "gimppreviewrenderer.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 <= GIMP_PREVIEW_MAX_SIZE, 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_size_request (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 (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))
{
if (GIMP_IS_MENU_ITEM (list->data))
{
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)->renderer->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);
}