diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-03-06 14:08:56 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-03-06 14:08:56 +0800 |
commit | df08e926e4ac496e75974620162e59cf323f623a (patch) | |
tree | 2b134fb9dee077bbc940ae9be3bde37fefaed9f3 /widgets/e-table/e-table-group.c | |
parent | 053267fc5d7a087b315612a43fc493083309f465 (diff) | |
download | gsoc2013-evolution-df08e926e4ac496e75974620162e59cf323f623a.tar gsoc2013-evolution-df08e926e4ac496e75974620162e59cf323f623a.tar.gz gsoc2013-evolution-df08e926e4ac496e75974620162e59cf323f623a.tar.bz2 gsoc2013-evolution-df08e926e4ac496e75974620162e59cf323f623a.tar.lz gsoc2013-evolution-df08e926e4ac496e75974620162e59cf323f623a.tar.xz gsoc2013-evolution-df08e926e4ac496e75974620162e59cf323f623a.tar.zst gsoc2013-evolution-df08e926e4ac496e75974620162e59cf323f623a.zip |
Add a "row_selection" signal.
2000-03-06 Christopher James Lahey <clahey@helixcode.com>
* e-table.c, e-table.h: Add a "row_selection" signal.
* test-table.c: Test the new "row_selection" signal.
* e-table-group-container.c, e-table-group-leaf.c: Implement the
"row_selection" property properly.
* e-table-group.c, e-table-group.h: Add a "row_selection" signal.
svn path=/trunk/; revision=2069
Diffstat (limited to 'widgets/e-table/e-table-group.c')
-rw-r--r-- | widgets/e-table/e-table-group.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/widgets/e-table/e-table-group.c b/widgets/e-table/e-table-group.c index ef89efd9bd..ce7f1945f6 100644 --- a/widgets/e-table/e-table-group.c +++ b/widgets/e-table/e-table-group.c @@ -29,6 +29,7 @@ static GnomeCanvasGroupClass *etg_parent_class; enum { + ROW_SELECTION, RESIZE, LAST_SIGNAL }; @@ -228,6 +229,17 @@ e_table_group_resize (ETableGroup *e_table_group) etg_signals [RESIZE]); } +void +e_table_group_row_selection (ETableGroup *e_table_group, gint row, gboolean selected) +{ + g_return_if_fail (e_table_group != NULL); + g_return_if_fail (E_IS_TABLE_GROUP (e_table_group)); + + gtk_signal_emit (GTK_OBJECT (e_table_group), + etg_signals [ROW_SELECTION], + row, selected); +} + ETableHeader * e_table_group_get_header (ETableGroup *etg) { @@ -339,6 +351,7 @@ etg_class_init (GtkObjectClass *object_class) item_class->event = etg_event; klass->resize = NULL; + klass->row_selection = NULL; klass->add = NULL; klass->remove = NULL; @@ -355,6 +368,14 @@ etg_class_init (GtkObjectClass *object_class) etg_parent_class = gtk_type_class (PARENT_TYPE); + etg_signals [ROW_SELECTION] = + gtk_signal_new ("row_selection", + GTK_RUN_LAST, + object_class->type, + GTK_SIGNAL_OFFSET (ETableGroupClass, row_selection), + gtk_marshal_NONE__INT_INT, + GTK_TYPE_NONE, 2, GTK_TYPE_INT, GTK_TYPE_INT); + etg_signals [RESIZE] = gtk_signal_new ("resize", GTK_RUN_LAST, |