2001-05-03 20:26:05 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* gimpchannellistview.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 <gtk/gtk.h>
|
|
|
|
|
|
|
|
#include "libgimpmath/gimpmath.h"
|
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
|
|
|
|
2001-05-08 11:48:54 +08:00
|
|
|
#include "widgets-types.h"
|
|
|
|
|
2001-05-09 10:32:03 +08:00
|
|
|
#include "core/gimpchannel.h"
|
|
|
|
#include "core/gimpcontainer.h"
|
|
|
|
#include "core/gimpimage.h"
|
|
|
|
#include "core/gimpimage-mask.h"
|
|
|
|
#include "core/gimpmarshal.h"
|
|
|
|
|
2001-09-26 07:23:09 +08:00
|
|
|
#include "display/gimpdisplay.h"
|
|
|
|
|
2001-05-08 11:48:54 +08:00
|
|
|
#include "gimpchannellistview.h"
|
|
|
|
#include "gimpcomponentlistitem.h"
|
|
|
|
#include "gimpdnd.h"
|
|
|
|
#include "gimpimagepreview.h"
|
|
|
|
#include "gimplistitem.h"
|
2001-05-03 20:26:05 +08:00
|
|
|
|
|
|
|
#include "libgimp/gimpintl.h"
|
|
|
|
|
|
|
|
|
|
|
|
static void gimp_channel_list_view_class_init (GimpChannelListViewClass *klass);
|
|
|
|
static void gimp_channel_list_view_init (GimpChannelListView *view);
|
|
|
|
|
|
|
|
static void gimp_channel_list_view_destroy (GtkObject *object);
|
|
|
|
|
|
|
|
static void gimp_channel_list_view_set_image (GimpDrawableListView *view,
|
|
|
|
GimpImage *gimage);
|
|
|
|
|
2001-05-07 01:56:10 +08:00
|
|
|
static void gimp_channel_list_view_select_item (GimpContainerView *view,
|
|
|
|
GimpViewable *item,
|
|
|
|
gpointer insert_data);
|
|
|
|
static void gimp_channel_list_view_set_preview_size (GimpContainerView *view);
|
2001-05-03 20:26:05 +08:00
|
|
|
|
|
|
|
static void gimp_channel_list_view_to_selection (GimpChannelListView *view,
|
2001-05-07 06:29:48 +08:00
|
|
|
GimpChannel *channel,
|
|
|
|
ChannelOps operation);
|
2001-05-03 20:26:05 +08:00
|
|
|
static void gimp_channel_list_view_toselection_clicked
|
|
|
|
(GtkWidget *widget,
|
|
|
|
GimpChannelListView *view);
|
2001-05-07 06:29:48 +08:00
|
|
|
static void gimp_channel_list_view_toselection_extended_clicked
|
|
|
|
(GtkWidget *widget,
|
|
|
|
guint state,
|
|
|
|
GimpChannelListView *view);
|
2001-05-03 20:26:05 +08:00
|
|
|
|
2001-05-07 00:14:34 +08:00
|
|
|
static void gimp_channel_list_view_create_components
|
|
|
|
(GimpChannelListView *view);
|
2001-05-07 06:29:48 +08:00
|
|
|
static void gimp_channel_list_view_clear_components
|
|
|
|
(GimpChannelListView *view);
|
2001-05-07 00:14:34 +08:00
|
|
|
|
|
|
|
static void gimp_channel_list_view_mode_changed (GimpImage *gimage,
|
|
|
|
GimpChannelListView *view);
|
2001-05-03 20:26:05 +08:00
|
|
|
|
2001-05-07 06:29:48 +08:00
|
|
|
static void gimp_channel_list_view_component_toggle
|
|
|
|
(GtkList *list,
|
|
|
|
GtkWidget *child,
|
|
|
|
GimpChannelListView *view);
|
|
|
|
|
2001-05-03 20:26:05 +08:00
|
|
|
|
|
|
|
static GimpDrawableListViewClass *parent_class = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
GtkType
|
|
|
|
gimp_channel_list_view_get_type (void)
|
|
|
|
{
|
2001-09-07 17:16:28 +08:00
|
|
|
static GtkType view_type = 0;
|
2001-05-03 20:26:05 +08:00
|
|
|
|
|
|
|
if (! view_type)
|
|
|
|
{
|
|
|
|
GtkTypeInfo view_info =
|
|
|
|
{
|
|
|
|
"GimpChannelListView",
|
|
|
|
sizeof (GimpChannelListView),
|
|
|
|
sizeof (GimpChannelListViewClass),
|
|
|
|
(GtkClassInitFunc) gimp_channel_list_view_class_init,
|
|
|
|
(GtkObjectInitFunc) gimp_channel_list_view_init,
|
|
|
|
/* reserved_1 */ NULL,
|
|
|
|
/* reserved_2 */ NULL,
|
|
|
|
(GtkClassInitFunc) NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
view_type = gtk_type_unique (GIMP_TYPE_DRAWABLE_LIST_VIEW, &view_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
return view_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_channel_list_view_class_init (GimpChannelListViewClass *klass)
|
|
|
|
{
|
|
|
|
GtkObjectClass *object_class;
|
|
|
|
GimpContainerViewClass *container_view_class;
|
|
|
|
GimpDrawableListViewClass *drawable_view_class;
|
|
|
|
|
|
|
|
object_class = (GtkObjectClass *) klass;
|
|
|
|
container_view_class = (GimpContainerViewClass *) klass;
|
|
|
|
drawable_view_class = (GimpDrawableListViewClass *) klass;
|
|
|
|
|
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-05-03 20:26:05 +08:00
|
|
|
|
2001-05-07 01:56:10 +08:00
|
|
|
object_class->destroy = gimp_channel_list_view_destroy;
|
2001-05-03 20:26:05 +08:00
|
|
|
|
2001-05-07 01:56:10 +08:00
|
|
|
container_view_class->select_item = gimp_channel_list_view_select_item;
|
|
|
|
container_view_class->set_preview_size = gimp_channel_list_view_set_preview_size;
|
2001-05-03 20:26:05 +08:00
|
|
|
|
2001-05-07 01:56:10 +08:00
|
|
|
drawable_view_class->set_image = gimp_channel_list_view_set_image;
|
2001-05-03 20:26:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_channel_list_view_init (GimpChannelListView *view)
|
|
|
|
{
|
|
|
|
GimpDrawableListView *drawable_view;
|
2001-08-05 04:38:54 +08:00
|
|
|
GimpContainerView *container_view;
|
2001-05-03 20:26:05 +08:00
|
|
|
|
2001-08-05 04:38:54 +08:00
|
|
|
drawable_view = GIMP_DRAWABLE_LIST_VIEW (view);
|
|
|
|
container_view = GIMP_CONTAINER_VIEW (view);
|
|
|
|
|
|
|
|
/* component frame */
|
2001-05-03 20:26:05 +08:00
|
|
|
|
|
|
|
view->component_frame = gtk_frame_new (NULL);
|
|
|
|
gtk_frame_set_shadow_type (GTK_FRAME (view->component_frame), GTK_SHADOW_IN);
|
|
|
|
gtk_box_pack_start (GTK_BOX (view), view->component_frame, FALSE, FALSE, 0);
|
|
|
|
gtk_box_reorder_child (GTK_BOX (view), view->component_frame, 0);
|
|
|
|
/* don't show */
|
|
|
|
|
|
|
|
view->component_list = gtk_list_new ();
|
|
|
|
gtk_list_set_selection_mode (GTK_LIST (view->component_list),
|
|
|
|
GTK_SELECTION_MULTIPLE);
|
|
|
|
gtk_container_add (GTK_CONTAINER (view->component_frame),
|
|
|
|
view->component_list);
|
|
|
|
gtk_widget_show (view->component_list);
|
|
|
|
|
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
|
|
|
g_signal_connect (G_OBJECT (view->component_list), "select_child",
|
|
|
|
G_CALLBACK (gimp_channel_list_view_component_toggle),
|
|
|
|
view);
|
|
|
|
g_signal_connect (G_OBJECT (view->component_list), "unselect_child",
|
|
|
|
G_CALLBACK (gimp_channel_list_view_component_toggle),
|
|
|
|
view);
|
2001-05-07 06:29:48 +08:00
|
|
|
|
2001-05-03 20:26:05 +08:00
|
|
|
/* To Selection button */
|
|
|
|
|
2001-08-05 04:38:54 +08:00
|
|
|
view->toselection_button =
|
|
|
|
gimp_container_view_add_button (container_view,
|
|
|
|
GIMP_STOCK_TO_SELECTION,
|
|
|
|
_("Channel to Selection\n"
|
|
|
|
"<Shift> Add\n"
|
|
|
|
"<Ctrl> Subtract\n"
|
|
|
|
"<Shift><Ctrl> Intersect"), NULL,
|
|
|
|
G_CALLBACK (gimp_channel_list_view_toselection_clicked),
|
|
|
|
G_CALLBACK (gimp_channel_list_view_toselection_extended_clicked),
|
|
|
|
view);
|
|
|
|
|
|
|
|
gimp_container_view_enable_dnd (container_view,
|
|
|
|
GTK_BUTTON (view->toselection_button),
|
|
|
|
GIMP_TYPE_CHANNEL);
|
2001-05-03 20:26:05 +08:00
|
|
|
|
|
|
|
gtk_widget_set_sensitive (view->toselection_button, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_channel_list_view_destroy (GtkObject *object)
|
|
|
|
{
|
|
|
|
GimpChannelListView *view;
|
|
|
|
|
|
|
|
view = GIMP_CHANNEL_LIST_VIEW (object);
|
|
|
|
|
|
|
|
if (GTK_OBJECT_CLASS (parent_class)->destroy)
|
|
|
|
GTK_OBJECT_CLASS (parent_class)->destroy (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* GimpChannelListView methods */
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_channel_list_view_set_image (GimpDrawableListView *view,
|
|
|
|
GimpImage *gimage)
|
|
|
|
{
|
|
|
|
GimpChannelListView *channel_view;
|
|
|
|
|
|
|
|
channel_view = GIMP_CHANNEL_LIST_VIEW (view);
|
|
|
|
|
|
|
|
if (view->gimage)
|
|
|
|
{
|
|
|
|
if (! gimage)
|
|
|
|
gtk_widget_hide (channel_view->component_frame);
|
|
|
|
|
2001-05-07 06:29:48 +08:00
|
|
|
gimp_channel_list_view_clear_components (channel_view);
|
2001-05-07 00:14:34 +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
|
|
|
g_signal_handlers_disconnect_by_func (G_OBJECT (view->gimage),
|
|
|
|
gimp_channel_list_view_mode_changed,
|
|
|
|
channel_view);
|
2001-05-03 20:26:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (GIMP_DRAWABLE_LIST_VIEW_CLASS (parent_class)->set_image)
|
|
|
|
GIMP_DRAWABLE_LIST_VIEW_CLASS (parent_class)->set_image (view, gimage);
|
|
|
|
|
|
|
|
if (view->gimage)
|
|
|
|
{
|
|
|
|
if (! GTK_WIDGET_VISIBLE (channel_view->component_frame))
|
|
|
|
gtk_widget_show (channel_view->component_frame);
|
|
|
|
|
|
|
|
gimp_channel_list_view_create_components (channel_view);
|
2001-05-07 00:14:34 +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
|
|
|
g_signal_connect (G_OBJECT (view->gimage), "mode_changed",
|
|
|
|
G_CALLBACK (gimp_channel_list_view_mode_changed),
|
|
|
|
channel_view);
|
2001-05-03 20:26:05 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* GimpContainerView methods */
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_channel_list_view_select_item (GimpContainerView *view,
|
|
|
|
GimpViewable *item,
|
|
|
|
gpointer insert_data)
|
|
|
|
{
|
2001-05-08 09:32:25 +08:00
|
|
|
GimpDrawableListView *drawable_view;
|
|
|
|
GimpChannelListView *list_view;
|
2001-05-03 20:26:05 +08:00
|
|
|
|
2001-05-08 09:32:25 +08:00
|
|
|
drawable_view = GIMP_DRAWABLE_LIST_VIEW (view);
|
|
|
|
list_view = GIMP_CHANNEL_LIST_VIEW (view);
|
2001-05-03 20:26:05 +08:00
|
|
|
|
|
|
|
if (GIMP_CONTAINER_VIEW_CLASS (parent_class)->select_item)
|
|
|
|
GIMP_CONTAINER_VIEW_CLASS (parent_class)->select_item (view,
|
|
|
|
item,
|
|
|
|
insert_data);
|
|
|
|
|
2001-05-08 09:32:25 +08:00
|
|
|
if (drawable_view->gimage)
|
|
|
|
{
|
2001-05-11 01:25:01 +08:00
|
|
|
gboolean floating_sel;
|
2001-05-08 09:32:25 +08:00
|
|
|
|
2001-05-11 01:25:01 +08:00
|
|
|
floating_sel = (gimp_image_floating_sel (drawable_view->gimage) != NULL);
|
2001-05-08 09:32:25 +08:00
|
|
|
|
2001-08-05 04:38:54 +08:00
|
|
|
gtk_widget_set_sensitive (view->button_box, !floating_sel);
|
2001-05-03 20:26:05 +08:00
|
|
|
}
|
|
|
|
|
2001-05-11 01:25:01 +08:00
|
|
|
gtk_widget_set_sensitive (list_view->toselection_button, item != NULL);
|
2001-05-03 20:26:05 +08:00
|
|
|
}
|
|
|
|
|
2001-05-07 01:56:10 +08:00
|
|
|
static void
|
|
|
|
gimp_channel_list_view_set_preview_size (GimpContainerView *view)
|
|
|
|
{
|
|
|
|
GimpChannelListView *channel_view;
|
|
|
|
GList *list;
|
|
|
|
|
|
|
|
if (GIMP_CONTAINER_VIEW_CLASS (parent_class)->set_preview_size)
|
|
|
|
GIMP_CONTAINER_VIEW_CLASS (parent_class)->set_preview_size (view);
|
|
|
|
|
|
|
|
channel_view = GIMP_CHANNEL_LIST_VIEW (view);
|
|
|
|
|
|
|
|
for (list = GTK_LIST (channel_view->component_list)->children;
|
|
|
|
list;
|
|
|
|
list = g_list_next (list))
|
|
|
|
{
|
|
|
|
gimp_list_item_set_preview_size (GIMP_LIST_ITEM (list->data),
|
|
|
|
view->preview_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_widget_queue_resize (channel_view->component_frame);
|
|
|
|
}
|
|
|
|
|
2001-05-03 20:26:05 +08:00
|
|
|
|
|
|
|
/* "To Selection" functions */
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_channel_list_view_to_selection (GimpChannelListView *view,
|
2001-05-07 06:29:48 +08:00
|
|
|
GimpChannel *channel,
|
|
|
|
ChannelOps operation)
|
2001-05-03 20:26:05 +08:00
|
|
|
{
|
|
|
|
if (channel)
|
2001-05-07 06:29:48 +08:00
|
|
|
{
|
|
|
|
GimpImage *gimage;
|
|
|
|
GimpChannel *new_channel;
|
|
|
|
|
|
|
|
gimage = gimp_drawable_gimage (GIMP_DRAWABLE (channel));
|
|
|
|
|
|
|
|
if (operation == CHANNEL_OP_REPLACE)
|
|
|
|
{
|
|
|
|
new_channel = channel;
|
|
|
|
|
2001-07-28 00:08:05 +08:00
|
|
|
g_object_ref (G_OBJECT (channel));
|
2001-05-07 06:29:48 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
new_channel = gimp_channel_copy (gimp_image_get_mask (gimage), TRUE);
|
|
|
|
|
|
|
|
gimp_channel_combine_mask (new_channel,
|
|
|
|
channel,
|
|
|
|
operation,
|
|
|
|
0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
gimage_mask_load (gimage, new_channel);
|
|
|
|
|
2001-07-28 00:08:05 +08:00
|
|
|
g_object_unref (G_OBJECT (new_channel));
|
2001-05-07 06:29:48 +08:00
|
|
|
|
|
|
|
gdisplays_flush ();
|
|
|
|
}
|
2001-05-03 20:26:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_channel_list_view_toselection_clicked (GtkWidget *widget,
|
|
|
|
GimpChannelListView *view)
|
|
|
|
{
|
|
|
|
GimpDrawableListView *drawable_view;
|
|
|
|
GimpDrawable *drawable;
|
|
|
|
|
|
|
|
drawable_view = GIMP_DRAWABLE_LIST_VIEW (view);
|
|
|
|
|
|
|
|
drawable = drawable_view->get_drawable_func (drawable_view->gimage);
|
|
|
|
|
|
|
|
if (drawable)
|
2001-05-07 06:29:48 +08:00
|
|
|
gimp_channel_list_view_to_selection (view, GIMP_CHANNEL (drawable),
|
|
|
|
CHANNEL_OP_REPLACE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_channel_list_view_toselection_extended_clicked (GtkWidget *widget,
|
|
|
|
guint state,
|
|
|
|
GimpChannelListView *view)
|
|
|
|
{
|
|
|
|
GimpDrawableListView *drawable_view;
|
|
|
|
GimpDrawable *drawable;
|
|
|
|
|
|
|
|
drawable_view = GIMP_DRAWABLE_LIST_VIEW (view);
|
|
|
|
|
|
|
|
drawable = drawable_view->get_drawable_func (drawable_view->gimage);
|
|
|
|
|
|
|
|
if (drawable)
|
|
|
|
{
|
|
|
|
ChannelOps operation = CHANNEL_OP_REPLACE;
|
|
|
|
|
|
|
|
if (state & GDK_SHIFT_MASK)
|
|
|
|
{
|
|
|
|
if (state & GDK_CONTROL_MASK)
|
|
|
|
operation = CHANNEL_OP_INTERSECT;
|
|
|
|
else
|
|
|
|
operation = CHANNEL_OP_ADD;
|
|
|
|
}
|
|
|
|
else if (state & GDK_CONTROL_MASK)
|
|
|
|
{
|
|
|
|
operation = CHANNEL_OP_SUB;
|
|
|
|
}
|
|
|
|
|
|
|
|
gimp_channel_list_view_to_selection (view, GIMP_CHANNEL (drawable),
|
|
|
|
operation);
|
|
|
|
}
|
2001-05-03 20:26:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_channel_list_view_create_components (GimpChannelListView *view)
|
|
|
|
{
|
|
|
|
GimpImage *gimage;
|
|
|
|
GtkWidget *list_item;
|
|
|
|
gint n_components = 0;
|
|
|
|
ChannelType components[MAX_CHANNELS];
|
|
|
|
GList *list = NULL;
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
gimage = GIMP_DRAWABLE_LIST_VIEW (view)->gimage;
|
|
|
|
|
|
|
|
switch (gimp_image_base_type (gimage))
|
|
|
|
{
|
|
|
|
case RGB:
|
|
|
|
n_components = 3;
|
|
|
|
components[0] = RED_CHANNEL;
|
|
|
|
components[1] = GREEN_CHANNEL;
|
|
|
|
components[2] = BLUE_CHANNEL;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GRAY:
|
|
|
|
n_components = 1;
|
|
|
|
components[0] = GRAY_CHANNEL;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case INDEXED:
|
|
|
|
n_components = 1;
|
|
|
|
components[0] = INDEXED_CHANNEL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
components[n_components++] = ALPHA_CHANNEL;
|
|
|
|
|
|
|
|
for (i = 0; i < n_components; i++)
|
|
|
|
{
|
|
|
|
list_item =
|
|
|
|
gimp_component_list_item_new (gimage,
|
|
|
|
GIMP_CONTAINER_VIEW (view)->preview_size,
|
|
|
|
components[i]);
|
|
|
|
|
|
|
|
gtk_widget_show (list_item);
|
|
|
|
|
|
|
|
list = g_list_append (list, list_item);
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_list_insert_items (GTK_LIST (view->component_list), list, 0);
|
2001-05-04 06:19:17 +08:00
|
|
|
|
|
|
|
gtk_widget_queue_resize (GTK_WIDGET (view->component_frame));
|
2001-05-03 20:26:05 +08:00
|
|
|
}
|
2001-05-07 00:14:34 +08:00
|
|
|
|
|
|
|
static void
|
2001-05-07 06:29:48 +08:00
|
|
|
gimp_channel_list_view_clear_components (GimpChannelListView *view)
|
2001-05-07 00:14:34 +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
|
|
|
g_signal_handlers_block_by_func (G_OBJECT (view->component_list),
|
|
|
|
gimp_channel_list_view_component_toggle,
|
|
|
|
view);
|
2001-05-07 06:29:48 +08:00
|
|
|
|
2001-05-07 00:14:34 +08:00
|
|
|
gtk_list_clear_items (GTK_LIST (view->component_list), 0, -1);
|
|
|
|
|
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
|
|
|
g_signal_handlers_unblock_by_func (G_OBJECT (view->component_list),
|
|
|
|
gimp_channel_list_view_component_toggle,
|
|
|
|
view);
|
2001-05-07 06:29:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_channel_list_view_mode_changed (GimpImage *gimage,
|
|
|
|
GimpChannelListView *view)
|
|
|
|
{
|
|
|
|
gimp_channel_list_view_clear_components (view);
|
2001-05-07 00:14:34 +08:00
|
|
|
gimp_channel_list_view_create_components (view);
|
|
|
|
}
|
2001-05-07 06:29:48 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_channel_list_view_component_toggle (GtkList *list,
|
|
|
|
GtkWidget *child,
|
|
|
|
GimpChannelListView *view)
|
|
|
|
{
|
|
|
|
GimpComponentListItem *component_item;
|
|
|
|
|
|
|
|
component_item = GIMP_COMPONENT_LIST_ITEM (child);
|
|
|
|
|
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
|
|
|
g_signal_handlers_block_by_func (G_OBJECT (view->component_list),
|
|
|
|
gimp_channel_list_view_component_toggle,
|
|
|
|
view);
|
2001-05-07 06:29:48 +08:00
|
|
|
|
|
|
|
gimp_image_set_component_active (GIMP_DRAWABLE_LIST_VIEW (view)->gimage,
|
|
|
|
component_item->channel,
|
|
|
|
child->state == GTK_STATE_SELECTED);
|
|
|
|
|
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
|
|
|
g_signal_handlers_unblock_by_func (G_OBJECT (view->component_list),
|
|
|
|
gimp_channel_list_view_component_toggle,
|
|
|
|
view);
|
2001-05-07 06:29:48 +08:00
|
|
|
}
|