diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2001-01-30 19:37:34 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-01-30 19:37:34 +0800 |
commit | da03d43325d3410577ace4073d5b26fd72944ce4 (patch) | |
tree | f8b56730e2d62409f0d951034eda25a69968a081 /widgets/table/e-table-click-to-add.c | |
parent | 8ee392b8a3cea8965d3cc250c9e679d48f5d4aed (diff) | |
download | gsoc2013-evolution-da03d43325d3410577ace4073d5b26fd72944ce4.tar gsoc2013-evolution-da03d43325d3410577ace4073d5b26fd72944ce4.tar.gz gsoc2013-evolution-da03d43325d3410577ace4073d5b26fd72944ce4.tar.bz2 gsoc2013-evolution-da03d43325d3410577ace4073d5b26fd72944ce4.tar.lz gsoc2013-evolution-da03d43325d3410577ace4073d5b26fd72944ce4.tar.xz gsoc2013-evolution-da03d43325d3410577ace4073d5b26fd72944ce4.tar.zst gsoc2013-evolution-da03d43325d3410577ace4073d5b26fd72944ce4.zip |
Made the contained %ETableItem have cursor_mode as
2001-01-30 Christopher James Lahey <clahey@helixcode.com>
* e-table-click-to-add.c (etcta_event): Made the contained
%ETableItem have cursor_mode as %E_TABLE_CURSOR_SPREADSHEET.
* e-table-defines.h, e-table-item.c, e-table-specification.c:
Added a new cursor mode E_TABLE_CURSOR_SPREADSHEET. This is
accessed using cursor_mode="spreadsheet" in your specification
xml, as well as by the click_to_add item. It is identical to
E_TABLE_CURSOR_SIMPLE, except that tab goes to the next item in
the table instead of to the next widget.
svn path=/trunk/; revision=7910
Diffstat (limited to 'widgets/table/e-table-click-to-add.c')
-rw-r--r-- | widgets/table/e-table-click-to-add.c | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/widgets/table/e-table-click-to-add.c b/widgets/table/e-table-click-to-add.c index 0948ad1eb0..4e2d71f9d6 100644 --- a/widgets/table/e-table-click-to-add.c +++ b/widgets/table/e-table-click-to-add.c @@ -303,6 +303,7 @@ finish_editing (ETableClickToAdd *etcta) "minimum_width", etcta->width, "drawgrid", TRUE, "table_selection_model", etcta->selection, + "cursor_mode", E_TABLE_CURSOR_SPREADSHEET, NULL); gtk_signal_connect(GTK_OBJECT(etcta->row), "key_press", @@ -347,6 +348,7 @@ etcta_event (GnomeCanvasItem *item, GdkEvent *e) "minimum_width", etcta->width, "drawgrid", TRUE, "table_selection_model", etcta->selection, + "cursor_mode", E_TABLE_CURSOR_SPREADSHEET, NULL); gtk_signal_connect(GTK_OBJECT(etcta->row), "key_press", @@ -367,17 +369,13 @@ etcta_event (GnomeCanvasItem *item, GdkEvent *e) case GDK_KEY_PRESS: switch (e->key.keyval) { - case GDK_Return: - case GDK_KP_Enter: - case GDK_ISO_Enter: - case GDK_3270_Enter: - case GDK_Tab: case GDK_KP_Tab: case GDK_ISO_Left_Tab: finish_editing (etcta); break; default: + return FALSE; break; } @@ -503,6 +501,13 @@ e_table_click_to_add_get_type (void) /* The colors in this need to be themefied. */ +/** + * e_table_click_to_add_commit: + * @etcta: The %ETableClickToAdd to commit. + * + * This routine commits the current thing being edited and returns to + * just displaying the click to add message. + **/ void e_table_click_to_add_commit (ETableClickToAdd *etcta) { |