mirror of https://github.com/GNOME/gimp.git
565 lines
19 KiB
C
565 lines
19 KiB
C
/* The GIMP -- an image manipulation program
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
*
|
|
* gimpcontainercombobox.c
|
|
* Copyright (C) 2003 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 <string.h>
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include "widgets-types.h"
|
|
|
|
#include "core/gimpcontainer.h"
|
|
#include "core/gimpcontext.h"
|
|
#include "core/gimpviewable.h"
|
|
|
|
#include "gimpcellrendererviewable.h"
|
|
#include "gimpcontainercombobox.h"
|
|
#include "gimpcontainerview.h"
|
|
#include "gimpviewrenderer.h"
|
|
|
|
|
|
enum
|
|
{
|
|
PROP_0,
|
|
PROP_ELLIPSIZE = GIMP_CONTAINER_VIEW_PROP_LAST + 1
|
|
};
|
|
|
|
enum
|
|
{
|
|
COLUMN_RENDERER,
|
|
COLUMN_NAME,
|
|
NUM_COLUMNS
|
|
};
|
|
|
|
static void gimp_container_combo_box_view_iface_init (GimpContainerViewInterface *iface);
|
|
|
|
static void gimp_container_combo_box_set_property (GObject *object,
|
|
guint property_id,
|
|
const GValue *value,
|
|
GParamSpec *pspec);
|
|
static void gimp_container_combo_box_get_property (GObject *object,
|
|
guint property_id,
|
|
GValue *value,
|
|
GParamSpec *pspec);
|
|
|
|
static void gimp_container_combo_box_unrealize (GtkWidget *widget);
|
|
|
|
static void gimp_container_combo_box_set_context (GimpContainerView *view,
|
|
GimpContext *context);
|
|
static gpointer gimp_container_combo_box_insert_item (GimpContainerView *view,
|
|
GimpViewable *viewable,
|
|
gint index);
|
|
static void gimp_container_combo_box_remove_item (GimpContainerView *view,
|
|
GimpViewable *viewable,
|
|
gpointer insert_data);
|
|
static void gimp_container_combo_box_reorder_item (GimpContainerView *view,
|
|
GimpViewable *viewable,
|
|
gint new_index,
|
|
gpointer insert_data);
|
|
static void gimp_container_combo_box_rename_item (GimpContainerView *view,
|
|
GimpViewable *viewable,
|
|
gpointer insert_data);
|
|
static gboolean gimp_container_combo_box_select_item (GimpContainerView *view,
|
|
GimpViewable *viewable,
|
|
gpointer insert_data);
|
|
static void gimp_container_combo_box_clear_items (GimpContainerView *view);
|
|
static void gimp_container_combo_box_set_view_size (GimpContainerView *view);
|
|
|
|
static void gimp_container_combo_box_changed (GtkComboBox *combo_box,
|
|
GimpContainerView *view);
|
|
static void gimp_container_combo_box_renderer_update (GimpViewRenderer *renderer,
|
|
GimpContainerView *view);
|
|
|
|
|
|
G_DEFINE_TYPE_WITH_CODE (GimpContainerComboBox, gimp_container_combo_box,
|
|
GTK_TYPE_COMBO_BOX,
|
|
G_IMPLEMENT_INTERFACE (GIMP_TYPE_CONTAINER_VIEW,
|
|
gimp_container_combo_box_view_iface_init))
|
|
|
|
#define parent_class gimp_container_combo_box_parent_class
|
|
|
|
static GimpContainerViewInterface *parent_view_iface = NULL;
|
|
|
|
|
|
static void
|
|
gimp_container_combo_box_class_init (GimpContainerComboBoxClass *klass)
|
|
{
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
|
|
|
|
object_class->set_property = gimp_container_combo_box_set_property;
|
|
object_class->get_property = gimp_container_combo_box_get_property;
|
|
|
|
widget_class->unrealize = gimp_container_combo_box_unrealize;
|
|
|
|
gimp_container_view_install_properties (object_class);
|
|
|
|
g_object_class_install_property (object_class,
|
|
PROP_ELLIPSIZE,
|
|
g_param_spec_enum ("ellipsize", NULL, NULL,
|
|
PANGO_TYPE_ELLIPSIZE_MODE,
|
|
PANGO_ELLIPSIZE_MIDDLE,
|
|
GIMP_PARAM_READWRITE |
|
|
G_PARAM_CONSTRUCT));
|
|
}
|
|
|
|
static void
|
|
gimp_container_combo_box_view_iface_init (GimpContainerViewInterface *iface)
|
|
{
|
|
parent_view_iface = g_type_interface_peek_parent (iface);
|
|
|
|
if (! parent_view_iface)
|
|
parent_view_iface = g_type_default_interface_peek (GIMP_TYPE_CONTAINER_VIEW);
|
|
|
|
iface->set_context = gimp_container_combo_box_set_context;
|
|
iface->insert_item = gimp_container_combo_box_insert_item;
|
|
iface->remove_item = gimp_container_combo_box_remove_item;
|
|
iface->reorder_item = gimp_container_combo_box_reorder_item;
|
|
iface->rename_item = gimp_container_combo_box_rename_item;
|
|
iface->select_item = gimp_container_combo_box_select_item;
|
|
iface->clear_items = gimp_container_combo_box_clear_items;
|
|
iface->set_view_size = gimp_container_combo_box_set_view_size;
|
|
|
|
iface->insert_data_free = (GDestroyNotify) g_free;
|
|
}
|
|
|
|
static void
|
|
gimp_container_combo_box_init (GimpContainerComboBox *combo_box)
|
|
{
|
|
GtkListStore *store;
|
|
GtkCellLayout *layout;
|
|
GtkCellRenderer *cell;
|
|
|
|
store = gtk_list_store_new (NUM_COLUMNS,
|
|
GIMP_TYPE_VIEW_RENDERER,
|
|
G_TYPE_STRING);
|
|
|
|
gtk_combo_box_set_model (GTK_COMBO_BOX (combo_box), GTK_TREE_MODEL (store));
|
|
|
|
g_object_unref (store);
|
|
|
|
layout = GTK_CELL_LAYOUT (combo_box);
|
|
|
|
cell = gimp_cell_renderer_viewable_new ();
|
|
gtk_cell_layout_pack_start (layout, cell, FALSE);
|
|
gtk_cell_layout_set_attributes (layout, cell,
|
|
"renderer", COLUMN_RENDERER,
|
|
NULL);
|
|
|
|
combo_box->viewable_renderer = cell;
|
|
|
|
cell = gtk_cell_renderer_text_new ();
|
|
gtk_cell_layout_pack_start (layout, cell, TRUE);
|
|
gtk_cell_layout_set_attributes (layout, cell,
|
|
"text", COLUMN_NAME,
|
|
NULL);
|
|
|
|
combo_box->text_renderer = cell;
|
|
|
|
g_signal_connect (combo_box, "changed",
|
|
G_CALLBACK (gimp_container_combo_box_changed),
|
|
combo_box);
|
|
|
|
}
|
|
|
|
static void
|
|
gimp_container_combo_box_set_property (GObject *object,
|
|
guint property_id,
|
|
const GValue *value,
|
|
GParamSpec *pspec)
|
|
{
|
|
GimpContainerComboBox *combo = GIMP_CONTAINER_COMBO_BOX (object);
|
|
|
|
switch (property_id)
|
|
{
|
|
case PROP_ELLIPSIZE:
|
|
g_object_set_property (G_OBJECT (combo->text_renderer),
|
|
pspec->name, value);
|
|
break;
|
|
|
|
default:
|
|
gimp_container_view_set_property (object, property_id, value, pspec);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
gimp_container_combo_box_get_property (GObject *object,
|
|
guint property_id,
|
|
GValue *value,
|
|
GParamSpec *pspec)
|
|
{
|
|
GimpContainerComboBox *combo = GIMP_CONTAINER_COMBO_BOX (object);
|
|
|
|
switch (property_id)
|
|
{
|
|
case PROP_ELLIPSIZE:
|
|
g_object_get_property (G_OBJECT (combo->text_renderer),
|
|
pspec->name, value);
|
|
break;
|
|
|
|
default:
|
|
gimp_container_view_get_property (object, property_id, value, pspec);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
gimp_container_combo_box_unrealize (GtkWidget *widget)
|
|
{
|
|
GtkTreeModel *model = gtk_combo_box_get_model (GTK_COMBO_BOX (widget));
|
|
GtkTreeIter iter;
|
|
gboolean iter_valid;
|
|
|
|
for (iter_valid = gtk_tree_model_get_iter_first (model, &iter);
|
|
iter_valid;
|
|
iter_valid = gtk_tree_model_iter_next (model, &iter))
|
|
{
|
|
GimpViewRenderer *renderer;
|
|
|
|
gtk_tree_model_get (model, &iter,
|
|
COLUMN_RENDERER, &renderer,
|
|
-1);
|
|
|
|
gimp_view_renderer_unrealize (renderer);
|
|
g_object_unref (renderer);
|
|
}
|
|
|
|
GTK_WIDGET_CLASS (parent_class)->unrealize (widget);
|
|
}
|
|
|
|
GtkWidget *
|
|
gimp_container_combo_box_new (GimpContainer *container,
|
|
GimpContext *context,
|
|
gint view_size,
|
|
gint view_border_width)
|
|
{
|
|
GtkWidget *combo_box;
|
|
GimpContainerView *view;
|
|
|
|
g_return_val_if_fail (container == NULL || GIMP_IS_CONTAINER (container),
|
|
NULL);
|
|
g_return_val_if_fail (context == NULL || GIMP_IS_CONTEXT (context), NULL);
|
|
|
|
combo_box = g_object_new (GIMP_TYPE_CONTAINER_COMBO_BOX, NULL);
|
|
|
|
view = GIMP_CONTAINER_VIEW (combo_box);
|
|
|
|
gimp_container_view_set_view_size (view, view_size, view_border_width);
|
|
|
|
if (container)
|
|
gimp_container_view_set_container (view, container);
|
|
|
|
if (context)
|
|
gimp_container_view_set_context (view, context);
|
|
|
|
return combo_box;
|
|
}
|
|
|
|
static void
|
|
gimp_container_combo_box_set (GimpContainerComboBox *combo_box,
|
|
GtkTreeIter *iter,
|
|
GimpViewable *viewable)
|
|
{
|
|
GimpContainerView *view = GIMP_CONTAINER_VIEW (combo_box);
|
|
GtkTreeModel *model;
|
|
GimpViewRenderer *renderer;
|
|
gchar *name;
|
|
gint view_size;
|
|
gint border_width;
|
|
|
|
model = gtk_combo_box_get_model (GTK_COMBO_BOX (combo_box));
|
|
|
|
view_size = gimp_container_view_get_view_size (view, &border_width);
|
|
|
|
name = gimp_viewable_get_description (viewable, NULL);
|
|
|
|
renderer = gimp_view_renderer_new (gimp_container_view_get_context (view),
|
|
G_TYPE_FROM_INSTANCE (viewable),
|
|
view_size, border_width,
|
|
FALSE);
|
|
gimp_view_renderer_set_viewable (renderer, viewable);
|
|
gimp_view_renderer_remove_idle (renderer);
|
|
|
|
g_signal_connect (renderer, "update",
|
|
G_CALLBACK (gimp_container_combo_box_renderer_update),
|
|
view);
|
|
|
|
gtk_list_store_set (GTK_LIST_STORE (model), iter,
|
|
COLUMN_RENDERER, renderer,
|
|
COLUMN_NAME, name,
|
|
-1);
|
|
|
|
g_object_unref (renderer);
|
|
g_free (name);
|
|
}
|
|
|
|
|
|
/* GimpContainerView methods */
|
|
|
|
static void
|
|
gimp_container_combo_box_set_context (GimpContainerView *view,
|
|
GimpContext *context)
|
|
{
|
|
GtkTreeModel *model = gtk_combo_box_get_model (GTK_COMBO_BOX (view));
|
|
|
|
parent_view_iface->set_context (view, context);
|
|
|
|
if (model)
|
|
{
|
|
GtkTreeIter iter;
|
|
gboolean iter_valid;
|
|
|
|
for (iter_valid = gtk_tree_model_get_iter_first (model, &iter);
|
|
iter_valid;
|
|
iter_valid = gtk_tree_model_iter_next (model, &iter))
|
|
{
|
|
GimpViewRenderer *renderer;
|
|
|
|
gtk_tree_model_get (model, &iter,
|
|
COLUMN_RENDERER, &renderer,
|
|
-1);
|
|
|
|
gimp_view_renderer_set_context (renderer, context);
|
|
g_object_unref (renderer);
|
|
}
|
|
}
|
|
}
|
|
|
|
static gpointer
|
|
gimp_container_combo_box_insert_item (GimpContainerView *view,
|
|
GimpViewable *viewable,
|
|
gint index)
|
|
{
|
|
GtkTreeModel *model = gtk_combo_box_get_model (GTK_COMBO_BOX (view));
|
|
GtkTreeIter *iter;
|
|
|
|
iter = g_new0 (GtkTreeIter, 1);
|
|
|
|
if (index == -1)
|
|
gtk_list_store_append (GTK_LIST_STORE (model), iter);
|
|
else
|
|
gtk_list_store_insert (GTK_LIST_STORE (model), iter, index);
|
|
|
|
/* GimpContainerViews don't select items by default */
|
|
if (gtk_tree_model_iter_n_children (model, NULL) == 1)
|
|
gtk_combo_box_set_active (GTK_COMBO_BOX (view), -1);
|
|
|
|
gimp_container_combo_box_set (GIMP_CONTAINER_COMBO_BOX (view),
|
|
iter, viewable);
|
|
|
|
return (gpointer) iter;
|
|
}
|
|
|
|
static void
|
|
gimp_container_combo_box_remove_item (GimpContainerView *view,
|
|
GimpViewable *viewable,
|
|
gpointer insert_data)
|
|
{
|
|
GtkTreeModel *model = gtk_combo_box_get_model (GTK_COMBO_BOX (view));
|
|
GtkTreeIter *iter = insert_data;
|
|
|
|
if (iter)
|
|
{
|
|
gtk_list_store_remove (GTK_LIST_STORE (model), iter);
|
|
|
|
/* If the store is now empty, clear out renderers from all cells
|
|
* so that they don't reference the viewables. See bug #149906.
|
|
*/
|
|
if (gtk_tree_model_iter_n_children (model, NULL) == 0)
|
|
{
|
|
g_object_set (GIMP_CONTAINER_COMBO_BOX (view)->viewable_renderer,
|
|
"renderer", NULL,
|
|
NULL);
|
|
}
|
|
}
|
|
}
|
|
|
|
static void
|
|
gimp_container_combo_box_reorder_item (GimpContainerView *view,
|
|
GimpViewable *viewable,
|
|
gint new_index,
|
|
gpointer insert_data)
|
|
{
|
|
GtkTreeModel *model = gtk_combo_box_get_model (GTK_COMBO_BOX (view));
|
|
GimpContainer *container = gimp_container_view_get_container (view);
|
|
GtkTreeIter *iter = insert_data;
|
|
|
|
if (!iter)
|
|
return;
|
|
|
|
if (new_index == -1 || new_index == container->num_children - 1)
|
|
{
|
|
gtk_list_store_move_before (GTK_LIST_STORE (model), iter, NULL);
|
|
}
|
|
else if (new_index == 0)
|
|
{
|
|
gtk_list_store_move_after (GTK_LIST_STORE (model), iter, NULL);
|
|
}
|
|
else
|
|
{
|
|
GtkTreePath *path;
|
|
gint old_index;
|
|
|
|
path = gtk_tree_model_get_path (model, iter);
|
|
old_index = gtk_tree_path_get_indices (path)[0];
|
|
gtk_tree_path_free (path);
|
|
|
|
if (new_index != old_index)
|
|
{
|
|
GtkTreeIter place;
|
|
|
|
path = gtk_tree_path_new_from_indices (new_index, -1);
|
|
gtk_tree_model_get_iter (model, &place, path);
|
|
gtk_tree_path_free (path);
|
|
|
|
if (new_index > old_index)
|
|
gtk_list_store_move_after (GTK_LIST_STORE (model), iter, &place);
|
|
else
|
|
gtk_list_store_move_before (GTK_LIST_STORE (model), iter, &place);
|
|
}
|
|
}
|
|
}
|
|
|
|
static void
|
|
gimp_container_combo_box_rename_item (GimpContainerView *view,
|
|
GimpViewable *viewable,
|
|
gpointer insert_data)
|
|
{
|
|
GtkTreeModel *model = gtk_combo_box_get_model (GTK_COMBO_BOX (view));
|
|
GtkTreeIter *iter = insert_data;
|
|
|
|
if (iter)
|
|
{
|
|
gchar *name = gimp_viewable_get_description (viewable, NULL);
|
|
|
|
gtk_list_store_set (GTK_LIST_STORE (model), iter,
|
|
COLUMN_NAME, name,
|
|
-1);
|
|
|
|
g_free (name);
|
|
}
|
|
}
|
|
|
|
static gboolean
|
|
gimp_container_combo_box_select_item (GimpContainerView *view,
|
|
GimpViewable *viewable,
|
|
gpointer insert_data)
|
|
{
|
|
GtkComboBox *combo_box = GTK_COMBO_BOX (view);
|
|
GtkTreeIter *iter = insert_data;
|
|
|
|
g_signal_handlers_block_by_func (combo_box,
|
|
gimp_container_combo_box_changed,
|
|
view);
|
|
|
|
if (iter)
|
|
{
|
|
gtk_combo_box_set_active_iter (combo_box, iter);
|
|
}
|
|
else
|
|
{
|
|
gtk_combo_box_set_active (combo_box, -1);
|
|
}
|
|
|
|
g_signal_handlers_unblock_by_func (combo_box,
|
|
gimp_container_combo_box_changed,
|
|
view);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static void
|
|
gimp_container_combo_box_clear_items (GimpContainerView *view)
|
|
{
|
|
GtkTreeModel *model = gtk_combo_box_get_model (GTK_COMBO_BOX (view));
|
|
|
|
gtk_list_store_clear (GTK_LIST_STORE (model));
|
|
|
|
parent_view_iface->clear_items (view);
|
|
}
|
|
|
|
static void
|
|
gimp_container_combo_box_set_view_size (GimpContainerView *view)
|
|
{
|
|
GtkTreeModel *model = gtk_combo_box_get_model (GTK_COMBO_BOX (view));
|
|
GtkTreeIter iter;
|
|
gboolean iter_valid;
|
|
gint view_size;
|
|
gint border_width;
|
|
|
|
view_size = gimp_container_view_get_view_size (view, &border_width);
|
|
|
|
for (iter_valid = gtk_tree_model_get_iter_first (model, &iter);
|
|
iter_valid;
|
|
iter_valid = gtk_tree_model_iter_next (model, &iter))
|
|
{
|
|
GimpViewRenderer *renderer;
|
|
|
|
gtk_tree_model_get (model, &iter,
|
|
COLUMN_RENDERER, &renderer,
|
|
-1);
|
|
|
|
gimp_view_renderer_set_size (renderer, view_size, border_width);
|
|
g_object_unref (renderer);
|
|
}
|
|
}
|
|
|
|
static void
|
|
gimp_container_combo_box_changed (GtkComboBox *combo_box,
|
|
GimpContainerView *view)
|
|
{
|
|
GtkTreeIter iter;
|
|
|
|
if (GTK_COMBO_BOX_CLASS (parent_class)->changed)
|
|
GTK_COMBO_BOX_CLASS (parent_class)->changed (combo_box);
|
|
|
|
if (gtk_combo_box_get_active_iter (combo_box, &iter))
|
|
{
|
|
GimpViewRenderer *renderer;
|
|
|
|
gtk_tree_model_get (gtk_combo_box_get_model (combo_box), &iter,
|
|
COLUMN_RENDERER, &renderer,
|
|
-1);
|
|
|
|
gimp_container_view_item_selected (view, renderer->viewable);
|
|
g_object_unref (renderer);
|
|
}
|
|
}
|
|
|
|
static void
|
|
gimp_container_combo_box_renderer_update (GimpViewRenderer *renderer,
|
|
GimpContainerView *view)
|
|
{
|
|
GtkTreeIter *iter = gimp_container_view_lookup (view, renderer->viewable);
|
|
|
|
if (iter)
|
|
{
|
|
GtkTreeModel *model = gtk_combo_box_get_model (GTK_COMBO_BOX (view));
|
|
GtkTreePath *path;
|
|
|
|
path = gtk_tree_model_get_path (model, iter);
|
|
gtk_tree_model_row_changed (model, path, iter);
|
|
gtk_tree_path_free (path);
|
|
}
|
|
}
|