2000-02-26 11:41:06 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
2000-11-18 08:25:42 +08:00
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
2000-01-13 23:39:26 +08:00
|
|
|
*
|
|
|
|
* gimpwidgets.c
|
|
|
|
* Copyright (C) 2000 Michael Natterer <mitch@gimp.org>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2000-02-26 11:41:06 +08:00
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
2000-01-13 23:39:26 +08:00
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2000-01-27 09:54:52 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
2001-02-20 22:57:49 +08:00
|
|
|
#include <string.h>
|
|
|
|
|
2000-05-31 07:38:46 +08:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2001-01-24 07:56:18 +08:00
|
|
|
#include "libgimpmath/gimpmath.h"
|
2001-05-21 21:58:46 +08:00
|
|
|
#include "libgimpbase/gimpbase.h"
|
2001-01-24 07:56:18 +08:00
|
|
|
|
2001-01-25 06:36:18 +08:00
|
|
|
#include "gimpwidgetstypes.h"
|
2000-12-29 23:22:01 +08:00
|
|
|
|
2000-02-01 04:47:44 +08:00
|
|
|
#include "gimpchainbutton.h"
|
2000-01-13 23:39:26 +08:00
|
|
|
#include "gimphelpui.h"
|
2000-02-18 21:59:18 +08:00
|
|
|
#include "gimppixmap.h"
|
2000-12-29 23:22:01 +08:00
|
|
|
#include "gimpsizeentry.h"
|
2000-01-14 20:41:00 +08:00
|
|
|
#include "gimpunitmenu.h"
|
2000-01-13 23:39:26 +08:00
|
|
|
#include "gimpwidgets.h"
|
2000-01-26 01:46:56 +08:00
|
|
|
|
2002-03-14 02:07:25 +08:00
|
|
|
#include "themes/Default/images/gimp-wilber-pixbufs.h"
|
2001-11-28 09:14:06 +08:00
|
|
|
|
2001-01-25 06:36:18 +08:00
|
|
|
#include "libgimp/libgimp-intl.h"
|
2000-01-26 01:46:56 +08:00
|
|
|
|
2000-05-31 07:38:46 +08:00
|
|
|
|
2001-11-28 09:14:06 +08:00
|
|
|
void
|
|
|
|
gimp_widgets_init (void)
|
|
|
|
{
|
|
|
|
GdkPixbuf *pixbuf;
|
|
|
|
GList *icon_list = NULL;
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
const guint8 *inline_pixbufs[] =
|
|
|
|
{
|
2002-05-13 07:26:07 +08:00
|
|
|
stock_wilber_16,
|
|
|
|
stock_wilber_32,
|
|
|
|
stock_wilber_48,
|
|
|
|
stock_wilber_64
|
2001-11-28 09:14:06 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
gimp_stock_init ();
|
|
|
|
|
|
|
|
for (i = 0; i < G_N_ELEMENTS (inline_pixbufs); i++)
|
|
|
|
{
|
|
|
|
pixbuf = gdk_pixbuf_new_from_inline (-1, inline_pixbufs[i], FALSE, NULL);
|
|
|
|
icon_list = g_list_prepend (icon_list, pixbuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_window_set_default_icon_list (icon_list);
|
|
|
|
|
|
|
|
g_list_foreach (icon_list, (GFunc) g_object_unref, NULL);
|
|
|
|
g_list_free (icon_list);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-01-13 23:39:26 +08:00
|
|
|
/*
|
2000-01-27 09:22:27 +08:00
|
|
|
* Widget Constructors
|
2000-01-13 23:39:26 +08:00
|
|
|
*/
|
|
|
|
|
2000-02-19 03:59:02 +08:00
|
|
|
/**
|
|
|
|
* gimp_option_menu_new:
|
2000-02-23 23:52:33 +08:00
|
|
|
* @menu_only: #TRUE if the function should return a #GtkMenu only.
|
2000-11-28 01:09:53 +08:00
|
|
|
* @...: A #NULL terminated @va_list describing the menu items.
|
2000-02-19 03:59:02 +08:00
|
|
|
*
|
2000-02-23 23:52:33 +08:00
|
|
|
* Returns: A #GtkOptionMenu or a #GtkMenu (depending on @menu_only).
|
2000-11-18 08:25:42 +08:00
|
|
|
**/
|
2000-01-13 23:39:26 +08:00
|
|
|
GtkWidget *
|
2000-01-27 09:22:27 +08:00
|
|
|
gimp_option_menu_new (gboolean menu_only,
|
2000-01-13 23:39:26 +08:00
|
|
|
|
|
|
|
/* specify menu items as va_list:
|
2000-11-18 08:25:42 +08:00
|
|
|
* const gchar *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
|
|
|
* GCallback callback,
|
|
|
|
* gpointer callback_data,
|
2001-11-22 21:01:26 +08:00
|
|
|
* gpointer item_data,
|
2000-01-27 09:22:27 +08:00
|
|
|
* GtkWidget **widget_ptr,
|
|
|
|
* gboolean active
|
2000-01-13 23:39:26 +08:00
|
|
|
*/
|
|
|
|
|
2000-01-27 09:22:27 +08:00
|
|
|
...)
|
|
|
|
{
|
|
|
|
GtkWidget *menu;
|
|
|
|
GtkWidget *menuitem;
|
|
|
|
|
|
|
|
/* menu item variables */
|
2000-11-18 08:25:42 +08:00
|
|
|
const gchar *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
|
|
|
GCallback callback;
|
|
|
|
gpointer callback_data;
|
2001-11-22 21:01:26 +08:00
|
|
|
gpointer item_data;
|
2000-01-27 09:22:27 +08:00
|
|
|
GtkWidget **widget_ptr;
|
|
|
|
gboolean active;
|
|
|
|
|
|
|
|
va_list args;
|
|
|
|
gint i;
|
|
|
|
gint initial_index;
|
|
|
|
|
|
|
|
menu = gtk_menu_new ();
|
|
|
|
|
|
|
|
/* create the menu items */
|
|
|
|
initial_index = 0;
|
2000-11-18 08:25:42 +08:00
|
|
|
|
2000-01-27 09:22:27 +08:00
|
|
|
va_start (args, menu_only);
|
2000-11-18 08:25:42 +08:00
|
|
|
label = va_arg (args, const gchar *);
|
|
|
|
|
2000-01-27 09:22:27 +08:00
|
|
|
for (i = 0; label; i++)
|
|
|
|
{
|
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
|
|
|
callback = va_arg (args, GCallback);
|
|
|
|
callback_data = va_arg (args, gpointer);
|
2001-11-22 21:01:26 +08:00
|
|
|
item_data = va_arg (args, gpointer);
|
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
|
|
|
widget_ptr = va_arg (args, GtkWidget **);
|
|
|
|
active = va_arg (args, gboolean);
|
2000-01-27 09:22:27 +08:00
|
|
|
|
2000-02-14 06:26:41 +08:00
|
|
|
if (strcmp (label, "---"))
|
|
|
|
{
|
|
|
|
menuitem = gtk_menu_item_new_with_label (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
|
|
|
g_signal_connect (G_OBJECT (menuitem), "activate",
|
|
|
|
callback,
|
|
|
|
callback_data);
|
2000-02-14 06:26:41 +08:00
|
|
|
|
2001-11-22 21:01:26 +08:00
|
|
|
if (item_data)
|
|
|
|
{
|
|
|
|
g_object_set_data (G_OBJECT (menuitem), "gimp-item-data",
|
|
|
|
item_data);
|
|
|
|
|
|
|
|
/* backward compat */
|
|
|
|
g_object_set_data (G_OBJECT (menuitem), "user_data", item_data);
|
|
|
|
}
|
2000-02-14 06:26:41 +08:00
|
|
|
}
|
2000-01-27 09:22:27 +08:00
|
|
|
else
|
2000-02-14 06:26:41 +08:00
|
|
|
{
|
|
|
|
menuitem = gtk_menu_item_new ();
|
2000-12-04 02:35:58 +08:00
|
|
|
|
|
|
|
gtk_widget_set_sensitive (menuitem, FALSE);
|
2000-02-14 06:26:41 +08:00
|
|
|
}
|
2000-01-27 09:22:27 +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
|
|
|
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
|
2000-01-27 09:22:27 +08:00
|
|
|
|
|
|
|
if (widget_ptr)
|
|
|
|
*widget_ptr = menuitem;
|
|
|
|
|
|
|
|
gtk_widget_show (menuitem);
|
|
|
|
|
|
|
|
/* remember the initial menu item */
|
|
|
|
if (active)
|
|
|
|
initial_index = i;
|
|
|
|
|
2000-11-18 08:25:42 +08:00
|
|
|
label = va_arg (args, const gchar *);
|
2000-01-27 09:22:27 +08:00
|
|
|
}
|
|
|
|
va_end (args);
|
|
|
|
|
|
|
|
if (! menu_only)
|
|
|
|
{
|
|
|
|
GtkWidget *optionmenu;
|
|
|
|
|
|
|
|
optionmenu = gtk_option_menu_new ();
|
|
|
|
gtk_option_menu_set_menu (GTK_OPTION_MENU (optionmenu), menu);
|
|
|
|
|
|
|
|
/* select the initial menu item */
|
|
|
|
gtk_option_menu_set_history (GTK_OPTION_MENU (optionmenu), initial_index);
|
|
|
|
|
|
|
|
return optionmenu;
|
|
|
|
}
|
|
|
|
|
|
|
|
return menu;
|
|
|
|
}
|
|
|
|
|
2000-02-19 03:59:02 +08:00
|
|
|
/**
|
|
|
|
* gimp_option_menu_new2:
|
2000-11-28 01:09:53 +08:00
|
|
|
* @menu_only: #TRUE if the function should return a #GtkMenu only.
|
2000-02-23 23:52:33 +08:00
|
|
|
* @menu_item_callback: The callback each menu item's "activate" signal will
|
|
|
|
* be connected with.
|
2002-05-13 19:41:22 +08:00
|
|
|
* @menu_item_callback_data:
|
|
|
|
* The data which will be passed to g_signal_connect().
|
2001-11-22 21:01:26 +08:00
|
|
|
* @initial: The @item_data of the initially selected menu item.
|
2000-11-28 01:09:53 +08:00
|
|
|
* @...: A #NULL terminated @va_list describing the menu items.
|
2000-02-19 03:59:02 +08:00
|
|
|
*
|
2000-02-23 23:52:33 +08:00
|
|
|
* Returns: A #GtkOptionMenu or a #GtkMenu (depending on @menu_only).
|
2000-11-18 08:25:42 +08:00
|
|
|
**/
|
2000-01-27 09:22:27 +08:00
|
|
|
GtkWidget *
|
2000-11-18 08:25:42 +08:00
|
|
|
gimp_option_menu_new2 (gboolean menu_only,
|
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
|
|
|
GCallback menu_item_callback,
|
|
|
|
gpointer callback_data,
|
2001-11-22 21:01:26 +08:00
|
|
|
gpointer initial, /* item_data */
|
2000-01-27 09:22:27 +08:00
|
|
|
|
|
|
|
/* specify menu items as va_list:
|
2000-11-18 08:25:42 +08:00
|
|
|
* const gchar *label,
|
2001-11-22 21:01:26 +08:00
|
|
|
* gpointer item_data,
|
2000-11-18 08:25:42 +08:00
|
|
|
* GtkWidget **widget_ptr,
|
2000-01-27 09:22:27 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
...)
|
2000-01-13 23:39:26 +08:00
|
|
|
{
|
|
|
|
GtkWidget *menu;
|
|
|
|
GtkWidget *menuitem;
|
|
|
|
|
|
|
|
/* menu item variables */
|
2000-11-18 08:25:42 +08:00
|
|
|
const gchar *label;
|
2001-11-22 21:01:26 +08:00
|
|
|
gpointer item_data;
|
2000-11-18 08:25:42 +08:00
|
|
|
GtkWidget **widget_ptr;
|
2000-01-13 23:39:26 +08:00
|
|
|
|
|
|
|
va_list args;
|
|
|
|
gint i;
|
|
|
|
gint initial_index;
|
|
|
|
|
|
|
|
menu = gtk_menu_new ();
|
|
|
|
|
|
|
|
/* create the menu items */
|
|
|
|
initial_index = 0;
|
2000-11-18 08:25:42 +08:00
|
|
|
|
2000-01-13 23:39:26 +08:00
|
|
|
va_start (args, initial);
|
2000-11-18 08:25:42 +08:00
|
|
|
label = va_arg (args, const gchar *);
|
|
|
|
|
2000-01-13 23:39:26 +08:00
|
|
|
for (i = 0; label; i++)
|
|
|
|
{
|
2001-11-22 21:01:26 +08:00
|
|
|
item_data = va_arg (args, gpointer);
|
2000-01-27 09:22:27 +08:00
|
|
|
widget_ptr = va_arg (args, GtkWidget **);
|
2000-01-13 23:39:26 +08:00
|
|
|
|
2000-02-14 06:26:41 +08:00
|
|
|
if (strcmp (label, "---"))
|
|
|
|
{
|
|
|
|
menuitem = gtk_menu_item_new_with_label (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
|
|
|
g_signal_connect (G_OBJECT (menuitem), "activate",
|
|
|
|
menu_item_callback,
|
|
|
|
callback_data);
|
2000-02-14 06:26:41 +08:00
|
|
|
|
2001-11-22 21:01:26 +08:00
|
|
|
if (item_data)
|
|
|
|
{
|
|
|
|
g_object_set_data (G_OBJECT (menuitem), "gimp-item-data",
|
|
|
|
item_data);
|
|
|
|
|
|
|
|
/* backward compat */
|
|
|
|
g_object_set_data (G_OBJECT (menuitem), "user_data", item_data);
|
|
|
|
}
|
2000-02-14 06:26:41 +08:00
|
|
|
}
|
2000-01-26 01:46:56 +08:00
|
|
|
else
|
2000-02-14 06:26:41 +08:00
|
|
|
{
|
|
|
|
menuitem = gtk_menu_item_new ();
|
2000-12-04 02:35:58 +08:00
|
|
|
|
|
|
|
gtk_widget_set_sensitive (menuitem, FALSE);
|
2000-02-14 06:26:41 +08:00
|
|
|
}
|
2000-01-26 01:46:56 +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
|
|
|
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
|
2000-01-13 23:39:26 +08:00
|
|
|
|
|
|
|
if (widget_ptr)
|
|
|
|
*widget_ptr = menuitem;
|
|
|
|
|
|
|
|
gtk_widget_show (menuitem);
|
|
|
|
|
|
|
|
/* remember the initial menu item */
|
2001-11-22 21:01:26 +08:00
|
|
|
if (item_data == initial)
|
2000-01-13 23:39:26 +08:00
|
|
|
initial_index = i;
|
|
|
|
|
2000-11-18 08:25:42 +08:00
|
|
|
label = va_arg (args, const gchar *);
|
2000-01-13 23:39:26 +08:00
|
|
|
}
|
|
|
|
va_end (args);
|
|
|
|
|
2000-01-27 09:22:27 +08:00
|
|
|
if (! menu_only)
|
|
|
|
{
|
|
|
|
GtkWidget *optionmenu;
|
|
|
|
|
|
|
|
optionmenu = gtk_option_menu_new ();
|
|
|
|
gtk_option_menu_set_menu (GTK_OPTION_MENU (optionmenu), menu);
|
2000-01-13 23:39:26 +08:00
|
|
|
|
2000-01-27 09:22:27 +08:00
|
|
|
/* select the initial menu item */
|
|
|
|
gtk_option_menu_set_history (GTK_OPTION_MENU (optionmenu), initial_index);
|
|
|
|
|
|
|
|
return optionmenu;
|
|
|
|
}
|
2000-01-13 23:39:26 +08:00
|
|
|
|
2000-01-27 09:22:27 +08:00
|
|
|
return menu;
|
2000-01-13 23:39:26 +08:00
|
|
|
}
|
|
|
|
|
2000-02-19 03:59:02 +08:00
|
|
|
/**
|
|
|
|
* gimp_option_menu_set_history:
|
2000-02-23 23:52:33 +08:00
|
|
|
* @option_menu: A #GtkOptionMenu as returned by gimp_option_menu_new() or
|
|
|
|
* gimp_option_menu_new2().
|
2001-11-22 21:01:26 +08:00
|
|
|
* @item_data: The @item_data of the menu item you want to select.
|
2000-11-18 08:25:42 +08:00
|
|
|
**/
|
2000-02-14 06:26:41 +08:00
|
|
|
void
|
|
|
|
gimp_option_menu_set_history (GtkOptionMenu *option_menu,
|
2001-11-22 21:01:26 +08:00
|
|
|
gpointer item_data)
|
2000-02-14 06:26:41 +08:00
|
|
|
{
|
|
|
|
GtkWidget *menu_item;
|
|
|
|
GList *list;
|
|
|
|
gint history = 0;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_OPTION_MENU (option_menu));
|
|
|
|
|
|
|
|
for (list = GTK_MENU_SHELL (option_menu->menu)->children;
|
|
|
|
list;
|
|
|
|
list = g_list_next (list))
|
|
|
|
{
|
|
|
|
menu_item = GTK_WIDGET (list->data);
|
|
|
|
|
|
|
|
if (GTK_IS_LABEL (GTK_BIN (menu_item)->child) &&
|
2001-11-22 21:01:26 +08:00
|
|
|
g_object_get_data (G_OBJECT (menu_item),
|
|
|
|
"gimp-item-data") == item_data)
|
2000-02-14 06:26:41 +08:00
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
history++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (list)
|
|
|
|
gtk_option_menu_set_history (option_menu, history);
|
|
|
|
}
|
|
|
|
|
2002-03-18 00:35:05 +08:00
|
|
|
/**
|
|
|
|
* gimp_option_menu_set_sensitive:
|
|
|
|
* @option_menu: a #GtkOptionMenu as returned by gimp_option_menu_new() or
|
|
|
|
* gimp_option_menu_new2().
|
|
|
|
* @callback: a function called for each item in the menu to determine the
|
|
|
|
* the sensitivity state.
|
|
|
|
* @callback_data: data to pass to the @callback function.
|
|
|
|
*
|
|
|
|
* Calls the given @callback for each item in the menu and passes it the
|
|
|
|
* item_data and the @callback_data. The menu item's sensitivity is set
|
|
|
|
* according to the return value of this function.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gimp_option_menu_set_sensitive (GtkOptionMenu *option_menu,
|
|
|
|
GimpOptionMenuSensitivityCallback callback,
|
|
|
|
gpointer callback_data)
|
|
|
|
{
|
|
|
|
GtkWidget *menu_item;
|
|
|
|
GList *list;
|
|
|
|
gpointer item_data;
|
|
|
|
gboolean sensitive;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_OPTION_MENU (option_menu));
|
|
|
|
g_return_if_fail (callback != NULL);
|
|
|
|
|
|
|
|
for (list = GTK_MENU_SHELL (option_menu->menu)->children;
|
|
|
|
list;
|
|
|
|
list = g_list_next (list))
|
|
|
|
{
|
|
|
|
menu_item = GTK_WIDGET (list->data);
|
|
|
|
|
|
|
|
if (GTK_IS_LABEL (GTK_BIN (menu_item)->child))
|
|
|
|
{
|
|
|
|
item_data = g_object_get_data (G_OBJECT (menu_item),
|
|
|
|
"gimp-item-data");
|
|
|
|
sensitive = callback (item_data, callback_data);
|
|
|
|
gtk_widget_set_sensitive (menu_item, sensitive);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-02-19 03:59:02 +08:00
|
|
|
/**
|
|
|
|
* gimp_radio_group_new:
|
2000-11-28 01:09:53 +08:00
|
|
|
* @in_frame: #TRUE if you want a #GtkFrame around the radio button group.
|
2000-02-23 23:52:33 +08:00
|
|
|
* @frame_title: The title of the Frame or #NULL if you don't want a title.
|
2000-11-28 01:09:53 +08:00
|
|
|
* @...: A #NULL terminated @va_list describing the radio buttons.
|
2000-02-19 03:59:02 +08:00
|
|
|
*
|
2000-02-23 23:52:33 +08:00
|
|
|
* Returns: A #GtkFrame or #GtkVbox (depending on @in_frame).
|
2000-11-18 08:25:42 +08:00
|
|
|
**/
|
2000-01-13 23:39:26 +08:00
|
|
|
GtkWidget *
|
|
|
|
gimp_radio_group_new (gboolean in_frame,
|
2000-11-18 08:25:42 +08:00
|
|
|
const gchar *frame_title,
|
2000-01-13 23:39:26 +08:00
|
|
|
|
|
|
|
/* specify radio buttons as va_list:
|
2000-11-18 08:25:42 +08:00
|
|
|
* const gchar *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
|
|
|
* GCallback callback,
|
|
|
|
* gpointer callback_data,
|
2001-11-22 21:01:26 +08:00
|
|
|
* gpointer item_data,
|
2000-01-13 23:39:26 +08:00
|
|
|
* GtkWidget **widget_ptr,
|
|
|
|
* gboolean active,
|
|
|
|
*/
|
|
|
|
|
|
|
|
...)
|
|
|
|
{
|
|
|
|
GtkWidget *vbox;
|
|
|
|
GtkWidget *button;
|
|
|
|
GSList *group;
|
|
|
|
|
|
|
|
/* radio button variables */
|
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
|
|
|
const gchar *label;
|
|
|
|
GCallback callback;
|
|
|
|
gpointer callback_data;
|
2001-11-22 21:01:26 +08:00
|
|
|
gpointer item_data;
|
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
|
|
|
GtkWidget **widget_ptr;
|
|
|
|
gboolean active;
|
2000-01-13 23:39:26 +08:00
|
|
|
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
vbox = gtk_vbox_new (FALSE, 1);
|
|
|
|
|
|
|
|
group = NULL;
|
|
|
|
|
|
|
|
/* create the radio buttons */
|
|
|
|
va_start (args, frame_title);
|
2000-11-18 08:25:42 +08:00
|
|
|
label = va_arg (args, const gchar *);
|
2000-01-13 23:39:26 +08:00
|
|
|
while (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
|
|
|
callback = va_arg (args, GCallback);
|
|
|
|
callback_data = va_arg (args, gpointer);
|
2001-11-22 21:01:26 +08:00
|
|
|
item_data = va_arg (args, gpointer);
|
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
|
|
|
widget_ptr = va_arg (args, GtkWidget **);
|
|
|
|
active = va_arg (args, gboolean);
|
2000-01-13 23:39:26 +08:00
|
|
|
|
2000-01-26 01:46:56 +08:00
|
|
|
if (label != (gpointer) 1)
|
|
|
|
button = gtk_radio_button_new_with_label (group, label);
|
|
|
|
else
|
|
|
|
button = gtk_radio_button_new (group);
|
|
|
|
|
2001-08-01 08:35:59 +08:00
|
|
|
group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (button));
|
2000-01-13 23:39:26 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), button, FALSE, FALSE, 0);
|
|
|
|
|
2001-11-22 21:01:26 +08:00
|
|
|
if (item_data)
|
|
|
|
{
|
|
|
|
g_object_set_data (G_OBJECT (button), "gimp-item-data", item_data);
|
|
|
|
|
|
|
|
/* backward compatibility */
|
|
|
|
g_object_set_data (G_OBJECT (button), "user_data", item_data);
|
|
|
|
}
|
2000-01-13 23:39:26 +08:00
|
|
|
|
|
|
|
if (widget_ptr)
|
|
|
|
*widget_ptr = button;
|
|
|
|
|
|
|
|
if (active)
|
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), TRUE);
|
|
|
|
|
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 (button), "toggled",
|
|
|
|
callback,
|
|
|
|
callback_data);
|
2000-01-15 23:32:28 +08:00
|
|
|
|
2000-01-13 23:39:26 +08:00
|
|
|
gtk_widget_show (button);
|
|
|
|
|
2000-11-18 08:25:42 +08:00
|
|
|
label = va_arg (args, const gchar *);
|
2000-01-13 23:39:26 +08:00
|
|
|
}
|
|
|
|
va_end (args);
|
|
|
|
|
|
|
|
if (in_frame)
|
2000-02-14 06:26:41 +08:00
|
|
|
{
|
|
|
|
GtkWidget *frame;
|
|
|
|
|
2000-04-01 02:10:25 +08:00
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (vbox), 2);
|
|
|
|
|
2000-02-14 06:26:41 +08:00
|
|
|
frame = gtk_frame_new (frame_title);
|
|
|
|
gtk_container_add (GTK_CONTAINER (frame), vbox);
|
|
|
|
gtk_widget_show (vbox);
|
|
|
|
|
|
|
|
return frame;
|
|
|
|
}
|
2000-01-13 23:39:26 +08:00
|
|
|
|
|
|
|
return vbox;
|
|
|
|
}
|
|
|
|
|
2000-02-19 03:59:02 +08:00
|
|
|
/**
|
|
|
|
* gimp_radio_group_new2:
|
2000-11-28 01:09:53 +08:00
|
|
|
* @in_frame: #TRUE if you want a #GtkFrame around the
|
|
|
|
* radio button group.
|
|
|
|
* @frame_title: The title of the Frame or #NULL if you don't want
|
|
|
|
* a title.
|
2000-02-23 23:52:33 +08:00
|
|
|
* @radio_button_callback: The callback each button's "toggled" signal will
|
|
|
|
* be connected with.
|
2002-05-13 19:41:22 +08:00
|
|
|
* @radio_button_callback_data: The data which will be passed to
|
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().
|
2001-11-22 21:01:26 +08:00
|
|
|
* @initial: The @item_data of the initially pressed radio button.
|
2000-11-28 01:09:53 +08:00
|
|
|
* @...: A #NULL terminated @va_list describing
|
|
|
|
* the radio buttons.
|
2000-02-19 03:59:02 +08:00
|
|
|
*
|
2000-02-23 23:52:33 +08:00
|
|
|
* Returns: A #GtkFrame or #GtkVbox (depending on @in_frame).
|
2000-11-18 08:25:42 +08:00
|
|
|
**/
|
2000-01-13 23:39:26 +08:00
|
|
|
GtkWidget *
|
2000-11-18 08:25:42 +08:00
|
|
|
gimp_radio_group_new2 (gboolean in_frame,
|
|
|
|
const gchar *frame_title,
|
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
|
|
|
GCallback radio_button_callback,
|
|
|
|
gpointer callback_data,
|
2001-11-22 21:01:26 +08:00
|
|
|
gpointer initial, /* item_data */
|
2000-01-13 23:39:26 +08:00
|
|
|
|
|
|
|
/* specify radio buttons as va_list:
|
2000-11-18 08:25:42 +08:00
|
|
|
* const gchar *label,
|
2001-11-22 21:01:26 +08:00
|
|
|
* gpointer item_data,
|
2000-11-18 08:25:42 +08:00
|
|
|
* GtkWidget **widget_ptr,
|
2000-01-13 23:39:26 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
...)
|
|
|
|
{
|
|
|
|
GtkWidget *vbox;
|
|
|
|
GtkWidget *button;
|
|
|
|
GSList *group;
|
|
|
|
|
|
|
|
/* radio button variables */
|
2000-11-18 08:25:42 +08:00
|
|
|
const gchar *label;
|
2001-11-22 21:01:26 +08:00
|
|
|
gpointer item_data;
|
2000-11-18 08:25:42 +08:00
|
|
|
GtkWidget **widget_ptr;
|
2000-01-13 23:39:26 +08:00
|
|
|
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
vbox = gtk_vbox_new (FALSE, 1);
|
|
|
|
|
|
|
|
group = NULL;
|
|
|
|
|
|
|
|
/* create the radio buttons */
|
|
|
|
va_start (args, initial);
|
2000-11-18 08:25:42 +08:00
|
|
|
label = va_arg (args, const gchar *);
|
|
|
|
|
2000-01-13 23:39:26 +08:00
|
|
|
while (label)
|
|
|
|
{
|
2001-11-22 21:01:26 +08:00
|
|
|
item_data = va_arg (args, gpointer);
|
2000-01-27 09:22:27 +08:00
|
|
|
widget_ptr = va_arg (args, GtkWidget **);
|
2000-01-13 23:39:26 +08:00
|
|
|
|
2000-01-26 01:46:56 +08:00
|
|
|
if (label != (gpointer) 1)
|
2002-05-11 18:33:51 +08:00
|
|
|
button = gtk_radio_button_new_with_mnemonic (group, label);
|
2000-01-26 01:46:56 +08:00
|
|
|
else
|
|
|
|
button = gtk_radio_button_new (group);
|
|
|
|
|
2001-08-01 08:35:59 +08:00
|
|
|
group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (button));
|
2000-01-13 23:39:26 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), button, FALSE, FALSE, 0);
|
|
|
|
|
2001-11-22 21:01:26 +08:00
|
|
|
if (item_data)
|
|
|
|
{
|
|
|
|
g_object_set_data (G_OBJECT (button), "gimp-item-data", item_data);
|
|
|
|
|
|
|
|
/* backward compatibility */
|
|
|
|
g_object_set_data (G_OBJECT (button), "user_data", item_data);
|
|
|
|
}
|
2000-01-13 23:39:26 +08:00
|
|
|
|
|
|
|
if (widget_ptr)
|
|
|
|
*widget_ptr = button;
|
|
|
|
|
2001-11-22 21:01:26 +08:00
|
|
|
if (initial == item_data)
|
2000-01-13 23:39:26 +08:00
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), TRUE);
|
|
|
|
|
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 (button), "toggled",
|
|
|
|
radio_button_callback,
|
|
|
|
callback_data);
|
2000-01-15 23:32:28 +08:00
|
|
|
|
2000-01-13 23:39:26 +08:00
|
|
|
gtk_widget_show (button);
|
|
|
|
|
2000-11-18 08:25:42 +08:00
|
|
|
label = va_arg (args, const gchar *);
|
2000-01-13 23:39:26 +08:00
|
|
|
}
|
|
|
|
va_end (args);
|
|
|
|
|
|
|
|
if (in_frame)
|
2000-02-14 06:26:41 +08:00
|
|
|
{
|
|
|
|
GtkWidget *frame;
|
|
|
|
|
2000-04-01 02:10:25 +08:00
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (vbox), 2);
|
|
|
|
|
2000-02-14 06:26:41 +08:00
|
|
|
frame = gtk_frame_new (frame_title);
|
|
|
|
gtk_container_add (GTK_CONTAINER (frame), vbox);
|
|
|
|
gtk_widget_show (vbox);
|
|
|
|
|
|
|
|
return frame;
|
|
|
|
}
|
2000-01-13 23:39:26 +08:00
|
|
|
|
|
|
|
return vbox;
|
|
|
|
}
|
|
|
|
|
2001-11-22 21:01:26 +08:00
|
|
|
void
|
|
|
|
gimp_radio_group_set_active (GtkRadioButton *radio_button,
|
|
|
|
gpointer item_data)
|
|
|
|
{
|
|
|
|
GtkWidget *button;
|
|
|
|
GSList *group;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_RADIO_BUTTON (radio_button));
|
|
|
|
|
|
|
|
for (group = gtk_radio_button_get_group (radio_button);
|
|
|
|
group;
|
|
|
|
group = g_slist_next (group))
|
|
|
|
{
|
|
|
|
button = GTK_WIDGET (group->data);
|
|
|
|
|
|
|
|
if (g_object_get_data (G_OBJECT (button), "gimp-item-data") == item_data)
|
|
|
|
{
|
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), TRUE);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-02-19 03:59:02 +08:00
|
|
|
/**
|
|
|
|
* gimp_spin_button_new:
|
2000-11-28 01:09:53 +08:00
|
|
|
* @adjustment: Returns the spinbutton's #GtkAdjustment.
|
|
|
|
* @value: The initial value of the spinbutton.
|
|
|
|
* @lower: The lower boundary.
|
|
|
|
* @upper: The uppper boundary.
|
2000-02-23 23:52:33 +08:00
|
|
|
* @step_increment: The spinbutton's step increment.
|
|
|
|
* @page_increment: The spinbutton's page increment (mouse button 2).
|
2000-11-28 01:09:53 +08:00
|
|
|
* @page_size: The spinbutton's page size.
|
|
|
|
* @climb_rate: The spinbutton's climb rate.
|
|
|
|
* @digits: The spinbutton's number of decimal digits.
|
2000-02-23 23:52:33 +08:00
|
|
|
*
|
|
|
|
* This function is a shortcut for gtk_adjustment_new() and a subsequent
|
|
|
|
* gtk_spin_button_new() and does some more initialisation stuff like
|
|
|
|
* setting a standard minimun horizontal size.
|
2000-02-19 03:59:02 +08:00
|
|
|
*
|
2000-02-23 23:52:33 +08:00
|
|
|
* Returns: A #GtkSpinbutton and it's #GtkAdjustment.
|
2000-11-18 08:25:42 +08:00
|
|
|
**/
|
2000-01-13 23:39:26 +08:00
|
|
|
GtkWidget *
|
|
|
|
gimp_spin_button_new (GtkObject **adjustment, /* return value */
|
|
|
|
gfloat value,
|
|
|
|
gfloat lower,
|
|
|
|
gfloat upper,
|
|
|
|
gfloat step_increment,
|
|
|
|
gfloat page_increment,
|
|
|
|
gfloat page_size,
|
|
|
|
gfloat climb_rate,
|
|
|
|
guint digits)
|
|
|
|
{
|
|
|
|
GtkWidget *spinbutton;
|
|
|
|
|
|
|
|
*adjustment = gtk_adjustment_new (value, lower, upper,
|
|
|
|
step_increment, page_increment, page_size);
|
|
|
|
|
|
|
|
spinbutton = gtk_spin_button_new (GTK_ADJUSTMENT (*adjustment),
|
|
|
|
climb_rate, digits);
|
|
|
|
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (spinbutton), TRUE);
|
2001-11-12 02:35:25 +08:00
|
|
|
gtk_widget_set_size_request (spinbutton, 75, -1);
|
2000-01-13 23:39:26 +08:00
|
|
|
|
|
|
|
return spinbutton;
|
|
|
|
}
|
|
|
|
|
2000-02-04 23:12:17 +08:00
|
|
|
static void
|
|
|
|
gimp_scale_entry_unconstrained_adjustment_callback (GtkAdjustment *adjustment,
|
|
|
|
GtkAdjustment *other_adj)
|
|
|
|
{
|
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 (other_adj),
|
|
|
|
gimp_scale_entry_unconstrained_adjustment_callback,
|
|
|
|
adjustment);
|
2000-02-04 23:12:17 +08:00
|
|
|
|
|
|
|
gtk_adjustment_set_value (other_adj, adjustment->value);
|
|
|
|
|
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 (other_adj),
|
|
|
|
gimp_scale_entry_unconstrained_adjustment_callback,
|
|
|
|
adjustment);
|
2000-02-04 23:12:17 +08:00
|
|
|
}
|
|
|
|
|
2000-02-19 03:59:02 +08:00
|
|
|
/**
|
|
|
|
* gimp_scale_entry_new:
|
2000-11-28 01:09:53 +08:00
|
|
|
* @table: The #GtkTable the widgets will be attached to.
|
|
|
|
* @column: The column to start with.
|
|
|
|
* @row: The row to attach the widgets.
|
|
|
|
* @text: The text for the #GtkLabel which will appear
|
|
|
|
* left of the #GtkHScale.
|
2001-11-12 02:35:25 +08:00
|
|
|
* @scale_width: The minimum horizontal size of the #GtkHScale.
|
|
|
|
* @spinbutton_width: The minimum horizontal size of the #GtkSpinButton.
|
2000-11-28 01:09:53 +08:00
|
|
|
* @value: The initial value.
|
|
|
|
* @lower: The lower boundary.
|
|
|
|
* @upper: The upper boundary.
|
|
|
|
* @step_increment: The step increment.
|
|
|
|
* @page_increment: The page increment.
|
|
|
|
* @digits: The number of decimal digits.
|
|
|
|
* @constrain: #TRUE if the range of possible values of the
|
|
|
|
* #GtkSpinButton should be the same as of the #GtkHScale.
|
2000-02-23 23:52:33 +08:00
|
|
|
* @unconstrained_lower: The spinbutton's lower boundary
|
|
|
|
* if @constrain == #FALSE.
|
|
|
|
* @unconstrained_upper: The spinbutton's upper boundary
|
|
|
|
* if @constrain == #FALSE.
|
2000-11-28 01:09:53 +08:00
|
|
|
* @tooltip: A tooltip message for the scale and the spinbutton.
|
|
|
|
* @help_data: The widgets' help_data (see gimp_help_set_help_data()).
|
2000-02-23 23:52:33 +08:00
|
|
|
*
|
|
|
|
* This function creates a #GtkLabel, a #GtkHScale and a #GtkSpinButton and
|
|
|
|
* attaches them to a 3-column #GtkTable.
|
|
|
|
*
|
2000-03-08 04:00:07 +08:00
|
|
|
* Note that if you pass a @tooltip or @help_data to this function you'll
|
2000-02-23 23:52:33 +08:00
|
|
|
* have to initialize GIMP's help system with gimp_help_init() before using it.
|
2000-02-19 03:59:02 +08:00
|
|
|
*
|
2000-02-23 23:52:33 +08:00
|
|
|
* Returns: The #GtkSpinButton's #GtkAdjustment.
|
2000-11-18 08:25:42 +08:00
|
|
|
**/
|
2000-01-13 23:39:26 +08:00
|
|
|
GtkObject *
|
2000-11-18 08:25:42 +08:00
|
|
|
gimp_scale_entry_new (GtkTable *table,
|
|
|
|
gint column,
|
|
|
|
gint row,
|
|
|
|
const gchar *text,
|
2001-11-12 02:35:25 +08:00
|
|
|
gint scale_width,
|
|
|
|
gint spinbutton_width,
|
2000-11-18 08:25:42 +08:00
|
|
|
gfloat value,
|
|
|
|
gfloat lower,
|
|
|
|
gfloat upper,
|
|
|
|
gfloat step_increment,
|
|
|
|
gfloat page_increment,
|
|
|
|
guint digits,
|
|
|
|
gboolean constrain,
|
|
|
|
gfloat unconstrained_lower,
|
|
|
|
gfloat unconstrained_upper,
|
|
|
|
const gchar *tooltip,
|
|
|
|
const gchar *help_data)
|
2000-01-13 23:39:26 +08:00
|
|
|
{
|
|
|
|
GtkWidget *label;
|
|
|
|
GtkWidget *scale;
|
|
|
|
GtkWidget *spinbutton;
|
|
|
|
GtkObject *adjustment;
|
2000-02-04 23:12:17 +08:00
|
|
|
GtkObject *return_adj;
|
2000-01-13 23:39:26 +08:00
|
|
|
|
2002-05-08 08:30:26 +08:00
|
|
|
label = gtk_label_new_with_mnemonic (text);
|
2000-01-13 23:39:26 +08:00
|
|
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 0.5);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), label,
|
|
|
|
column, column + 1, row, row + 1,
|
|
|
|
GTK_FILL, GTK_FILL, 0, 0);
|
|
|
|
gtk_widget_show (label);
|
|
|
|
|
2000-02-04 23:12:17 +08:00
|
|
|
if (! constrain &&
|
|
|
|
unconstrained_lower <= lower &&
|
|
|
|
unconstrained_upper >= upper)
|
|
|
|
{
|
|
|
|
GtkObject *constrained_adj;
|
|
|
|
|
|
|
|
constrained_adj = gtk_adjustment_new (value, lower, upper,
|
|
|
|
step_increment, page_increment,
|
|
|
|
0.0);
|
|
|
|
|
|
|
|
spinbutton = gimp_spin_button_new (&adjustment, value,
|
|
|
|
unconstrained_lower,
|
|
|
|
unconstrained_upper,
|
|
|
|
step_increment, page_increment, 0.0,
|
|
|
|
1.0, digits);
|
|
|
|
|
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 (constrained_adj), "value_changed",
|
|
|
|
G_CALLBACK (gimp_scale_entry_unconstrained_adjustment_callback),
|
2000-02-04 23:12:17 +08:00
|
|
|
adjustment);
|
|
|
|
|
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 (adjustment), "value_changed",
|
|
|
|
G_CALLBACK (gimp_scale_entry_unconstrained_adjustment_callback),
|
2000-02-04 23:12:17 +08:00
|
|
|
constrained_adj);
|
|
|
|
|
|
|
|
return_adj = adjustment;
|
|
|
|
|
|
|
|
adjustment = constrained_adj;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
spinbutton = gimp_spin_button_new (&adjustment, value, lower, upper,
|
|
|
|
step_increment, page_increment, 0.0,
|
|
|
|
1.0, digits);
|
|
|
|
|
|
|
|
return_adj = adjustment;
|
|
|
|
}
|
2002-05-08 08:30:26 +08:00
|
|
|
|
|
|
|
gtk_label_set_mnemonic_widget (GTK_LABEL (label), spinbutton);
|
2000-02-04 23:12:17 +08:00
|
|
|
|
2001-11-12 02:35:25 +08:00
|
|
|
if (spinbutton_width > 0)
|
|
|
|
gtk_widget_set_size_request (spinbutton, spinbutton_width, -1);
|
2000-01-13 23:39:26 +08:00
|
|
|
|
|
|
|
scale = gtk_hscale_new (GTK_ADJUSTMENT (adjustment));
|
2001-11-12 02:35:25 +08:00
|
|
|
if (scale_width > 0)
|
|
|
|
gtk_widget_set_size_request (scale, scale_width, -1);
|
2000-01-13 23:39:26 +08:00
|
|
|
gtk_scale_set_digits (GTK_SCALE (scale), digits);
|
|
|
|
gtk_scale_set_draw_value (GTK_SCALE (scale), FALSE);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), scale,
|
|
|
|
column + 1, column + 2, row, row + 1,
|
2000-02-04 23:12:17 +08:00
|
|
|
GTK_FILL | GTK_EXPAND, GTK_FILL, 0, 0);
|
2000-01-13 23:39:26 +08:00
|
|
|
gtk_widget_show (scale);
|
|
|
|
|
|
|
|
gtk_table_attach (GTK_TABLE (table), spinbutton,
|
|
|
|
column + 2, column + 3, row, row + 1,
|
2000-02-04 23:12:17 +08:00
|
|
|
GTK_SHRINK, GTK_SHRINK, 0, 0);
|
2000-01-13 23:39:26 +08:00
|
|
|
gtk_widget_show (spinbutton);
|
|
|
|
|
2000-03-06 21:04:15 +08:00
|
|
|
if (tooltip || help_data)
|
2000-01-13 23:39:26 +08:00
|
|
|
{
|
2000-03-06 21:04:15 +08:00
|
|
|
gimp_help_set_help_data (scale, tooltip, help_data);
|
|
|
|
gimp_help_set_help_data (spinbutton, tooltip, help_data);
|
2000-01-13 23:39:26 +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_object_set_data (G_OBJECT (return_adj), "label", label);
|
|
|
|
g_object_set_data (G_OBJECT (return_adj), "scale", scale);
|
|
|
|
g_object_set_data (G_OBJECT (return_adj), "spinbutton", spinbutton);
|
2000-02-14 21:23:12 +08:00
|
|
|
|
2000-02-04 23:12:17 +08:00
|
|
|
return return_adj;
|
2000-01-13 23:39:26 +08:00
|
|
|
}
|
|
|
|
|
2000-01-26 01:46:56 +08:00
|
|
|
static void
|
|
|
|
gimp_random_seed_toggle_update (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
gint *toggle_val;
|
|
|
|
|
|
|
|
toggle_val = (gint *) data;
|
|
|
|
|
|
|
|
if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget)))
|
2001-07-31 19:33:13 +08:00
|
|
|
*toggle_val = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (widget),
|
|
|
|
"time_true"));
|
2000-01-26 01:46:56 +08:00
|
|
|
else
|
2001-07-31 19:33:13 +08:00
|
|
|
*toggle_val = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (widget),
|
|
|
|
"time_false"));
|
2000-01-26 01:46:56 +08:00
|
|
|
|
|
|
|
gimp_toggle_button_sensitive_update (GTK_TOGGLE_BUTTON (widget));
|
|
|
|
}
|
|
|
|
|
2000-02-19 03:59:02 +08:00
|
|
|
/**
|
|
|
|
* gimp_random_seed_new:
|
2000-11-28 01:09:53 +08:00
|
|
|
* @seed: A pointer to the variable which stores the random seed.
|
|
|
|
* @use_time: A pointer to the variable which stores the @use_time
|
|
|
|
* toggle boolean.
|
|
|
|
* @time_true: The value to write to @use_time if the toggle button is checked.
|
2000-02-23 23:52:33 +08:00
|
|
|
* @time_false: The value to write to @use_time if the toggle button is
|
|
|
|
* unchecked.
|
2000-02-19 03:59:02 +08:00
|
|
|
*
|
2000-02-23 23:52:33 +08:00
|
|
|
* Note that this widget automatically sets tooltips with
|
|
|
|
* gimp_help_set_help_data(), so you'll have to initialize GIMP's help
|
|
|
|
* system with gimp_help_init() before using it.
|
|
|
|
*
|
|
|
|
* Returns: A #GtkHBox containing a #GtkSpinButton for the random seed and
|
|
|
|
* a #GtkToggleButton for toggling the @use_time behaviour.
|
2000-11-18 08:25:42 +08:00
|
|
|
**/
|
2000-01-26 01:46:56 +08:00
|
|
|
GtkWidget *
|
2000-02-04 23:12:17 +08:00
|
|
|
gimp_random_seed_new (gint *seed,
|
|
|
|
gint *use_time,
|
|
|
|
gint time_true,
|
|
|
|
gint time_false)
|
2000-01-26 01:46:56 +08:00
|
|
|
{
|
|
|
|
GtkWidget *hbox;
|
|
|
|
GtkWidget *spinbutton;
|
|
|
|
GtkObject *adj;
|
2000-02-04 23:12:17 +08:00
|
|
|
GtkWidget *button;
|
2000-01-26 01:46:56 +08:00
|
|
|
|
|
|
|
hbox = gtk_hbox_new (FALSE, 4);
|
|
|
|
|
|
|
|
spinbutton = gimp_spin_button_new (&adj, *seed,
|
|
|
|
0, G_MAXRAND, 1, 10, 0, 1, 0);
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), spinbutton, FALSE, FALSE, 0);
|
2001-07-31 19:33:13 +08:00
|
|
|
g_signal_connect (G_OBJECT (adj), "value_changed",
|
|
|
|
G_CALLBACK (gimp_int_adjustment_update),
|
|
|
|
seed);
|
2000-01-26 01:46:56 +08:00
|
|
|
gtk_widget_show (spinbutton);
|
|
|
|
|
|
|
|
gimp_help_set_help_data (spinbutton,
|
|
|
|
_("If the \"Time\" button is not pressed, "
|
|
|
|
"use this value for random number generator "
|
|
|
|
"seed - this allows you to repeat a "
|
|
|
|
"given \"random\" operation"), NULL);
|
|
|
|
|
2002-05-28 01:25:30 +08:00
|
|
|
button = gtk_toggle_button_new_with_mnemonic (_("_Time"));
|
2000-02-04 23:12:17 +08:00
|
|
|
gtk_misc_set_padding (GTK_MISC (GTK_BIN (button)->child), 2, 0);
|
2001-07-31 19:33:13 +08:00
|
|
|
g_signal_connect (G_OBJECT (button), "toggled",
|
|
|
|
G_CALLBACK (gimp_random_seed_toggle_update),
|
|
|
|
use_time);
|
2000-02-04 23:12:17 +08:00
|
|
|
gtk_box_pack_end (GTK_BOX (hbox), button, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (button);
|
|
|
|
|
|
|
|
gimp_help_set_help_data (button,
|
2000-01-26 01:46:56 +08:00
|
|
|
_("Seed random number generator from the current "
|
|
|
|
"time - this guarantees a reasonable "
|
|
|
|
"randomization"), NULL);
|
|
|
|
|
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_object_set_data (G_OBJECT (button), "time_true",
|
|
|
|
GINT_TO_POINTER (time_true));
|
|
|
|
g_object_set_data (G_OBJECT (button), "time_false",
|
|
|
|
GINT_TO_POINTER (time_false));
|
2000-01-26 01:46:56 +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_object_set_data (G_OBJECT (button), "inverse_sensitive",
|
|
|
|
spinbutton);
|
2000-01-26 01:46:56 +08:00
|
|
|
|
2000-02-04 23:12:17 +08:00
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button),
|
2000-01-26 01:46:56 +08:00
|
|
|
*use_time == time_true);
|
|
|
|
|
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_object_set_data (G_OBJECT (hbox), "spinbutton", spinbutton);
|
|
|
|
g_object_set_data (G_OBJECT (hbox), "togglebutton", button);
|
2000-02-23 23:52:33 +08:00
|
|
|
|
2000-01-26 01:46:56 +08:00
|
|
|
return hbox;
|
|
|
|
}
|
|
|
|
|
2000-02-01 04:47:44 +08:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GimpChainButton *chainbutton;
|
2000-02-03 01:59:44 +08:00
|
|
|
gboolean chain_constrains_ratio;
|
|
|
|
gdouble orig_x;
|
|
|
|
gdouble orig_y;
|
2000-02-01 04:47:44 +08:00
|
|
|
gdouble last_x;
|
|
|
|
gdouble last_y;
|
|
|
|
} GimpCoordinatesData;
|
|
|
|
|
|
|
|
static void
|
2000-02-03 01:59:44 +08:00
|
|
|
gimp_coordinates_callback (GtkWidget *widget,
|
2000-02-01 04:47:44 +08:00
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GimpCoordinatesData *gcd;
|
|
|
|
gdouble new_x;
|
|
|
|
gdouble new_y;
|
|
|
|
|
|
|
|
gcd = (GimpCoordinatesData *) data;
|
|
|
|
|
|
|
|
new_x = gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (widget), 0);
|
|
|
|
new_y = gimp_size_entry_get_refval (GIMP_SIZE_ENTRY (widget), 1);
|
|
|
|
|
|
|
|
if (gimp_chain_button_get_active (gcd->chainbutton))
|
|
|
|
{
|
2001-07-31 19:33:13 +08:00
|
|
|
g_signal_stop_emission_by_name (G_OBJECT (widget), "value_changed");
|
2000-02-01 04:47:44 +08:00
|
|
|
|
2000-02-03 01:59:44 +08:00
|
|
|
if (gcd->chain_constrains_ratio)
|
|
|
|
{
|
|
|
|
if ((gcd->orig_x != 0) && (gcd->orig_y != 0))
|
|
|
|
{
|
|
|
|
if (new_x != gcd->last_x)
|
|
|
|
{
|
|
|
|
gcd->last_x = new_x;
|
|
|
|
gcd->last_y = new_y = (new_x * gcd->orig_y) / gcd->orig_x;
|
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (widget), 1,
|
|
|
|
new_y);
|
|
|
|
}
|
|
|
|
else if (new_y != gcd->last_y)
|
|
|
|
{
|
|
|
|
gcd->last_y = new_y;
|
|
|
|
gcd->last_x = new_x = (new_y * gcd->orig_x) / gcd->orig_y;
|
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (widget), 0,
|
|
|
|
new_x);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (new_x != gcd->last_x)
|
|
|
|
{
|
|
|
|
gcd->last_y = new_y = gcd->last_x = new_x;
|
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (widget), 1, new_x);
|
|
|
|
}
|
|
|
|
else if (new_y != gcd->last_y)
|
|
|
|
{
|
|
|
|
gcd->last_x = new_x = gcd->last_y = new_y;
|
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (widget), 0, new_y);
|
|
|
|
}
|
|
|
|
}
|
2000-02-01 04:47:44 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (new_x != gcd->last_x)
|
|
|
|
gcd->last_x = new_x;
|
|
|
|
if (new_y != gcd->last_y)
|
|
|
|
gcd->last_y = new_y;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-02-19 03:59:02 +08:00
|
|
|
/**
|
|
|
|
* gimp_coordinates_new:
|
2000-11-28 01:09:53 +08:00
|
|
|
* @unit: The initial unit of the #GimpUnitMenu.
|
|
|
|
* @unit_format: The unit format string as passed to
|
|
|
|
* gimp_size_entry_new().
|
|
|
|
* @menu_show_pixels: #TRUE if the #GimpUnitMenu should contain an item for
|
|
|
|
* GIMP_UNIT_PIXEL.
|
|
|
|
* @menu_show_percent: #TRUE if the #GimpUnitMenu should contain an item for
|
|
|
|
* GIMP_UNIT_PERCENT.
|
2001-11-12 02:35:25 +08:00
|
|
|
* @spinbutton_width: The horizontal size of the #GimpSizeEntry's
|
2000-11-28 01:09:53 +08:00
|
|
|
* #GtkSpinButton's.
|
|
|
|
* @update_policy: The update policy for the #GimpSizeEntry.
|
|
|
|
* @chainbutton_active: #TRUE if the attached #GimpChainButton should be
|
|
|
|
* active.
|
2000-02-23 23:52:33 +08:00
|
|
|
* @chain_constrains_ratio: #TRUE if the chainbutton should constrain the
|
|
|
|
* fields' aspect ratio. If #FALSE, the values will
|
|
|
|
* be constrained.
|
2000-11-28 01:09:53 +08:00
|
|
|
* @xlabel: The label for the X coordinate.
|
|
|
|
* @x: The initial value of the X coordinate.
|
|
|
|
* @xres: The horizontal resolution in DPI.
|
|
|
|
* @lower_boundary_x: The lower boundary of the X coordinate.
|
|
|
|
* @upper_boundary_x: The upper boundary of the X coordinate.
|
|
|
|
* @xsize_0: The X value which will be treated as 0%.
|
|
|
|
* @xsize_100: The X value which will be treated as 100%.
|
|
|
|
* @ylabel: The label for the Y coordinate.
|
|
|
|
* @y: The initial value of the Y coordinate.
|
|
|
|
* @yres: The vertical resolution in DPI.
|
|
|
|
* @lower_boundary_y: The lower boundary of the Y coordinate.
|
|
|
|
* @upper_boundary_y: The upper boundary of the Y coordinate.
|
|
|
|
* @ysize_0: The Y value which will be treated as 0%.
|
|
|
|
* @ysize_100: The Y value which will be treated as 100%.
|
2000-02-19 03:59:02 +08:00
|
|
|
*
|
2000-02-23 23:52:33 +08:00
|
|
|
* Returns: A #GimpSizeEntry with two fields for x/y coordinates/sizes with
|
|
|
|
* a #GimpChainButton attached to constrain either the two fields'
|
|
|
|
* values or the ratio between them.
|
2000-11-18 08:25:42 +08:00
|
|
|
**/
|
2000-02-01 04:47:44 +08:00
|
|
|
GtkWidget *
|
2000-02-08 04:35:13 +08:00
|
|
|
gimp_coordinates_new (GimpUnit unit,
|
2000-11-18 08:25:42 +08:00
|
|
|
const gchar *unit_format,
|
2000-02-01 04:47:44 +08:00
|
|
|
gboolean menu_show_pixels,
|
|
|
|
gboolean menu_show_percent,
|
2001-11-12 02:35:25 +08:00
|
|
|
gint spinbutton_width,
|
2000-02-08 04:35:13 +08:00
|
|
|
GimpSizeEntryUpdatePolicy update_policy,
|
2000-02-01 04:47:44 +08:00
|
|
|
|
2000-02-03 01:59:44 +08:00
|
|
|
gboolean chainbutton_active,
|
|
|
|
gboolean chain_constrains_ratio,
|
|
|
|
|
2000-11-18 08:25:42 +08:00
|
|
|
const gchar *xlabel,
|
2000-02-01 04:47:44 +08:00
|
|
|
gdouble x,
|
|
|
|
gdouble xres,
|
2000-02-03 01:59:44 +08:00
|
|
|
gdouble lower_boundary_x,
|
|
|
|
gdouble upper_boundary_x,
|
|
|
|
gdouble xsize_0, /* % */
|
|
|
|
gdouble xsize_100, /* % */
|
2000-02-01 04:47:44 +08:00
|
|
|
|
2000-11-18 08:25:42 +08:00
|
|
|
const gchar *ylabel,
|
2000-02-01 04:47:44 +08:00
|
|
|
gdouble y,
|
|
|
|
gdouble yres,
|
2000-02-03 01:59:44 +08:00
|
|
|
gdouble lower_boundary_y,
|
|
|
|
gdouble upper_boundary_y,
|
|
|
|
gdouble ysize_0, /* % */
|
|
|
|
gdouble ysize_100 /* % */)
|
2000-02-01 04:47:44 +08:00
|
|
|
{
|
|
|
|
GimpCoordinatesData *gcd;
|
|
|
|
GtkObject *adjustment;
|
|
|
|
GtkWidget *spinbutton;
|
|
|
|
GtkWidget *sizeentry;
|
2000-02-23 23:52:33 +08:00
|
|
|
GtkWidget *chainbutton;
|
2000-02-01 04:47:44 +08:00
|
|
|
|
|
|
|
spinbutton = gimp_spin_button_new (&adjustment, 1, 0, 1, 1, 10, 1, 1, 2);
|
|
|
|
sizeentry = gimp_size_entry_new (1, unit, unit_format,
|
|
|
|
menu_show_pixels,
|
|
|
|
menu_show_percent,
|
|
|
|
FALSE,
|
2001-11-12 02:35:25 +08:00
|
|
|
spinbutton_width,
|
2000-02-01 04:47:44 +08:00
|
|
|
update_policy);
|
|
|
|
gtk_table_set_col_spacing (GTK_TABLE (sizeentry), 0, 4);
|
2000-02-03 01:59:44 +08:00
|
|
|
gtk_table_set_col_spacing (GTK_TABLE (sizeentry), 2, 4);
|
2000-02-01 04:47:44 +08:00
|
|
|
gimp_size_entry_add_field (GIMP_SIZE_ENTRY (sizeentry),
|
|
|
|
GTK_SPIN_BUTTON (spinbutton), NULL);
|
|
|
|
gtk_table_attach_defaults (GTK_TABLE (sizeentry), spinbutton, 1, 2, 0, 1);
|
|
|
|
gtk_widget_show (spinbutton);
|
|
|
|
|
2000-03-15 07:06:21 +08:00
|
|
|
gimp_size_entry_set_unit (GIMP_SIZE_ENTRY (sizeentry),
|
2000-03-16 00:00:24 +08:00
|
|
|
(update_policy == GIMP_SIZE_ENTRY_UPDATE_RESOLUTION) || (menu_show_pixels == FALSE) ?
|
2000-03-15 07:06:21 +08:00
|
|
|
GIMP_UNIT_INCH : GIMP_UNIT_PIXEL);
|
2000-02-01 04:47:44 +08:00
|
|
|
|
|
|
|
gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (sizeentry), 0, xres, TRUE);
|
|
|
|
gimp_size_entry_set_resolution (GIMP_SIZE_ENTRY (sizeentry), 1, yres, TRUE);
|
|
|
|
gimp_size_entry_set_refval_boundaries (GIMP_SIZE_ENTRY (sizeentry), 0,
|
|
|
|
lower_boundary_x, upper_boundary_x);
|
|
|
|
gimp_size_entry_set_refval_boundaries (GIMP_SIZE_ENTRY (sizeentry), 1,
|
|
|
|
lower_boundary_y, upper_boundary_y);
|
|
|
|
|
2000-02-03 01:59:44 +08:00
|
|
|
if (menu_show_percent)
|
|
|
|
{
|
|
|
|
gimp_size_entry_set_size (GIMP_SIZE_ENTRY (sizeentry), 0,
|
|
|
|
xsize_0, xsize_100);
|
|
|
|
gimp_size_entry_set_size (GIMP_SIZE_ENTRY (sizeentry), 1,
|
|
|
|
ysize_0, ysize_100);
|
|
|
|
}
|
|
|
|
|
2000-02-01 04:47:44 +08:00
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (sizeentry), 0, x);
|
|
|
|
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (sizeentry), 1, y);
|
|
|
|
|
|
|
|
gimp_size_entry_attach_label (GIMP_SIZE_ENTRY (sizeentry), xlabel, 0, 0, 1.0);
|
|
|
|
gimp_size_entry_attach_label (GIMP_SIZE_ENTRY (sizeentry), ylabel, 1, 0, 1.0);
|
|
|
|
|
2000-02-23 23:52:33 +08:00
|
|
|
chainbutton = gimp_chain_button_new (GIMP_CHAIN_RIGHT);
|
2000-02-03 01:59:44 +08:00
|
|
|
if (chainbutton_active)
|
2000-02-23 23:52:33 +08:00
|
|
|
gimp_chain_button_set_active (GIMP_CHAIN_BUTTON (chainbutton), TRUE);
|
|
|
|
gtk_table_attach (GTK_TABLE (sizeentry), chainbutton, 2, 3, 0, 2,
|
2000-02-01 04:47:44 +08:00
|
|
|
GTK_SHRINK | GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0);
|
2000-02-23 23:52:33 +08:00
|
|
|
gtk_widget_show (chainbutton);
|
2000-02-01 04:47:44 +08:00
|
|
|
|
|
|
|
gcd = g_new (GimpCoordinatesData, 1);
|
2000-02-23 23:52:33 +08:00
|
|
|
gcd->chainbutton = GIMP_CHAIN_BUTTON (chainbutton);
|
2000-02-03 01:59:44 +08:00
|
|
|
gcd->chain_constrains_ratio = chain_constrains_ratio;
|
|
|
|
gcd->orig_x = x;
|
|
|
|
gcd->orig_y = y;
|
|
|
|
gcd->last_x = x;
|
|
|
|
gcd->last_y = y;
|
2000-02-01 04:47:44 +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_swapped (G_OBJECT (sizeentry), "destroy",
|
|
|
|
G_CALLBACK (g_free),
|
|
|
|
gcd);
|
2000-02-01 04:47:44 +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 (sizeentry), "value_changed",
|
|
|
|
G_CALLBACK (gimp_coordinates_callback),
|
|
|
|
gcd);
|
2000-02-01 04:47:44 +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_object_set_data (G_OBJECT (sizeentry), "chainbutton", chainbutton);
|
2000-02-23 23:52:33 +08:00
|
|
|
|
2000-02-01 04:47:44 +08:00
|
|
|
return sizeentry;
|
|
|
|
}
|
|
|
|
|
2000-03-15 07:06:21 +08:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GtkAdjustment *adjustment;
|
|
|
|
GtkAdjustment *divided_adj;
|
2000-05-21 02:39:02 +08:00
|
|
|
guint mem_size_unit;
|
2000-03-15 07:06:21 +08:00
|
|
|
} GimpMemSizeEntryData;
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_mem_size_entry_callback (GtkAdjustment *adj,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GimpMemSizeEntryData *gmsed;
|
2002-05-29 02:49:45 +08:00
|
|
|
gulong new_value;
|
2000-03-15 07:06:21 +08:00
|
|
|
|
|
|
|
gmsed = (GimpMemSizeEntryData *)data;
|
2002-05-29 02:49:45 +08:00
|
|
|
new_value = (gulong) adj->value * gmsed->mem_size_unit;
|
2000-03-15 07:06:21 +08:00
|
|
|
|
|
|
|
gtk_adjustment_set_value (gmsed->adjustment, new_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_mem_size_unit_callback (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GimpMemSizeEntryData *gmsed;
|
2002-05-29 02:49:45 +08:00
|
|
|
gulong divided_mem_size;
|
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
|
|
|
guint new_unit;
|
2000-03-15 07:06:21 +08:00
|
|
|
|
|
|
|
gmsed = (GimpMemSizeEntryData *)data;
|
|
|
|
|
2001-11-22 21:01:26 +08:00
|
|
|
new_unit = GPOINTER_TO_UINT (g_object_get_data (G_OBJECT (widget),
|
|
|
|
"gimp-item-data"));
|
2000-03-15 07:06:21 +08:00
|
|
|
|
|
|
|
if (new_unit && new_unit != gmsed->mem_size_unit)
|
|
|
|
{
|
2002-05-29 02:49:45 +08:00
|
|
|
GtkAdjustment *div_adj = GTK_ADJUSTMENT (gmsed->divided_adj);
|
|
|
|
|
|
|
|
divided_mem_size = (gulong) gmsed->adjustment->value / new_unit;
|
2000-03-15 07:06:21 +08:00
|
|
|
gmsed->mem_size_unit = new_unit;
|
|
|
|
|
2002-05-29 02:49:45 +08:00
|
|
|
div_adj->lower = gmsed->adjustment->lower / new_unit;
|
|
|
|
div_adj->upper = gmsed->adjustment->upper / new_unit;
|
|
|
|
|
|
|
|
gtk_adjustment_changed (div_adj);
|
|
|
|
|
2001-01-25 20:05:26 +08:00
|
|
|
gtk_adjustment_set_value (GTK_ADJUSTMENT (gmsed->divided_adj),
|
|
|
|
divided_mem_size);
|
2000-03-15 07:06:21 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_mem_size_entry_new:
|
|
|
|
* @adjustment: The adjustment containing the memsize and it's limits.
|
|
|
|
*
|
|
|
|
* Returns: A #GtkHBox with a #GtkSpinButton and a #GtkOptionMenu.
|
2000-11-18 08:25:42 +08:00
|
|
|
**/
|
2000-03-15 07:06:21 +08:00
|
|
|
GtkWidget *
|
|
|
|
gimp_mem_size_entry_new (GtkAdjustment *adjustment)
|
|
|
|
{
|
|
|
|
GtkWidget *hbox;
|
|
|
|
GtkObject *divided_adj;
|
|
|
|
GtkWidget *spinbutton;
|
|
|
|
GtkWidget *optionmenu;
|
|
|
|
|
|
|
|
GimpMemSizeEntryData *gmsed;
|
2002-05-29 02:49:45 +08:00
|
|
|
gulong mem_size_unit;
|
|
|
|
gulong divided_mem_size;
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_ADJUSTMENT (adjustment), NULL);
|
|
|
|
g_return_val_if_fail (adjustment->lower >= 0, NULL);
|
|
|
|
g_return_val_if_fail (adjustment->value >= 0, NULL);
|
2000-03-15 07:06:21 +08:00
|
|
|
|
|
|
|
gmsed = g_new (GimpMemSizeEntryData, 1);
|
|
|
|
|
2002-05-29 02:49:45 +08:00
|
|
|
for (i = 0, mem_size_unit = 1; i < 2; i++)
|
2000-03-15 07:06:21 +08:00
|
|
|
{
|
2002-05-29 02:49:45 +08:00
|
|
|
if ( (gulong) adjustment->value % (mem_size_unit << 10) != 0 )
|
2000-03-15 07:06:21 +08:00
|
|
|
break;
|
2002-05-29 02:49:45 +08:00
|
|
|
mem_size_unit <<= 10;
|
2000-03-15 07:06:21 +08:00
|
|
|
}
|
2002-05-29 02:49:45 +08:00
|
|
|
|
|
|
|
divided_mem_size = (gulong) adjustment->value / mem_size_unit;
|
2000-03-15 07:06:21 +08:00
|
|
|
|
|
|
|
hbox = gtk_hbox_new (FALSE, 2);
|
|
|
|
spinbutton =
|
|
|
|
gimp_spin_button_new (÷d_adj, divided_mem_size,
|
2002-05-29 02:49:45 +08:00
|
|
|
adjustment->lower / mem_size_unit,
|
|
|
|
adjustment->upper / mem_size_unit,
|
|
|
|
1.0, 16.0, 0.0, 1.0, 0.0);
|
2001-07-31 19:33:13 +08:00
|
|
|
g_signal_connect (G_OBJECT (divided_adj), "value_changed",
|
|
|
|
G_CALLBACK (gimp_mem_size_entry_callback),
|
|
|
|
gmsed);
|
2000-03-15 07:06:21 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), spinbutton, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (spinbutton);
|
|
|
|
|
|
|
|
optionmenu =
|
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
|
|
|
gimp_option_menu_new2 (FALSE, G_CALLBACK (gimp_mem_size_unit_callback),
|
2000-03-15 07:06:21 +08:00
|
|
|
gmsed, (gpointer) mem_size_unit,
|
|
|
|
|
2002-05-29 02:49:45 +08:00
|
|
|
_("Bytes"), GINT_TO_POINTER (1 << 0), NULL,
|
|
|
|
_("KiloBytes"), GINT_TO_POINTER (1 << 10), NULL,
|
|
|
|
_("MegaBytes"), GINT_TO_POINTER (1 << 20), NULL,
|
2000-03-15 07:06:21 +08:00
|
|
|
|
|
|
|
NULL);
|
2002-05-29 02:49:45 +08:00
|
|
|
|
2000-03-15 07:06:21 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), optionmenu, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (optionmenu);
|
|
|
|
|
2002-02-04 11:10:33 +08:00
|
|
|
g_object_ref (adjustment);
|
|
|
|
gtk_object_sink (GTK_OBJECT (adjustment));
|
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_swapped (G_OBJECT (hbox), "destroy",
|
2001-07-31 19:33:13 +08:00
|
|
|
G_CALLBACK (g_object_unref),
|
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
|
|
|
adjustment);
|
|
|
|
g_signal_connect_swapped (G_OBJECT (hbox), "destroy",
|
|
|
|
G_CALLBACK (g_free),
|
|
|
|
gmsed);
|
2000-03-15 07:06:21 +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
|
|
|
gmsed->adjustment = adjustment;
|
|
|
|
gmsed->divided_adj = GTK_ADJUSTMENT (divided_adj);
|
2000-03-15 07:06:21 +08:00
|
|
|
gmsed->mem_size_unit = mem_size_unit;
|
|
|
|
|
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_object_set_data (G_OBJECT (hbox), "spinbutton", spinbutton);
|
|
|
|
g_object_set_data (G_OBJECT (hbox), "optionmenu", optionmenu);
|
2000-03-15 07:06:21 +08:00
|
|
|
|
|
|
|
return hbox;
|
|
|
|
}
|
|
|
|
|
2000-02-19 03:59:02 +08:00
|
|
|
/**
|
|
|
|
* gimp_pixmap_button_new:
|
2000-02-23 23:52:33 +08:00
|
|
|
* @xpm_data: The XPM data which will be passed to gimp_pixmap_new().
|
2000-11-28 01:09:53 +08:00
|
|
|
* @text: An optional text which will appear right of the pixmap.
|
2000-02-19 03:59:02 +08:00
|
|
|
*
|
2000-02-23 23:52:33 +08:00
|
|
|
* Returns: A #GtkButton with a #GimpPixmap and an optional #GtkLabel.
|
2000-11-18 08:25:42 +08:00
|
|
|
**/
|
2000-02-18 21:59:18 +08:00
|
|
|
GtkWidget *
|
2000-11-18 08:25:42 +08:00
|
|
|
gimp_pixmap_button_new (gchar **xpm_data,
|
|
|
|
const gchar *text)
|
2000-02-18 21:59:18 +08:00
|
|
|
{
|
|
|
|
GtkWidget *button;
|
|
|
|
GtkWidget *pixmap;
|
|
|
|
|
|
|
|
button = gtk_button_new ();
|
|
|
|
pixmap = gimp_pixmap_new (xpm_data);
|
2000-02-19 22:25:27 +08:00
|
|
|
|
|
|
|
if (text)
|
|
|
|
{
|
|
|
|
GtkWidget *abox;
|
|
|
|
GtkWidget *hbox;
|
|
|
|
GtkWidget *label;
|
|
|
|
|
|
|
|
abox = gtk_alignment_new (0.5, 0.5, 0.0, 0.0);
|
|
|
|
gtk_container_add (GTK_CONTAINER (button), abox);
|
|
|
|
gtk_widget_show (abox);
|
|
|
|
|
|
|
|
hbox = gtk_hbox_new (FALSE, 0);
|
|
|
|
gtk_container_add (GTK_CONTAINER (abox), hbox);
|
|
|
|
gtk_widget_show (hbox);
|
|
|
|
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), pixmap, FALSE, FALSE, 4);
|
|
|
|
gtk_widget_show (pixmap);
|
|
|
|
|
|
|
|
label = gtk_label_new (text);
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 4);
|
|
|
|
gtk_widget_show (label);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gtk_container_add (GTK_CONTAINER (button), pixmap);
|
|
|
|
gtk_widget_show (pixmap);
|
|
|
|
}
|
|
|
|
|
2000-02-18 21:59:18 +08:00
|
|
|
|
|
|
|
return button;
|
|
|
|
}
|
|
|
|
|
2000-01-13 23:39:26 +08:00
|
|
|
/*
|
2000-01-27 09:22:27 +08:00
|
|
|
* Standard Callbacks
|
2000-01-13 23:39:26 +08:00
|
|
|
*/
|
|
|
|
|
2000-02-23 23:52:33 +08:00
|
|
|
/**
|
|
|
|
* gimp_toggle_button_sensitive_update:
|
|
|
|
* @toggle_button: The #GtkToggleButton the "set_sensitive" and
|
|
|
|
* "inverse_sensitive" lists are attached to.
|
|
|
|
*
|
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
|
|
|
* If you attached a pointer to a #GtkWidget with g_object_set_data() and
|
2000-02-23 23:52:33 +08:00
|
|
|
* the "set_sensitive" key to the #GtkToggleButton, the sensitive state of
|
|
|
|
* the attached widget will be set according to the toggle button's
|
|
|
|
* "active" state.
|
|
|
|
*
|
|
|
|
* You can attach an arbitrary list of widgets by attaching another
|
|
|
|
* "set_sensitive" data pointer to the first widget (and so on...).
|
|
|
|
*
|
|
|
|
* This function can also set the sensitive state according to the toggle
|
|
|
|
* button's inverse "active" state by attaching widgets with the
|
|
|
|
* "inverse_sensitive" key.
|
2000-11-18 08:25:42 +08:00
|
|
|
**/
|
2000-02-23 23:52:33 +08:00
|
|
|
void
|
2000-01-26 01:46:56 +08:00
|
|
|
gimp_toggle_button_sensitive_update (GtkToggleButton *toggle_button)
|
2000-01-13 23:39:26 +08:00
|
|
|
{
|
|
|
|
GtkWidget *set_sensitive;
|
2000-01-26 01:46:56 +08:00
|
|
|
gboolean active;
|
2000-01-13 23:39:26 +08:00
|
|
|
|
2000-01-26 01:46:56 +08:00
|
|
|
active = gtk_toggle_button_get_active (toggle_button);
|
2000-01-13 23:39:26 +08:00
|
|
|
|
2001-07-31 19:33:13 +08:00
|
|
|
set_sensitive =
|
|
|
|
g_object_get_data (G_OBJECT (toggle_button), "set_sensitive");
|
2000-01-13 23:39:26 +08:00
|
|
|
while (set_sensitive)
|
|
|
|
{
|
2000-02-01 04:47:44 +08:00
|
|
|
gtk_widget_set_sensitive (set_sensitive, active);
|
2000-01-13 23:39:26 +08:00
|
|
|
set_sensitive =
|
2001-07-31 19:33:13 +08:00
|
|
|
g_object_get_data (G_OBJECT (set_sensitive), "set_sensitive");
|
2000-01-13 23:39:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
set_sensitive =
|
2001-07-31 19:33:13 +08:00
|
|
|
g_object_get_data (G_OBJECT (toggle_button), "inverse_sensitive");
|
2000-01-13 23:39:26 +08:00
|
|
|
while (set_sensitive)
|
|
|
|
{
|
2000-02-01 04:47:44 +08:00
|
|
|
gtk_widget_set_sensitive (set_sensitive, ! active);
|
2000-01-13 23:39:26 +08:00
|
|
|
set_sensitive =
|
2001-07-31 19:33:13 +08:00
|
|
|
g_object_get_data (G_OBJECT (set_sensitive), "inverse_sensitive");
|
2000-01-13 23:39:26 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-02-19 03:59:02 +08:00
|
|
|
/**
|
|
|
|
* gimp_toggle_button_update:
|
2000-02-23 23:52:33 +08:00
|
|
|
* @widget: A #GtkToggleButton.
|
2000-11-28 01:09:53 +08:00
|
|
|
* @data: A pointer to a #gint variable which will store the value of
|
|
|
|
* gtk_toggle_button_get_active().
|
2000-02-23 23:52:33 +08:00
|
|
|
*
|
|
|
|
* Note that this function calls gimp_toggle_button_sensitive_update().
|
2000-11-18 08:25:42 +08:00
|
|
|
**/
|
2000-01-26 01:46:56 +08:00
|
|
|
void
|
|
|
|
gimp_toggle_button_update (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
gint *toggle_val;
|
|
|
|
|
|
|
|
toggle_val = (gint *) data;
|
|
|
|
|
|
|
|
if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget)))
|
|
|
|
*toggle_val = TRUE;
|
|
|
|
else
|
|
|
|
*toggle_val = FALSE;
|
|
|
|
|
|
|
|
gimp_toggle_button_sensitive_update (GTK_TOGGLE_BUTTON (widget));
|
|
|
|
}
|
|
|
|
|
2000-02-19 03:59:02 +08:00
|
|
|
/**
|
|
|
|
* gimp_radio_button_update:
|
2000-02-23 23:52:33 +08:00
|
|
|
* @widget: A #GtkRadioButton.
|
2000-11-28 01:09:53 +08:00
|
|
|
* @data: A pointer to a #gint variable which will store the value of
|
2001-11-22 21:01:26 +08:00
|
|
|
* GPOINTER_TO_INT (g_object_get_user_data(@widget, "gimp-item-data")).
|
2000-02-23 23:52:33 +08:00
|
|
|
*
|
|
|
|
* Note that this function calls gimp_toggle_button_sensitive_update().
|
2000-11-18 08:25:42 +08:00
|
|
|
**/
|
2000-01-13 23:39:26 +08:00
|
|
|
void
|
|
|
|
gimp_radio_button_update (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
gint *toggle_val;
|
|
|
|
|
2000-01-26 01:46:56 +08:00
|
|
|
if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget)))
|
2000-01-13 23:39:26 +08:00
|
|
|
{
|
|
|
|
toggle_val = (gint *) data;
|
|
|
|
|
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
|
|
|
*toggle_val = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (widget),
|
2001-11-22 21:01:26 +08:00
|
|
|
"gimp-item-data"));
|
2000-01-13 23:39:26 +08:00
|
|
|
}
|
2000-01-26 01:46:56 +08:00
|
|
|
|
|
|
|
gimp_toggle_button_sensitive_update (GTK_TOGGLE_BUTTON (widget));
|
2000-01-13 23:39:26 +08:00
|
|
|
}
|
|
|
|
|
2000-02-23 23:52:33 +08:00
|
|
|
/**
|
|
|
|
* gimp_menu_item_update:
|
|
|
|
* @widget: A #GtkMenuItem.
|
2000-11-28 01:09:53 +08:00
|
|
|
* @data: A pointer to a #gint variable which will store the value of
|
2001-11-22 21:01:26 +08:00
|
|
|
* GPOINTER_TO_INT (g_object_get_data(@widget, "gimp-item-data")).
|
2000-11-18 08:25:42 +08:00
|
|
|
**/
|
2000-02-23 23:52:33 +08:00
|
|
|
void
|
|
|
|
gimp_menu_item_update (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
gint *item_val;
|
|
|
|
|
|
|
|
item_val = (gint *) data;
|
|
|
|
|
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
|
|
|
*item_val = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (widget),
|
2001-11-22 21:01:26 +08:00
|
|
|
"gimp-item-data"));
|
2000-02-23 23:52:33 +08:00
|
|
|
}
|
|
|
|
|
2000-02-19 03:59:02 +08:00
|
|
|
/**
|
|
|
|
* gimp_int_adjustment_update:
|
2000-02-23 23:52:33 +08:00
|
|
|
* @adjustment: A #GtkAdjustment.
|
2000-11-28 01:09:53 +08:00
|
|
|
* @data: A pointer to a #gint variable which will store the
|
|
|
|
* @adjustment's value.
|
2000-02-23 23:52:33 +08:00
|
|
|
*
|
|
|
|
* Note that the #GtkAdjustment's value (which is a #gfloat) will be rounded
|
2000-11-28 01:09:53 +08:00
|
|
|
* with RINT().
|
2000-11-18 08:25:42 +08:00
|
|
|
**/
|
2000-01-13 23:39:26 +08:00
|
|
|
void
|
|
|
|
gimp_int_adjustment_update (GtkAdjustment *adjustment,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
gint *val;
|
|
|
|
|
|
|
|
val = (gint *) data;
|
2000-11-28 01:09:53 +08:00
|
|
|
*val = RINT (adjustment->value);
|
2000-01-13 23:39:26 +08:00
|
|
|
}
|
|
|
|
|
2000-05-21 02:39:02 +08:00
|
|
|
/**
|
|
|
|
* gimp_uint_adjustment_update:
|
|
|
|
* @adjustment: A #GtkAdjustment.
|
2000-11-28 01:09:53 +08:00
|
|
|
* @data: A pointer to a #guint variable which will store the
|
|
|
|
* @adjustment's value.
|
2000-05-21 02:39:02 +08:00
|
|
|
*
|
|
|
|
* Note that the #GtkAdjustment's value (which is a #gfloat) will be rounded
|
|
|
|
* with (#guint) (value + 0.5).
|
2000-11-18 08:25:42 +08:00
|
|
|
**/
|
2000-05-21 02:39:02 +08:00
|
|
|
void
|
|
|
|
gimp_uint_adjustment_update (GtkAdjustment *adjustment,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
guint *val;
|
|
|
|
|
|
|
|
val = (guint *) data;
|
|
|
|
*val = (guint) (adjustment->value + 0.5);
|
|
|
|
}
|
|
|
|
|
2000-02-19 03:59:02 +08:00
|
|
|
/**
|
|
|
|
* gimp_float_adjustment_update:
|
2000-02-23 23:52:33 +08:00
|
|
|
* @adjustment: A #GtkAdjustment.
|
2000-11-28 01:09:53 +08:00
|
|
|
* @data: A pointer to a #gfloat varaiable which willl store the
|
|
|
|
* @adjustment's value.
|
2000-11-18 08:25:42 +08:00
|
|
|
**/
|
2000-01-15 23:32:28 +08:00
|
|
|
void
|
|
|
|
gimp_float_adjustment_update (GtkAdjustment *adjustment,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
gfloat *val;
|
|
|
|
|
|
|
|
val = (gfloat *) data;
|
|
|
|
*val = adjustment->value;
|
|
|
|
}
|
|
|
|
|
2000-02-19 03:59:02 +08:00
|
|
|
/**
|
|
|
|
* gimp_double_adjustment_update:
|
2000-02-23 23:52:33 +08:00
|
|
|
* @adjustment: A #GtkAdjustment.
|
2000-11-28 01:09:53 +08:00
|
|
|
* @data: A pointer to a #gdouble variable which will store the
|
|
|
|
* @adjustment's value.
|
2000-11-18 08:25:42 +08:00
|
|
|
**/
|
2000-01-13 23:39:26 +08:00
|
|
|
void
|
|
|
|
gimp_double_adjustment_update (GtkAdjustment *adjustment,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
gdouble *val;
|
|
|
|
|
|
|
|
val = (gdouble *) data;
|
|
|
|
*val = adjustment->value;
|
|
|
|
}
|
|
|
|
|
2000-02-19 03:59:02 +08:00
|
|
|
/**
|
|
|
|
* gimp_unit_menu_update:
|
2000-02-23 23:52:33 +08:00
|
|
|
* @widget: A #GimpUnitMenu.
|
2000-11-28 01:09:53 +08:00
|
|
|
* @data: A pointer to a #GimpUnit variable which will store the unit menu's
|
|
|
|
* value.
|
2000-02-23 23:52:33 +08:00
|
|
|
*
|
|
|
|
* This callback can set the number of decimal digits of an arbitrary number
|
|
|
|
* of #GtkSpinButton's. To use this functionality, attach the spinbuttons
|
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
|
|
|
* as list of data pointers attached with g_object_set_data() with the
|
2000-02-23 23:52:33 +08:00
|
|
|
* "set_digits" key.
|
|
|
|
*
|
|
|
|
* See gimp_toggle_button_sensitive_update() for a description of how
|
|
|
|
* to set up the list.
|
2000-11-18 08:25:42 +08:00
|
|
|
**/
|
2000-01-14 20:41:00 +08:00
|
|
|
void
|
|
|
|
gimp_unit_menu_update (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
2000-02-08 04:35:13 +08:00
|
|
|
GimpUnit *val;
|
2000-01-14 20:41:00 +08:00
|
|
|
GtkWidget *spinbutton;
|
|
|
|
gint digits;
|
|
|
|
|
2000-02-08 04:35:13 +08:00
|
|
|
val = (GimpUnit *) data;
|
2000-01-14 20:41:00 +08:00
|
|
|
*val = gimp_unit_menu_get_unit (GIMP_UNIT_MENU (widget));
|
|
|
|
|
2000-02-08 04:35:13 +08:00
|
|
|
digits = ((*val == GIMP_UNIT_PIXEL) ? 0 :
|
|
|
|
((*val == GIMP_UNIT_PERCENT) ? 2 :
|
2000-01-14 20:41:00 +08:00
|
|
|
(MIN (6, MAX (3, gimp_unit_get_digits (*val))))));
|
|
|
|
|
2001-07-31 19:33:13 +08:00
|
|
|
spinbutton = g_object_get_data (G_OBJECT (widget), "set_digits");
|
2000-01-14 20:41:00 +08:00
|
|
|
while (spinbutton)
|
|
|
|
{
|
|
|
|
gtk_spin_button_set_digits (GTK_SPIN_BUTTON (spinbutton), digits);
|
2001-07-31 19:33:13 +08:00
|
|
|
spinbutton = g_object_get_data (G_OBJECT (spinbutton), "set_digits");
|
2000-01-14 20:41:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-01-11 06:49:45 +08:00
|
|
|
|
2000-01-13 23:39:26 +08:00
|
|
|
/*
|
2000-01-27 09:22:27 +08:00
|
|
|
* Helper Functions
|
2000-01-13 23:39:26 +08:00
|
|
|
*/
|
|
|
|
|
2000-02-19 03:59:02 +08:00
|
|
|
/**
|
|
|
|
* gimp_table_attach_aligned:
|
2000-11-28 01:09:53 +08:00
|
|
|
* @table: The #GtkTable the widgets will be attached to.
|
|
|
|
* @column: The column to start with.
|
2002-03-09 02:30:40 +08:00
|
|
|
* @row: The row to attach the widgets.
|
2000-02-23 23:52:33 +08:00
|
|
|
* @label_text: The text for the #GtkLabel which will be attached left of the
|
|
|
|
* widget.
|
2000-11-28 01:09:53 +08:00
|
|
|
* @xalign: The horizontal alignment of the #GtkLabel.
|
|
|
|
* @yalign: The vertival alignment of the #GtkLabel.
|
|
|
|
* @widget: The #GtkWidget to attach right of the label.
|
|
|
|
* @colspan: The number of columns the widget will use.
|
2000-02-23 23:52:33 +08:00
|
|
|
* @left_align: #TRUE if the widget should be left-aligned.
|
|
|
|
*
|
|
|
|
* Note that the @label_text can be #NULL and that the widget will be attached
|
|
|
|
* starting at (@column + 1) in this case, too.
|
2002-03-09 02:30:40 +08:00
|
|
|
*
|
|
|
|
* Returns: The created #GtkLabel.
|
2000-11-18 08:25:42 +08:00
|
|
|
**/
|
2002-03-09 02:30:40 +08:00
|
|
|
GtkWidget *
|
2000-11-18 08:25:42 +08:00
|
|
|
gimp_table_attach_aligned (GtkTable *table,
|
|
|
|
gint column,
|
|
|
|
gint row,
|
|
|
|
const gchar *label_text,
|
|
|
|
gfloat xalign,
|
|
|
|
gfloat yalign,
|
|
|
|
GtkWidget *widget,
|
|
|
|
gint colspan,
|
|
|
|
gboolean left_align)
|
2000-01-28 03:26:00 +08:00
|
|
|
{
|
2002-03-09 02:30:40 +08:00
|
|
|
GtkWidget *label = NULL;
|
|
|
|
|
2000-01-28 03:26:00 +08:00
|
|
|
if (label_text)
|
|
|
|
{
|
2002-05-08 08:30:26 +08:00
|
|
|
label = gtk_label_new_with_mnemonic (label_text);
|
2000-01-28 03:26:00 +08:00
|
|
|
gtk_misc_set_alignment (GTK_MISC (label), xalign, yalign);
|
|
|
|
gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_RIGHT);
|
2000-01-31 11:13:02 +08:00
|
|
|
gtk_table_attach (table, label,
|
|
|
|
column, column + 1,
|
2000-01-28 03:26:00 +08:00
|
|
|
row, row + 1,
|
2000-02-04 23:12:17 +08:00
|
|
|
GTK_FILL, GTK_FILL, 0, 0);
|
2000-01-28 03:26:00 +08:00
|
|
|
gtk_widget_show (label);
|
2002-05-08 08:30:26 +08:00
|
|
|
gtk_label_set_mnemonic_widget (GTK_LABEL (label), widget);
|
2000-01-28 03:26:00 +08:00
|
|
|
}
|
|
|
|
|
2000-01-31 11:13:02 +08:00
|
|
|
if (left_align)
|
2000-01-28 03:26:00 +08:00
|
|
|
{
|
|
|
|
GtkWidget *alignment;
|
|
|
|
|
|
|
|
alignment = gtk_alignment_new (0.0, 0.5, 0.0, 0.0);
|
|
|
|
gtk_container_add (GTK_CONTAINER (alignment), widget);
|
2000-02-04 23:12:17 +08:00
|
|
|
gtk_widget_show (widget);
|
|
|
|
|
|
|
|
widget = alignment;
|
2000-01-28 03:26:00 +08:00
|
|
|
}
|
2000-02-04 23:12:17 +08:00
|
|
|
|
|
|
|
gtk_table_attach (table, widget,
|
|
|
|
column + 1, column + 1 + colspan,
|
|
|
|
row, row + 1,
|
|
|
|
GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0);
|
2000-01-28 03:26:00 +08:00
|
|
|
|
|
|
|
gtk_widget_show (widget);
|
2002-03-09 02:30:40 +08:00
|
|
|
|
|
|
|
return label;
|
2000-01-28 03:26:00 +08:00
|
|
|
}
|