2003-09-24 01:01:38 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
1999-03-02 08:31:39 +08:00
|
|
|
*
|
2000-02-26 11:41:06 +08:00
|
|
|
* gimpchainbutton.c
|
2003-09-24 01:01:38 +08:00
|
|
|
* Copyright (C) 1999-2000 Sven Neumann <sven@gimp.org>
|
2000-02-26 11:41:06 +08:00
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
1999-11-18 05:13:50 +08:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1999-03-02 08:31:39 +08:00
|
|
|
* License as published by the Free Software Foundation; either
|
2009-01-18 06:28:01 +08:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
2003-09-24 01:01:38 +08:00
|
|
|
*
|
|
|
|
* 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
|
1999-03-02 08:31:39 +08:00
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
1999-11-18 05:13:50 +08:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-01-18 06:28:01 +08:00
|
|
|
* License along with this library. If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
1999-03-02 08:31:39 +08:00
|
|
|
*/
|
|
|
|
|
2006-05-30 10:01:39 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
2000-05-31 07:38:46 +08:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2001-05-07 04:31:46 +08:00
|
|
|
#include "gimpwidgetstypes.h"
|
|
|
|
|
1999-03-02 08:31:39 +08:00
|
|
|
#include "gimpchainbutton.h"
|
2001-12-29 21:26:29 +08:00
|
|
|
#include "gimpstock.h"
|
2000-05-31 07:38:46 +08:00
|
|
|
|
1999-03-02 08:31:39 +08:00
|
|
|
|
2010-07-06 00:01:28 +08:00
|
|
|
/**
|
|
|
|
* SECTION: gimpchainbutton
|
|
|
|
* @title: GimpChainButton
|
|
|
|
* @short_description: Widget to visually connect two entry widgets.
|
|
|
|
* @see_also: You may want to use the convenience function
|
|
|
|
* gimp_coordinates_new() to set up two GimpSizeEntries
|
|
|
|
* (see #GimpSizeEntry) linked with a #GimpChainButton.
|
|
|
|
*
|
|
|
|
* This widget provides a button showing either a linked or a broken
|
|
|
|
* chain that can be used to link two entries, spinbuttons, colors or
|
|
|
|
* other GUI elements and show that they may be locked. Use it for
|
|
|
|
* example to connect X and Y ratios to provide the possibility of a
|
|
|
|
* constrained aspect ratio.
|
|
|
|
*
|
|
|
|
* The #GimpChainButton only gives visual feedback, it does not really
|
|
|
|
* connect widgets. You have to take care of locking the values
|
|
|
|
* yourself by checking the state of the #GimpChainButton whenever a
|
|
|
|
* value changes in one of the connected widgets and adjusting the
|
|
|
|
* other value if necessary.
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
2006-09-07 20:23:42 +08:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_POSITION
|
|
|
|
};
|
|
|
|
|
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
|
|
|
enum
|
|
|
|
{
|
|
|
|
TOGGLED,
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2006-09-07 20:23:42 +08:00
|
|
|
static GObject * gimp_chain_button_constructor (GType type,
|
|
|
|
guint n_params,
|
|
|
|
GObjectConstructParam *params);
|
|
|
|
static void gimp_chain_button_set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void gimp_chain_button_get_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
2001-12-29 21:26:29 +08:00
|
|
|
|
2005-12-21 04:35:23 +08:00
|
|
|
static void gimp_chain_button_clicked_callback (GtkWidget *widget,
|
2006-04-12 18:53:28 +08:00
|
|
|
GimpChainButton *button);
|
2006-11-22 16:05:13 +08:00
|
|
|
static void gimp_chain_button_update_image (GimpChainButton *button);
|
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
|
|
|
|
2008-02-27 03:25:11 +08:00
|
|
|
static GtkWidget * gimp_chain_line_new (GimpChainPosition position,
|
|
|
|
gint which);
|
|
|
|
|
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
|
|
|
|
2006-05-15 17:46:31 +08:00
|
|
|
G_DEFINE_TYPE (GimpChainButton, gimp_chain_button, GTK_TYPE_TABLE)
|
2005-12-21 04:35:23 +08:00
|
|
|
|
|
|
|
#define parent_class gimp_chain_button_parent_class
|
|
|
|
|
|
|
|
static guint gimp_chain_button_signals[LAST_SIGNAL] = { 0 };
|
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
|
|
|
|
2006-04-06 20:43:58 +08:00
|
|
|
static const gchar * const gimp_chain_stock_items[] =
|
1999-11-17 02:53:49 +08:00
|
|
|
{
|
2001-12-29 21:26:29 +08:00
|
|
|
GIMP_STOCK_HCHAIN,
|
|
|
|
GIMP_STOCK_HCHAIN_BROKEN,
|
|
|
|
GIMP_STOCK_VCHAIN,
|
|
|
|
GIMP_STOCK_VCHAIN_BROKEN
|
2000-02-22 08:23:26 +08:00
|
|
|
};
|
|
|
|
|
2000-08-28 06:41:52 +08:00
|
|
|
|
1999-03-02 08:31:39 +08:00
|
|
|
static void
|
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_chain_button_class_init (GimpChainButtonClass *klass)
|
1999-03-02 08:31:39 +08:00
|
|
|
{
|
2006-09-07 20:23:42 +08:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
object_class->constructor = gimp_chain_button_constructor;
|
|
|
|
object_class->set_property = gimp_chain_button_set_property;
|
|
|
|
object_class->get_property = gimp_chain_button_get_property;
|
|
|
|
|
2003-09-24 01:01:38 +08:00
|
|
|
gimp_chain_button_signals[TOGGLED] =
|
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_new ("toggled",
|
2006-04-12 18:53:28 +08:00
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_FIRST,
|
|
|
|
G_STRUCT_OFFSET (GimpChainButtonClass, toggled),
|
|
|
|
NULL, NULL,
|
|
|
|
g_cclosure_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE, 0);
|
2000-08-28 06:41:52 +08:00
|
|
|
|
2001-12-29 21:26:29 +08:00
|
|
|
klass->toggled = NULL;
|
2006-09-07 20:23:42 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GimpChainButton:position:
|
|
|
|
*
|
|
|
|
* The position in which the chain button will be used.
|
|
|
|
*
|
|
|
|
* Since: GIMP 2.4
|
|
|
|
*/
|
|
|
|
g_object_class_install_property (object_class, PROP_POSITION,
|
|
|
|
g_param_spec_enum ("position", NULL, NULL,
|
|
|
|
GIMP_TYPE_CHAIN_POSITION,
|
|
|
|
GIMP_CHAIN_TOP,
|
|
|
|
G_PARAM_CONSTRUCT_ONLY |
|
|
|
|
GIMP_PARAM_READWRITE));
|
1999-03-02 08:31:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2003-01-05 23:41:23 +08:00
|
|
|
gimp_chain_button_init (GimpChainButton *button)
|
1999-03-02 08:31:39 +08:00
|
|
|
{
|
2003-01-05 23:41:23 +08:00
|
|
|
button->position = GIMP_CHAIN_TOP;
|
|
|
|
button->active = FALSE;
|
|
|
|
button->image = gtk_image_new ();
|
|
|
|
button->button = gtk_button_new ();
|
2000-02-22 08:23:26 +08:00
|
|
|
|
2003-01-05 23:41:23 +08:00
|
|
|
gtk_button_set_relief (GTK_BUTTON (button->button), GTK_RELIEF_NONE);
|
|
|
|
gtk_container_add (GTK_CONTAINER (button->button), button->image);
|
2008-02-27 03:25:11 +08:00
|
|
|
gtk_widget_show (button->image);
|
2003-01-05 23:41:23 +08:00
|
|
|
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_connect (button->button, "clicked",
|
2003-09-24 01:01:38 +08:00
|
|
|
G_CALLBACK (gimp_chain_button_clicked_callback),
|
2003-01-05 23:41:23 +08:00
|
|
|
button);
|
1999-03-02 08:31:39 +08:00
|
|
|
}
|
|
|
|
|
2006-09-07 20:23:42 +08:00
|
|
|
static GObject *
|
|
|
|
gimp_chain_button_constructor (GType type,
|
|
|
|
guint n_params,
|
|
|
|
GObjectConstructParam *params)
|
1999-03-02 08:31:39 +08:00
|
|
|
{
|
2006-09-07 20:23:42 +08:00
|
|
|
GObject *object;
|
2003-01-05 23:41:23 +08:00
|
|
|
GimpChainButton *button;
|
1999-11-17 02:53:49 +08:00
|
|
|
|
2006-09-07 20:23:42 +08:00
|
|
|
object = G_OBJECT_CLASS (parent_class)->constructor (type, n_params, params);
|
1999-11-17 02:53:49 +08:00
|
|
|
|
2006-09-07 20:23:42 +08:00
|
|
|
button = GIMP_CHAIN_BUTTON (object);
|
1999-11-17 02:53:49 +08:00
|
|
|
|
2008-02-27 03:25:11 +08:00
|
|
|
button->line1 = gimp_chain_line_new (button->position, 1);
|
|
|
|
button->line2 = gimp_chain_line_new (button->position, -1);
|
|
|
|
|
2006-11-22 16:05:13 +08:00
|
|
|
gimp_chain_button_update_image (button);
|
2000-02-22 08:23:26 +08:00
|
|
|
|
2006-09-07 20:23:42 +08:00
|
|
|
if (button->position & GIMP_CHAIN_LEFT) /* are we a vertical chainbutton? */
|
1999-03-03 23:00:56 +08:00
|
|
|
{
|
2003-01-05 23:41:23 +08:00
|
|
|
gtk_table_resize (GTK_TABLE (button), 3, 1);
|
|
|
|
gtk_table_attach (GTK_TABLE (button), button->button, 0, 1, 1, 2,
|
2006-04-12 18:53:28 +08:00
|
|
|
GTK_SHRINK, GTK_SHRINK, 0, 0);
|
2003-01-05 23:41:23 +08:00
|
|
|
gtk_table_attach_defaults (GTK_TABLE (button),
|
2006-04-12 18:53:28 +08:00
|
|
|
button->line1, 0, 1, 0, 1);
|
2003-01-05 23:41:23 +08:00
|
|
|
gtk_table_attach_defaults (GTK_TABLE (button),
|
2006-04-12 18:53:28 +08:00
|
|
|
button->line2, 0, 1, 2, 3);
|
1999-03-03 23:00:56 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-01-05 23:41:23 +08:00
|
|
|
gtk_table_resize (GTK_TABLE (button), 1, 3);
|
|
|
|
gtk_table_attach (GTK_TABLE (button), button->button, 1, 2, 0, 1,
|
2006-04-12 18:53:28 +08:00
|
|
|
GTK_SHRINK, GTK_SHRINK, 0, 0);
|
2003-01-05 23:41:23 +08:00
|
|
|
gtk_table_attach_defaults (GTK_TABLE (button),
|
2006-04-12 18:53:28 +08:00
|
|
|
button->line1, 0, 1, 0, 1);
|
2003-01-05 23:41:23 +08:00
|
|
|
gtk_table_attach_defaults (GTK_TABLE (button),
|
2006-04-12 18:53:28 +08:00
|
|
|
button->line2, 2, 3, 0, 1);
|
1999-03-03 23:00:56 +08:00
|
|
|
}
|
1999-03-02 08:31:39 +08:00
|
|
|
|
2003-01-05 23:41:23 +08:00
|
|
|
gtk_widget_show (button->button);
|
|
|
|
gtk_widget_show (button->line1);
|
|
|
|
gtk_widget_show (button->line2);
|
1999-11-17 02:53:49 +08:00
|
|
|
|
2006-09-07 20:23:42 +08:00
|
|
|
return object;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_chain_button_set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GimpChainButton *button = GIMP_CHAIN_BUTTON (object);
|
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
{
|
|
|
|
case PROP_POSITION:
|
|
|
|
button->position = g_value_get_enum (value);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_chain_button_get_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GimpChainButton *button = GIMP_CHAIN_BUTTON (object);
|
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
{
|
|
|
|
case PROP_POSITION:
|
|
|
|
g_value_set_enum (value, button->position);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_chain_button_new:
|
|
|
|
* @position: The position you are going to use for the button
|
|
|
|
* with respect to the widgets you want to chain.
|
|
|
|
*
|
|
|
|
* Creates a new #GimpChainButton widget.
|
|
|
|
*
|
|
|
|
* This returns a button showing either a broken or a linked chain and
|
|
|
|
* small clamps attached to both sides that visually group the two widgets
|
|
|
|
* you want to connect. This widget looks best when attached
|
|
|
|
* to a table taking up two columns (or rows respectively) next
|
|
|
|
* to the widgets that it is supposed to connect. It may work
|
|
|
|
* for more than two widgets, but the look is optimized for two.
|
|
|
|
*
|
|
|
|
* Returns: Pointer to the new #GimpChainButton, which is inactive
|
|
|
|
* by default. Use gimp_chain_button_set_active() to
|
|
|
|
* change its state.
|
|
|
|
*/
|
|
|
|
GtkWidget *
|
|
|
|
gimp_chain_button_new (GimpChainPosition position)
|
|
|
|
{
|
|
|
|
return g_object_new (GIMP_TYPE_CHAIN_BUTTON,
|
|
|
|
"position", position,
|
|
|
|
NULL);
|
1999-03-02 08:31:39 +08:00
|
|
|
}
|
|
|
|
|
2003-09-24 01:01:38 +08:00
|
|
|
/**
|
2000-02-12 10:16:59 +08:00
|
|
|
* gimp_chain_button_set_active:
|
2003-02-07 05:17:12 +08:00
|
|
|
* @button: Pointer to a #GimpChainButton.
|
2001-12-29 21:26:29 +08:00
|
|
|
* @active: The new state.
|
2003-09-24 01:01:38 +08:00
|
|
|
*
|
|
|
|
* Sets the state of the #GimpChainButton to be either locked (%TRUE) or
|
2003-02-07 05:17:12 +08:00
|
|
|
* unlocked (%FALSE) and changes the showed pixmap to reflect the new state.
|
2000-02-12 10:16:59 +08:00
|
|
|
*/
|
2003-09-24 01:01:38 +08:00
|
|
|
void
|
2003-01-05 23:41:23 +08:00
|
|
|
gimp_chain_button_set_active (GimpChainButton *button,
|
2006-04-12 18:53:28 +08:00
|
|
|
gboolean active)
|
2000-02-12 10:16:59 +08:00
|
|
|
{
|
2003-01-05 23:41:23 +08:00
|
|
|
g_return_if_fail (GIMP_IS_CHAIN_BUTTON (button));
|
2000-02-12 10:16:59 +08:00
|
|
|
|
2003-01-05 23:41:23 +08:00
|
|
|
if (button->active != active)
|
2000-02-12 10:16:59 +08:00
|
|
|
{
|
2003-01-05 23:41:23 +08:00
|
|
|
button->active = active ? TRUE : FALSE;
|
2003-02-07 05:17:12 +08:00
|
|
|
|
2006-11-22 16:05:13 +08:00
|
|
|
gimp_chain_button_update_image (button);
|
2000-02-12 10:16:59 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_chain_button_get_active
|
2003-01-05 23:41:23 +08:00
|
|
|
* @button: Pointer to a #GimpChainButton.
|
2003-09-24 01:01:38 +08:00
|
|
|
*
|
|
|
|
* Checks the state of the #GimpChainButton.
|
2000-02-12 10:16:59 +08:00
|
|
|
*
|
2003-02-07 05:17:12 +08:00
|
|
|
* Returns: %TRUE if the #GimpChainButton is active (locked).
|
2000-02-12 10:16:59 +08:00
|
|
|
*/
|
2003-09-24 01:01:38 +08:00
|
|
|
gboolean
|
2003-01-05 23:41:23 +08:00
|
|
|
gimp_chain_button_get_active (GimpChainButton *button)
|
2000-02-12 10:16:59 +08:00
|
|
|
{
|
2003-01-05 23:41:23 +08:00
|
|
|
g_return_val_if_fail (GIMP_IS_CHAIN_BUTTON (button), FALSE);
|
2000-02-12 10:16:59 +08:00
|
|
|
|
2003-01-05 23:41:23 +08:00
|
|
|
return button->active;
|
2000-02-12 10:16:59 +08:00
|
|
|
}
|
|
|
|
|
1999-03-03 23:00:56 +08:00
|
|
|
static void
|
1999-11-17 02:53:49 +08:00
|
|
|
gimp_chain_button_clicked_callback (GtkWidget *widget,
|
2006-04-12 18:53:28 +08:00
|
|
|
GimpChainButton *button)
|
1999-03-02 08:31:39 +08:00
|
|
|
{
|
2003-01-05 23:41:23 +08:00
|
|
|
g_return_if_fail (GIMP_IS_CHAIN_BUTTON (button));
|
1999-03-02 08:31:39 +08:00
|
|
|
|
2003-01-05 23:41:23 +08:00
|
|
|
gimp_chain_button_set_active (button, ! button->active);
|
2000-08-28 06:41:52 +08:00
|
|
|
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_emit (button, gimp_chain_button_signals[TOGGLED], 0);
|
1999-03-02 08:31:39 +08:00
|
|
|
}
|
|
|
|
|
2008-02-27 03:25:11 +08:00
|
|
|
static void
|
|
|
|
gimp_chain_button_update_image (GimpChainButton *button)
|
|
|
|
{
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
i = ((button->position & GIMP_CHAIN_LEFT) << 1) + (button->active ? 0 : 1);
|
|
|
|
|
|
|
|
gtk_image_set_from_stock (GTK_IMAGE (button->image),
|
|
|
|
gimp_chain_stock_items[i],
|
|
|
|
GTK_ICON_SIZE_BUTTON);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* GimpChainLine is a simple no-window widget for drawing the lines.
|
|
|
|
*
|
|
|
|
* Originally this used to be a GtkDrawingArea but this turned out to
|
|
|
|
* be a bad idea. We don't need an extra window to draw on and we also
|
|
|
|
* don't need any input events.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static GType gimp_chain_line_get_type (void) G_GNUC_CONST;
|
|
|
|
static gboolean gimp_chain_line_expose_event (GtkWidget *widget,
|
|
|
|
GdkEventExpose *event);
|
|
|
|
|
|
|
|
struct _GimpChainLine
|
|
|
|
{
|
|
|
|
GtkWidget parent_instance;
|
|
|
|
GimpChainPosition position;
|
|
|
|
gint which;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct _GimpChainLine GimpChainLine;
|
|
|
|
typedef GtkWidgetClass GimpChainLineClass;
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (GimpChainLine, gimp_chain_line, GTK_TYPE_WIDGET)
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_chain_line_class_init (GimpChainLineClass *klass)
|
|
|
|
{
|
|
|
|
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
|
|
|
|
|
|
|
|
widget_class->expose_event = gimp_chain_line_expose_event;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_chain_line_init (GimpChainLine *line)
|
|
|
|
{
|
2009-10-18 00:51:48 +08:00
|
|
|
gtk_widget_set_has_window (GTK_WIDGET (line), FALSE);
|
2008-02-27 03:25:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static GtkWidget *
|
|
|
|
gimp_chain_line_new (GimpChainPosition position,
|
|
|
|
gint which)
|
|
|
|
{
|
|
|
|
GimpChainLine *line = g_object_new (gimp_chain_line_get_type (), NULL);
|
|
|
|
|
|
|
|
line->position = position;
|
|
|
|
line->which = which;
|
|
|
|
|
|
|
|
return GTK_WIDGET (line);
|
|
|
|
}
|
|
|
|
|
2003-01-05 23:41:23 +08:00
|
|
|
static gboolean
|
2008-02-27 03:25:11 +08:00
|
|
|
gimp_chain_line_expose_event (GtkWidget *widget,
|
|
|
|
GdkEventExpose *event)
|
1999-03-03 23:00:56 +08:00
|
|
|
{
|
2008-02-27 03:25:11 +08:00
|
|
|
GimpChainLine *line = ((GimpChainLine *) widget);
|
2009-10-18 00:51:48 +08:00
|
|
|
GtkAllocation allocation;
|
2003-09-24 01:01:38 +08:00
|
|
|
GdkPoint points[3];
|
|
|
|
GdkPoint buf;
|
2008-02-26 17:47:29 +08:00
|
|
|
GtkShadowType shadow;
|
2003-09-24 01:01:38 +08:00
|
|
|
GimpChainPosition position;
|
1999-03-03 23:00:56 +08:00
|
|
|
|
2009-10-18 00:51:48 +08:00
|
|
|
gtk_widget_get_allocation (widget, &allocation);
|
|
|
|
|
1999-03-03 23:00:56 +08:00
|
|
|
#define SHORT_LINE 4
|
2009-10-18 00:51:48 +08:00
|
|
|
points[0].x = allocation.x + allocation.width / 2;
|
|
|
|
points[0].y = allocation.y + allocation.height / 2;
|
1999-03-03 23:00:56 +08:00
|
|
|
|
2008-02-27 03:25:11 +08:00
|
|
|
position = line->position;
|
2003-09-24 01:01:38 +08:00
|
|
|
|
|
|
|
if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL)
|
2008-02-26 17:47:29 +08:00
|
|
|
{
|
|
|
|
switch (position)
|
|
|
|
{
|
|
|
|
case GIMP_CHAIN_TOP:
|
|
|
|
case GIMP_CHAIN_BOTTOM:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_CHAIN_LEFT:
|
|
|
|
position = GIMP_CHAIN_RIGHT;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_CHAIN_RIGHT:
|
|
|
|
position = GIMP_CHAIN_LEFT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2003-09-24 01:01:38 +08:00
|
|
|
|
|
|
|
switch (position)
|
1999-03-03 23:00:56 +08:00
|
|
|
{
|
|
|
|
case GIMP_CHAIN_LEFT:
|
|
|
|
points[0].x += SHORT_LINE;
|
|
|
|
points[1].x = points[0].x - SHORT_LINE;
|
|
|
|
points[1].y = points[0].y;
|
|
|
|
points[2].x = points[1].x;
|
2008-02-27 03:25:11 +08:00
|
|
|
points[2].y = (line->which == 1 ?
|
2009-10-18 00:51:48 +08:00
|
|
|
allocation.y + allocation.height - 1 :
|
|
|
|
allocation.y);
|
1999-03-03 23:00:56 +08:00
|
|
|
shadow = GTK_SHADOW_ETCHED_IN;
|
|
|
|
break;
|
2008-02-26 17:47:29 +08:00
|
|
|
|
1999-03-03 23:00:56 +08:00
|
|
|
case GIMP_CHAIN_RIGHT:
|
|
|
|
points[0].x -= SHORT_LINE;
|
|
|
|
points[1].x = points[0].x + SHORT_LINE;
|
|
|
|
points[1].y = points[0].y;
|
|
|
|
points[2].x = points[1].x;
|
2008-02-27 03:25:11 +08:00
|
|
|
points[2].y = (line->which == 1 ?
|
2009-10-18 00:51:48 +08:00
|
|
|
allocation.y + allocation.height - 1 :
|
|
|
|
allocation.y);
|
1999-03-03 23:00:56 +08:00
|
|
|
shadow = GTK_SHADOW_ETCHED_OUT;
|
|
|
|
break;
|
2008-02-26 17:47:29 +08:00
|
|
|
|
1999-03-03 23:00:56 +08:00
|
|
|
case GIMP_CHAIN_TOP:
|
|
|
|
points[0].y += SHORT_LINE;
|
|
|
|
points[1].x = points[0].x;
|
|
|
|
points[1].y = points[0].y - SHORT_LINE;
|
2008-02-27 03:25:11 +08:00
|
|
|
points[2].x = (line->which == 1 ?
|
2009-10-18 00:51:48 +08:00
|
|
|
allocation.x + allocation.width - 1 :
|
|
|
|
allocation.x);
|
1999-03-03 23:00:56 +08:00
|
|
|
points[2].y = points[1].y;
|
|
|
|
shadow = GTK_SHADOW_ETCHED_OUT;
|
|
|
|
break;
|
2008-02-26 17:47:29 +08:00
|
|
|
|
1999-03-03 23:00:56 +08:00
|
|
|
case GIMP_CHAIN_BOTTOM:
|
|
|
|
points[0].y -= SHORT_LINE;
|
|
|
|
points[1].x = points[0].x;
|
|
|
|
points[1].y = points[0].y + SHORT_LINE;
|
2008-02-27 03:25:11 +08:00
|
|
|
points[2].x = (line->which == 1 ?
|
2009-10-18 00:51:48 +08:00
|
|
|
allocation.x + allocation.width - 1 :
|
|
|
|
allocation.x);
|
1999-03-03 23:00:56 +08:00
|
|
|
points[2].y = points[1].y;
|
|
|
|
shadow = GTK_SHADOW_ETCHED_IN;
|
|
|
|
break;
|
2008-02-26 17:47:29 +08:00
|
|
|
|
1999-03-03 23:00:56 +08:00
|
|
|
default:
|
2000-03-16 00:00:24 +08:00
|
|
|
return FALSE;
|
1999-03-03 23:00:56 +08:00
|
|
|
}
|
|
|
|
|
2008-02-27 03:25:11 +08:00
|
|
|
if ( ((shadow == GTK_SHADOW_ETCHED_OUT) && (line->which == -1)) ||
|
|
|
|
((shadow == GTK_SHADOW_ETCHED_IN) && (line->which == 1)) )
|
1999-03-03 23:00:56 +08:00
|
|
|
{
|
|
|
|
buf = points[0];
|
|
|
|
points[0] = points[2];
|
|
|
|
points[2] = buf;
|
|
|
|
}
|
|
|
|
|
2008-06-28 23:09:46 +08:00
|
|
|
gtk_paint_polygon (gtk_widget_get_style (widget),
|
2009-03-22 23:42:42 +08:00
|
|
|
gtk_widget_get_window (widget), GTK_STATE_NORMAL,
|
2006-04-12 18:53:28 +08:00
|
|
|
shadow,
|
2008-02-27 03:25:11 +08:00
|
|
|
&event->area,
|
2006-04-12 18:53:28 +08:00
|
|
|
widget,
|
|
|
|
"chainbutton",
|
2008-02-27 03:25:11 +08:00
|
|
|
points, 3,
|
2006-04-12 18:53:28 +08:00
|
|
|
FALSE);
|
2000-03-16 00:00:24 +08:00
|
|
|
|
|
|
|
return TRUE;
|
1999-03-03 23:00:56 +08:00
|
|
|
}
|