diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-12-08 00:31:17 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-12-26 04:42:17 +0800 |
commit | abc0e4c694fb3d9624e890384880def730769fa0 (patch) | |
tree | 8d411f90f4edb0859ffe0b260c85e02e7d273088 /widgets/table | |
parent | 83dc7625983470bff4ce8b9070fbc23c3370c472 (diff) | |
download | gsoc2013-evolution-abc0e4c694fb3d9624e890384880def730769fa0.tar.gz gsoc2013-evolution-abc0e4c694fb3d9624e890384880def730769fa0.tar.zst gsoc2013-evolution-abc0e4c694fb3d9624e890384880def730769fa0.zip |
Introduce ESelectable and EFocusTracker.
EFocusTracker tracks the input focus within a window and helps keep
the sensitivity of "selectable" actions in the main menu up-to-date.
Selectable actions include Cut, Copy, Paste, Select All and Delete.
EFocusTracker has built-in support for widgets that implement the
GtkEditable interface such as GtkEntry and GtkTextView. It also
supports custom widgets that implement the ESelectable interface,
which is a subset of GtkEditable and can apply to anything that
displays selectable content (esp. tree views and ETables).
This commit integrates EFocusTracker with EShellWindow, CompEditor,
EMsgComposer, and ESignatureManager.
It also bumps the GtkHTML requirement to 2.29.5 to utilize the new
GtkhtmlEditor:html constructor property.
Diffstat (limited to 'widgets/table')
-rw-r--r-- | widgets/table/e-table.c | 10 | ||||
-rw-r--r-- | widgets/table/e-tree.c | 9 |
2 files changed, 14 insertions, 5 deletions
diff --git a/widgets/table/e-table.c b/widgets/table/e-table.c index f5cd6c0d16..2656f7f949 100644 --- a/widgets/table/e-table.c +++ b/widgets/table/e-table.c @@ -55,8 +55,6 @@ #define COLUMN_HEADER_HEIGHT 16 -G_DEFINE_TYPE (ETable, e_table, GTK_TYPE_TABLE) - #define d(x) #if d(!)0 @@ -77,6 +75,11 @@ enum { STATE_CHANGE, WHITE_SPACE_EVENT, + CUT_CLIPBOARD, + COPY_CLIPBOARD, + PASTE_CLIPBOARD, + SELECT_ALL, + TABLE_DRAG_BEGIN, TABLE_DRAG_END, TABLE_DRAG_DATA_GET, @@ -159,6 +162,8 @@ static gint et_focus (GtkWidget *container, GtkDirectionType direction); static void scroll_off (ETable *et); static void scroll_on (ETable *et, guint scroll_direction); +G_DEFINE_TYPE (ETable, e_table, GTK_TYPE_TABLE) + static void et_disconnect_model (ETable *et) { @@ -3357,4 +3362,3 @@ e_table_class_init (ETableClass *class) gal_a11y_e_table_init (); } - diff --git a/widgets/table/e-tree.c b/widgets/table/e-tree.c index 38c7a5111b..ba50be0625 100644 --- a/widgets/table/e-tree.c +++ b/widgets/table/e-tree.c @@ -54,8 +54,6 @@ #define COLUMN_HEADER_HEIGHT 16 -G_DEFINE_TYPE (ETree, e_tree, GTK_TYPE_TABLE) - #define d(x) #if d(!)0 @@ -76,6 +74,11 @@ enum { STATE_CHANGE, WHITE_SPACE_EVENT, + CUT_CLIPBOARD, + COPY_CLIPBOARD, + PASTE_CLIPBOARD, + SELECT_ALL, + TREE_DRAG_BEGIN, TREE_DRAG_END, TREE_DRAG_DATA_GET, @@ -245,6 +248,8 @@ static void hover_off (ETree *et); static void hover_on (ETree *et, gint x, gint y); static void context_destroyed (gpointer data, GObject *ctx); +G_DEFINE_TYPE (ETree, e_tree, GTK_TYPE_TABLE) + static void et_disconnect_from_etta (ETree *et) { |