diff options
author | Christopher James Lahey <clahey@ximian.com> | 2002-02-13 21:03:48 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2002-02-13 21:03:48 +0800 |
commit | 9c5cceeeb803194ebc6ae450b038e4041c582afd (patch) | |
tree | 5fcfef60528973efc0ad67e56166a917069dd2fd /e-util | |
parent | 926cc83a341feadd27be90c183b0346691f82363 (diff) | |
download | gsoc2013-evolution-9c5cceeeb803194ebc6ae450b038e4041c582afd.tar gsoc2013-evolution-9c5cceeeb803194ebc6ae450b038e4041c582afd.tar.gz gsoc2013-evolution-9c5cceeeb803194ebc6ae450b038e4041c582afd.tar.bz2 gsoc2013-evolution-9c5cceeeb803194ebc6ae450b038e4041c582afd.tar.lz gsoc2013-evolution-9c5cceeeb803194ebc6ae450b038e4041c582afd.tar.xz gsoc2013-evolution-9c5cceeeb803194ebc6ae450b038e4041c582afd.tar.zst gsoc2013-evolution-9c5cceeeb803194ebc6ae450b038e4041c582afd.zip |
New signal for when the width of the column changes.
2002-02-13 Christopher James Lahey <clahey@ximian.com>
* gal/widgets/e-reflow.c, gal/widgets/e-reflow.h
(column_width_changed): New signal for when the width of the
column changes.
* gal/util/e-util.c, gal/util/e-util.h (e_marshal_NONE__DOUBLE):
New marshaller.
From gal/menus/ChangeLog:
2002-02-13 Christopher James Lahey <clahey@ximian.com>
* gal-view-etable.c (detach_table): Set
view->table_state_changed_id to 0.
(detach_tree): Set view->tree_state_changed_id to 0.
svn path=/trunk/; revision=15705
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/e-util.c | 18 | ||||
-rw-r--r-- | e-util/e-util.h | 4 |
2 files changed, 22 insertions, 0 deletions
diff --git a/e-util/e-util.c b/e-util/e-util.c index 6d4b5e915a..2916a2d18b 100644 --- a/e-util/e-util.c +++ b/e-util/e-util.c @@ -816,6 +816,24 @@ e_marshal_INT__OBJECT_POINTER (GtkObject *object, func_data); } +typedef void (*GtkSignal_NONE__DOUBLE) (GtkObject *, + gdouble, + gpointer user_data); +void +e_marshal_NONE__DOUBLE (GtkObject *object, + GtkSignalFunc func, + gpointer func_data, + GtkArg *args) +{ + GtkSignal_NONE__DOUBLE rfunc; + + rfunc = (GtkSignal_NONE__DOUBLE) func; + + (*rfunc) (object, + GTK_VALUE_DOUBLE (args[0]), + func_data); +} + gchar** e_strsplit (const gchar *string, const gchar *delimiter, diff --git a/e-util/e-util.h b/e-util/e-util.h index 623300f8a1..37b9a75b9f 100644 --- a/e-util/e-util.h +++ b/e-util/e-util.h @@ -273,6 +273,10 @@ void e_marshal_INT__OBJECT_POINTER (GtkO GtkSignalFunc func, gpointer func_data, GtkArg *args); +void e_marshal_NONE__DOUBLE (GtkObject *object, + GtkSignalFunc func, + gpointer func_data, + GtkArg *args); #ifdef __cplusplus |