2001-02-06 05:52:57 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2001-04-22 08:38:56 +08:00
|
|
|
* gimpcontainergridview.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
|
|
|
*
|
2001-02-06 05:52:57 +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-03-12 01:24:47 +08:00
|
|
|
#include "libgimpcolor/gimpcolor.h"
|
|
|
|
|
2001-05-08 11:48:54 +08:00
|
|
|
#include "widgets-types.h"
|
2001-02-06 05:52:57 +08:00
|
|
|
|
2001-05-09 10:32:03 +08:00
|
|
|
#include "core/gimpcontainer.h"
|
|
|
|
#include "core/gimpcontext.h"
|
|
|
|
|
2001-02-06 05:52:57 +08:00
|
|
|
#include "gimpcontainergridview.h"
|
|
|
|
#include "gimppreview.h"
|
2002-03-16 23:02:23 +08:00
|
|
|
#include "gtkhwrapbox.h"
|
2001-02-06 05:52:57 +08:00
|
|
|
|
2001-05-13 19:35:20 +08:00
|
|
|
#include "libgimp/gimpintl.h"
|
|
|
|
|
2001-02-06 05:52:57 +08:00
|
|
|
|
|
|
|
static void gimp_container_grid_view_class_init (GimpContainerGridViewClass *klass);
|
|
|
|
static void gimp_container_grid_view_init (GimpContainerGridView *panel);
|
|
|
|
|
|
|
|
static gpointer gimp_container_grid_view_insert_item (GimpContainerView *view,
|
|
|
|
GimpViewable *viewable,
|
|
|
|
gint index);
|
|
|
|
static void gimp_container_grid_view_remove_item (GimpContainerView *view,
|
|
|
|
GimpViewable *viewable,
|
|
|
|
gpointer insert_data);
|
2001-02-18 05:20:10 +08:00
|
|
|
static void gimp_container_grid_view_reorder_item (GimpContainerView *view,
|
|
|
|
GimpViewable *viewable,
|
|
|
|
gint new_index,
|
|
|
|
gpointer insert_data);
|
2001-02-08 07:14:14 +08:00
|
|
|
static void gimp_container_grid_view_select_item (GimpContainerView *view,
|
|
|
|
GimpViewable *viewable,
|
|
|
|
gpointer insert_data);
|
2001-02-06 05:52:57 +08:00
|
|
|
static void gimp_container_grid_view_clear_items (GimpContainerView *view);
|
2001-02-06 07:14:14 +08:00
|
|
|
static void gimp_container_grid_view_set_preview_size (GimpContainerView *view);
|
2001-02-07 23:01:52 +08:00
|
|
|
static void gimp_container_grid_view_item_selected (GtkWidget *widget,
|
|
|
|
gpointer data);
|
2001-02-27 22:14:13 +08:00
|
|
|
static void gimp_container_grid_view_item_activated (GtkWidget *widget,
|
2001-02-19 03:44:28 +08:00
|
|
|
gpointer data);
|
2001-07-09 05:44:52 +08:00
|
|
|
static void gimp_container_grid_view_item_context (GtkWidget *widget,
|
|
|
|
gpointer data);
|
2001-02-08 07:14:14 +08:00
|
|
|
static void gimp_container_grid_view_highlight_item (GimpContainerView *view,
|
|
|
|
GimpViewable *viewable,
|
|
|
|
gpointer insert_data);
|
2001-02-06 05:52:57 +08:00
|
|
|
|
2002-03-16 23:02:23 +08:00
|
|
|
static void gimp_container_grid_view_vieport_resized (GtkWidget *widget,
|
|
|
|
GtkAllocation *allocation,
|
|
|
|
GimpContainerGridView *view);
|
|
|
|
|
2001-02-06 05:52:57 +08:00
|
|
|
|
|
|
|
static GimpContainerViewClass *parent_class = NULL;
|
|
|
|
|
2001-03-12 01:24:47 +08:00
|
|
|
static GimpRGB white_color;
|
|
|
|
static GimpRGB black_color;
|
|
|
|
|
2001-02-06 05:52:57 +08:00
|
|
|
|
2001-10-17 19:33:43 +08:00
|
|
|
GType
|
2001-02-06 05:52:57 +08:00
|
|
|
gimp_container_grid_view_get_type (void)
|
|
|
|
{
|
2001-10-17 19:33:43 +08:00
|
|
|
static GType view_type = 0;
|
2001-02-06 05:52:57 +08:00
|
|
|
|
2001-10-17 19:33:43 +08:00
|
|
|
if (! view_type)
|
2001-02-06 05:52:57 +08:00
|
|
|
{
|
2001-10-17 19:33:43 +08:00
|
|
|
static const GTypeInfo view_info =
|
2001-02-06 05:52:57 +08:00
|
|
|
{
|
2001-10-17 19:33:43 +08:00
|
|
|
sizeof (GimpContainerGridViewClass),
|
|
|
|
NULL, /* base_init */
|
|
|
|
NULL, /* base_finalize */
|
|
|
|
(GClassInitFunc) gimp_container_grid_view_class_init,
|
|
|
|
NULL, /* class_finalize */
|
|
|
|
NULL, /* class_data */
|
|
|
|
sizeof (GimpContainerGridView),
|
|
|
|
0, /* n_preallocs */
|
|
|
|
(GInstanceInitFunc) gimp_container_grid_view_init,
|
2001-02-06 05:52:57 +08:00
|
|
|
};
|
|
|
|
|
2001-10-17 19:33:43 +08:00
|
|
|
view_type = g_type_register_static (GIMP_TYPE_CONTAINER_VIEW,
|
|
|
|
"GimpContainerGridView",
|
|
|
|
&view_info, 0);
|
2001-02-06 05:52:57 +08:00
|
|
|
}
|
|
|
|
|
2001-10-17 19:33:43 +08:00
|
|
|
return view_type;
|
2001-02-06 05:52:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_container_grid_view_class_init (GimpContainerGridViewClass *klass)
|
|
|
|
{
|
|
|
|
GimpContainerViewClass *container_view_class;
|
|
|
|
|
2001-10-17 19:33:43 +08:00
|
|
|
container_view_class = GIMP_CONTAINER_VIEW_CLASS (klass);
|
2001-02-06 05:52:57 +08:00
|
|
|
|
2001-10-17 19:33:43 +08:00
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
2001-02-06 05:52:57 +08:00
|
|
|
|
2001-02-06 07:14:14 +08:00
|
|
|
container_view_class->insert_item = gimp_container_grid_view_insert_item;
|
|
|
|
container_view_class->remove_item = gimp_container_grid_view_remove_item;
|
2001-02-18 05:20:10 +08:00
|
|
|
container_view_class->reorder_item = gimp_container_grid_view_reorder_item;
|
2001-02-08 07:14:14 +08:00
|
|
|
container_view_class->select_item = gimp_container_grid_view_select_item;
|
2001-02-06 07:14:14 +08:00
|
|
|
container_view_class->clear_items = gimp_container_grid_view_clear_items;
|
|
|
|
container_view_class->set_preview_size = gimp_container_grid_view_set_preview_size;
|
2001-02-06 07:44:19 +08:00
|
|
|
|
2001-03-12 01:24:47 +08:00
|
|
|
gimp_rgba_set (&white_color, 1.0, 1.0, 1.0, 1.0);
|
|
|
|
gimp_rgba_set (&black_color, 0.0, 0.0, 0.0, 1.0);
|
2001-02-06 05:52:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_container_grid_view_init (GimpContainerGridView *grid_view)
|
|
|
|
{
|
2002-03-16 23:02:23 +08:00
|
|
|
grid_view->rows = 1;
|
|
|
|
grid_view->columns = 1;
|
|
|
|
|
2001-05-13 19:35:20 +08:00
|
|
|
grid_view->name_label = gtk_label_new (_("(None)"));
|
|
|
|
gtk_misc_set_alignment (GTK_MISC (grid_view->name_label), 0.0, 0.5);
|
|
|
|
gtk_misc_set_padding (GTK_MISC (grid_view->name_label),
|
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
|
|
|
grid_view->name_label->style->xthickness, 0);
|
2001-05-13 19:35:20 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (grid_view), grid_view->name_label,
|
|
|
|
FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (grid_view->name_label);
|
|
|
|
|
2001-02-09 07:24:06 +08:00
|
|
|
grid_view->scrolled_win = gtk_scrolled_window_new (NULL, NULL);
|
|
|
|
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (grid_view->scrolled_win),
|
2001-02-06 23:57:07 +08:00
|
|
|
GTK_POLICY_NEVER,
|
2001-02-06 05:52:57 +08:00
|
|
|
GTK_POLICY_ALWAYS);
|
2001-02-09 07:24:06 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (grid_view), grid_view->scrolled_win,
|
|
|
|
TRUE, TRUE, 0);
|
2001-08-05 04:38:54 +08:00
|
|
|
gtk_widget_show (grid_view->scrolled_win);
|
2001-02-08 12:16:41 +08:00
|
|
|
|
2001-08-05 04:38:54 +08:00
|
|
|
GIMP_CONTAINER_VIEW (grid_view)->dnd_widget = grid_view->scrolled_win;
|
2001-02-08 12:16:41 +08:00
|
|
|
|
2002-03-16 23:02:23 +08:00
|
|
|
grid_view->wrap_box = gtk_hwrap_box_new (FALSE);
|
|
|
|
gtk_scrolled_window_add_with_viewport (GTK_SCROLLED_WINDOW (grid_view->scrolled_win),
|
|
|
|
grid_view->wrap_box);
|
2001-08-05 04:38:54 +08:00
|
|
|
gtk_widget_show (grid_view->wrap_box);
|
2001-02-06 05:52:57 +08:00
|
|
|
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_connect (grid_view->wrap_box->parent, "size_allocate",
|
2002-03-16 23:02:23 +08:00
|
|
|
G_CALLBACK (gimp_container_grid_view_vieport_resized),
|
|
|
|
grid_view);
|
|
|
|
|
2001-02-06 05:52:57 +08:00
|
|
|
gtk_container_set_focus_vadjustment
|
2001-02-09 07:24:06 +08:00
|
|
|
(GTK_CONTAINER (grid_view->wrap_box->parent),
|
2002-03-16 23:02:23 +08:00
|
|
|
gtk_scrolled_window_get_vadjustment (GTK_SCROLLED_WINDOW
|
|
|
|
(grid_view->scrolled_win)));
|
2001-02-06 23:57:07 +08:00
|
|
|
|
2001-02-09 07:24:06 +08:00
|
|
|
GTK_WIDGET_UNSET_FLAGS (GTK_SCROLLED_WINDOW
|
|
|
|
(grid_view->scrolled_win)->vscrollbar,
|
2001-02-06 05:52:57 +08:00
|
|
|
GTK_CAN_FOCUS);
|
|
|
|
|
2001-02-09 07:24:06 +08:00
|
|
|
GTK_WIDGET_SET_FLAGS (grid_view->wrap_box->parent, GTK_CAN_FOCUS);
|
2001-02-06 05:52:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget *
|
|
|
|
gimp_container_grid_view_new (GimpContainer *container,
|
2001-02-07 23:01:52 +08:00
|
|
|
GimpContext *context,
|
2001-02-10 05:49:47 +08:00
|
|
|
gint preview_size,
|
2001-10-23 01:27:46 +08:00
|
|
|
gboolean reorderable,
|
2001-02-07 05:43:59 +08:00
|
|
|
gint min_items_x,
|
|
|
|
gint min_items_y)
|
2001-02-06 05:52:57 +08:00
|
|
|
{
|
|
|
|
GimpContainerGridView *grid_view;
|
|
|
|
GimpContainerView *view;
|
2001-02-09 07:24:06 +08:00
|
|
|
gint window_border;
|
2001-02-06 05:52:57 +08:00
|
|
|
|
2001-02-20 06:54:12 +08:00
|
|
|
g_return_val_if_fail (! container || GIMP_IS_CONTAINER (container), NULL);
|
2001-02-07 23:01:52 +08:00
|
|
|
g_return_val_if_fail (! context || GIMP_IS_CONTEXT (context), NULL);
|
2003-01-05 02:47:55 +08:00
|
|
|
g_return_val_if_fail (preview_size > 0 &&
|
|
|
|
preview_size <= GIMP_PREVIEW_MAX_SIZE, NULL);
|
2001-02-07 05:43:59 +08:00
|
|
|
g_return_val_if_fail (min_items_x > 0 && min_items_x <= 64, NULL);
|
|
|
|
g_return_val_if_fail (min_items_y > 0 && min_items_y <= 64, NULL);
|
2001-02-06 05:52:57 +08:00
|
|
|
|
2001-08-10 22:41:39 +08:00
|
|
|
grid_view = g_object_new (GIMP_TYPE_CONTAINER_GRID_VIEW, NULL);
|
2001-02-06 05:52:57 +08:00
|
|
|
|
|
|
|
view = GIMP_CONTAINER_VIEW (grid_view);
|
|
|
|
|
2001-02-10 05:49:47 +08:00
|
|
|
view->preview_size = preview_size;
|
2001-10-23 01:27:46 +08:00
|
|
|
view->reorderable = reorderable ? TRUE : FALSE;
|
2001-02-06 07:14:14 +08:00
|
|
|
|
2001-02-09 07:24:06 +08:00
|
|
|
window_border =
|
|
|
|
GTK_SCROLLED_WINDOW (grid_view->scrolled_win)->vscrollbar->requisition.width +
|
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_SCROLLED_WINDOW_GET_CLASS (grid_view->scrolled_win)->scrollbar_spacing +
|
|
|
|
grid_view->scrolled_win->style->xthickness * 4;
|
2001-02-09 07:24:06 +08:00
|
|
|
|
2001-12-29 21:26:29 +08:00
|
|
|
gtk_widget_set_size_request (grid_view->scrolled_win,
|
|
|
|
(preview_size + 2) * min_items_x + window_border,
|
|
|
|
(preview_size + 2) * min_items_y + window_border);
|
2001-02-07 05:43:59 +08:00
|
|
|
|
2001-02-20 06:54:12 +08:00
|
|
|
if (container)
|
|
|
|
gimp_container_view_set_container (view, container);
|
2001-02-06 05:52:57 +08:00
|
|
|
|
2001-02-07 23:01:52 +08:00
|
|
|
gimp_container_view_set_context (view, context);
|
|
|
|
|
2001-02-06 05:52:57 +08:00
|
|
|
return GTK_WIDGET (grid_view);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gpointer
|
|
|
|
gimp_container_grid_view_insert_item (GimpContainerView *view,
|
|
|
|
GimpViewable *viewable,
|
|
|
|
gint index)
|
|
|
|
{
|
|
|
|
GimpContainerGridView *grid_view;
|
|
|
|
GtkWidget *preview;
|
|
|
|
|
|
|
|
grid_view = GIMP_CONTAINER_GRID_VIEW (view);
|
|
|
|
|
2001-02-09 23:12:01 +08:00
|
|
|
preview = gimp_preview_new_full (viewable,
|
2001-02-10 05:49:47 +08:00
|
|
|
view->preview_size,
|
|
|
|
view->preview_size,
|
2001-02-09 23:12:01 +08:00
|
|
|
1,
|
|
|
|
FALSE, TRUE, TRUE);
|
2001-02-08 07:14:14 +08:00
|
|
|
|
2001-03-12 01:24:47 +08:00
|
|
|
GIMP_PREVIEW (preview)->border_color = white_color;
|
2001-02-08 07:14:14 +08:00
|
|
|
|
2001-02-06 23:57:07 +08:00
|
|
|
gtk_wrap_box_pack (GTK_WRAP_BOX (grid_view->wrap_box), preview,
|
|
|
|
FALSE, FALSE, FALSE, FALSE);
|
2001-02-06 05:52:57 +08:00
|
|
|
|
2001-02-06 07:14:14 +08:00
|
|
|
if (index != -1)
|
2001-02-06 23:57:07 +08:00
|
|
|
gtk_wrap_box_reorder_child (GTK_WRAP_BOX (grid_view->wrap_box),
|
2001-02-06 07:14:14 +08:00
|
|
|
preview, index);
|
|
|
|
|
|
|
|
gtk_widget_show (preview);
|
2001-02-06 05:52:57 +08:00
|
|
|
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_connect (preview, "clicked",
|
2001-07-25 07:11:30 +08:00
|
|
|
G_CALLBACK (gimp_container_grid_view_item_selected),
|
|
|
|
view);
|
2001-02-07 23:01:52 +08:00
|
|
|
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_connect (preview, "double_clicked",
|
2001-07-25 07:11:30 +08:00
|
|
|
G_CALLBACK (gimp_container_grid_view_item_activated),
|
|
|
|
view);
|
2001-02-19 03:44:28 +08:00
|
|
|
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_connect (preview, "context",
|
2001-07-25 07:11:30 +08:00
|
|
|
G_CALLBACK (gimp_container_grid_view_item_context),
|
|
|
|
view);
|
2001-07-09 05:44:52 +08:00
|
|
|
|
2001-02-06 05:52:57 +08:00
|
|
|
return (gpointer) preview;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_container_grid_view_remove_item (GimpContainerView *view,
|
|
|
|
GimpViewable *viewable,
|
|
|
|
gpointer insert_data)
|
|
|
|
{
|
|
|
|
GimpContainerGridView *grid_view;
|
|
|
|
GtkWidget *preview;
|
|
|
|
|
|
|
|
grid_view = GIMP_CONTAINER_GRID_VIEW (view);
|
|
|
|
preview = GTK_WIDGET (insert_data);
|
|
|
|
|
|
|
|
if (preview)
|
|
|
|
{
|
2001-07-25 07:11:30 +08:00
|
|
|
if (g_object_get_data (G_OBJECT (view), "last_selected_item") == preview)
|
2001-02-08 12:16:41 +08:00
|
|
|
{
|
2001-07-25 07:11:30 +08:00
|
|
|
g_object_set_data (G_OBJECT (view), "last_selected_item", NULL);
|
2001-02-08 12:16:41 +08:00
|
|
|
}
|
|
|
|
|
2001-02-06 23:57:07 +08:00
|
|
|
gtk_container_remove (GTK_CONTAINER (grid_view->wrap_box), preview);
|
2001-02-06 05:52:57 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-02-18 05:20:10 +08:00
|
|
|
static void
|
|
|
|
gimp_container_grid_view_reorder_item (GimpContainerView *view,
|
|
|
|
GimpViewable *viewable,
|
|
|
|
gint new_index,
|
|
|
|
gpointer insert_data)
|
|
|
|
{
|
|
|
|
GimpContainerGridView *grid_view;
|
|
|
|
GtkWidget *preview;
|
|
|
|
|
|
|
|
grid_view = GIMP_CONTAINER_GRID_VIEW (view);
|
|
|
|
preview = GTK_WIDGET (insert_data);
|
|
|
|
|
|
|
|
gtk_wrap_box_reorder_child (GTK_WRAP_BOX (grid_view->wrap_box),
|
|
|
|
preview, new_index);
|
|
|
|
}
|
|
|
|
|
2001-02-08 07:14:14 +08:00
|
|
|
static void
|
|
|
|
gimp_container_grid_view_select_item (GimpContainerView *view,
|
|
|
|
GimpViewable *viewable,
|
|
|
|
gpointer insert_data)
|
|
|
|
{
|
|
|
|
gimp_container_grid_view_highlight_item (view, viewable, insert_data);
|
|
|
|
}
|
|
|
|
|
2001-02-06 05:52:57 +08:00
|
|
|
static void
|
|
|
|
gimp_container_grid_view_clear_items (GimpContainerView *view)
|
|
|
|
{
|
|
|
|
GimpContainerGridView *grid_view;
|
|
|
|
|
|
|
|
grid_view = GIMP_CONTAINER_GRID_VIEW (view);
|
|
|
|
|
2001-07-25 07:11:30 +08:00
|
|
|
g_object_set_data (G_OBJECT (view), "last_selected_item", NULL);
|
2001-02-08 12:16:41 +08:00
|
|
|
|
2001-02-06 23:57:07 +08:00
|
|
|
while (GTK_WRAP_BOX (grid_view->wrap_box)->children)
|
|
|
|
gtk_container_remove (GTK_CONTAINER (grid_view->wrap_box),
|
|
|
|
GTK_WRAP_BOX (grid_view->wrap_box)->children->widget);
|
2001-02-08 12:16:41 +08:00
|
|
|
|
|
|
|
if (GIMP_CONTAINER_VIEW_CLASS (parent_class)->clear_items)
|
|
|
|
GIMP_CONTAINER_VIEW_CLASS (parent_class)->clear_items (view);
|
2001-02-06 07:14:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_container_grid_view_set_preview_size (GimpContainerView *view)
|
|
|
|
{
|
|
|
|
GimpContainerGridView *grid_view;
|
|
|
|
GtkWrapBoxChild *child;
|
|
|
|
|
|
|
|
grid_view = GIMP_CONTAINER_GRID_VIEW (view);
|
|
|
|
|
2001-02-06 23:57:07 +08:00
|
|
|
for (child = GTK_WRAP_BOX (grid_view->wrap_box)->children;
|
2001-02-06 07:14:14 +08:00
|
|
|
child;
|
|
|
|
child = child->next)
|
2001-02-06 05:52:57 +08:00
|
|
|
{
|
2001-02-08 07:14:14 +08:00
|
|
|
GimpPreview *preview;
|
|
|
|
|
|
|
|
preview = GIMP_PREVIEW (child->widget);
|
|
|
|
|
2001-03-06 21:28:39 +08:00
|
|
|
gimp_preview_set_size (preview, view->preview_size, preview->border_width);
|
2001-02-06 05:52:57 +08:00
|
|
|
}
|
2001-02-06 07:14:14 +08:00
|
|
|
|
2001-02-06 23:57:07 +08:00
|
|
|
gtk_widget_queue_resize (grid_view->wrap_box);
|
2001-02-06 05:52:57 +08:00
|
|
|
}
|
2001-02-07 23:01:52 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_container_grid_view_item_selected (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
gimp_container_view_item_selected (GIMP_CONTAINER_VIEW (data),
|
|
|
|
GIMP_PREVIEW (widget)->viewable);
|
|
|
|
}
|
2001-02-08 07:14:14 +08:00
|
|
|
|
2001-02-19 03:44:28 +08:00
|
|
|
static void
|
2001-02-27 22:14:13 +08:00
|
|
|
gimp_container_grid_view_item_activated (GtkWidget *widget,
|
|
|
|
gpointer data)
|
2001-02-19 03:44:28 +08:00
|
|
|
{
|
2001-02-27 22:14:13 +08:00
|
|
|
gimp_container_view_item_activated (GIMP_CONTAINER_VIEW (data),
|
|
|
|
GIMP_PREVIEW (widget)->viewable);
|
2001-02-19 03:44:28 +08:00
|
|
|
}
|
|
|
|
|
2001-07-09 05:44:52 +08:00
|
|
|
static void
|
|
|
|
gimp_container_grid_view_item_context (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
gimp_container_view_item_selected (GIMP_CONTAINER_VIEW (data),
|
|
|
|
GIMP_PREVIEW (widget)->viewable);
|
|
|
|
gimp_container_view_item_context (GIMP_CONTAINER_VIEW (data),
|
|
|
|
GIMP_PREVIEW (widget)->viewable);
|
|
|
|
}
|
|
|
|
|
2001-02-08 07:14:14 +08:00
|
|
|
static void
|
|
|
|
gimp_container_grid_view_highlight_item (GimpContainerView *view,
|
|
|
|
GimpViewable *viewable,
|
|
|
|
gpointer insert_data)
|
|
|
|
{
|
|
|
|
GimpContainerGridView *grid_view;
|
|
|
|
GimpPreview *preview;
|
|
|
|
|
|
|
|
grid_view = GIMP_CONTAINER_GRID_VIEW (view);
|
|
|
|
|
2001-07-25 07:11:30 +08:00
|
|
|
preview = g_object_get_data (G_OBJECT (view), "last_selected_item");
|
2001-02-08 07:14:14 +08:00
|
|
|
|
|
|
|
if (preview)
|
2001-03-12 01:24:47 +08:00
|
|
|
gimp_preview_set_border_color (preview, &white_color);
|
2001-02-08 07:14:14 +08:00
|
|
|
|
2001-02-08 12:16:41 +08:00
|
|
|
if (insert_data)
|
|
|
|
preview = GIMP_PREVIEW (insert_data);
|
|
|
|
else
|
|
|
|
preview = NULL;
|
2001-02-08 07:14:14 +08:00
|
|
|
|
|
|
|
if (preview)
|
|
|
|
{
|
2001-02-09 07:24:06 +08:00
|
|
|
GtkAdjustment *adj;
|
|
|
|
gint item_height;
|
|
|
|
gint index;
|
|
|
|
gint row;
|
|
|
|
|
|
|
|
adj = gtk_scrolled_window_get_vadjustment
|
|
|
|
(GTK_SCROLLED_WINDOW (grid_view->scrolled_win));
|
|
|
|
|
|
|
|
item_height = GTK_WIDGET (preview)->allocation.height;
|
|
|
|
|
|
|
|
index = gimp_container_get_child_index (view->container,
|
|
|
|
GIMP_OBJECT (viewable));
|
|
|
|
|
2002-03-16 23:02:23 +08:00
|
|
|
row = index / grid_view->columns;
|
2001-02-09 07:24:06 +08:00
|
|
|
|
|
|
|
if (row * item_height < adj->value)
|
|
|
|
{
|
|
|
|
gtk_adjustment_set_value (adj, row * item_height);
|
|
|
|
}
|
|
|
|
else if ((row + 1) * item_height > adj->value + adj->page_size)
|
|
|
|
{
|
|
|
|
gtk_adjustment_set_value (adj,
|
|
|
|
(row + 1) * item_height - adj->page_size);
|
|
|
|
}
|
|
|
|
|
2001-03-12 01:24:47 +08:00
|
|
|
gimp_preview_set_border_color (preview, &black_color);
|
2001-05-13 19:35:20 +08:00
|
|
|
|
|
|
|
if (view->get_name_func)
|
|
|
|
{
|
|
|
|
gchar *name;
|
|
|
|
|
2001-11-13 03:42:53 +08:00
|
|
|
name = view->get_name_func (GTK_WIDGET (preview), NULL);
|
2001-05-13 19:35:20 +08:00
|
|
|
|
|
|
|
gtk_label_set_text (GTK_LABEL (grid_view->name_label), name);
|
|
|
|
|
|
|
|
g_free (name);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gtk_label_set_text (GTK_LABEL (grid_view->name_label),
|
|
|
|
GIMP_OBJECT (viewable)->name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gtk_label_set_text (GTK_LABEL (grid_view->name_label), _("(None)"));
|
2001-02-08 07:14:14 +08:00
|
|
|
}
|
|
|
|
|
2001-07-25 07:11:30 +08:00
|
|
|
g_object_set_data (G_OBJECT (view), "last_selected_item", preview);
|
2001-02-08 07:14:14 +08:00
|
|
|
}
|
2002-03-16 23:02:23 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_container_grid_view_vieport_resized (GtkWidget *widget,
|
|
|
|
GtkAllocation *allocation,
|
|
|
|
GimpContainerGridView *grid_view)
|
|
|
|
{
|
|
|
|
GimpContainerView *view;
|
|
|
|
|
|
|
|
view = GIMP_CONTAINER_VIEW (grid_view);
|
|
|
|
|
|
|
|
if (view->container)
|
|
|
|
{
|
|
|
|
GList *children;
|
|
|
|
gint n_children;
|
|
|
|
|
|
|
|
children = gtk_container_get_children (GTK_CONTAINER (grid_view->wrap_box));
|
|
|
|
n_children = g_list_length (children);
|
|
|
|
|
|
|
|
if (children)
|
|
|
|
{
|
|
|
|
GtkRequisition preview_requisition;
|
|
|
|
gint columns;
|
|
|
|
gint rows;
|
|
|
|
|
|
|
|
gtk_widget_size_request (GTK_WIDGET (children->data),
|
|
|
|
&preview_requisition);
|
|
|
|
|
|
|
|
g_list_free (children);
|
|
|
|
|
|
|
|
columns = MAX (1, allocation->width / preview_requisition.width);
|
|
|
|
|
|
|
|
rows = n_children / columns;
|
|
|
|
|
|
|
|
if (n_children % columns)
|
|
|
|
rows++;
|
|
|
|
|
|
|
|
if ((rows != grid_view->rows) || (columns != grid_view->columns))
|
|
|
|
{
|
|
|
|
grid_view->rows = rows;
|
|
|
|
grid_view->columns = columns;
|
|
|
|
|
|
|
|
gtk_widget_set_size_request (grid_view->wrap_box,
|
|
|
|
columns * preview_requisition.width,
|
|
|
|
rows * preview_requisition.height);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|