diff options
author | Milan Crha <mcrha@redhat.com> | 2014-01-11 00:18:49 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2014-01-11 00:18:49 +0800 |
commit | 63a1f0eab3e15e0d64e24bd5a2659a61347cfe9c (patch) | |
tree | 4af77bd941992bb173dac1e4480f51fb30fb5b1a /e-util/e-selectable.h | |
parent | 04ed82b0530ca7fa34008876b056378dff6b76fb (diff) | |
download | gsoc2013-evolution-63a1f0eab3e15e0d64e24bd5a2659a61347cfe9c.tar gsoc2013-evolution-63a1f0eab3e15e0d64e24bd5a2659a61347cfe9c.tar.gz gsoc2013-evolution-63a1f0eab3e15e0d64e24bd5a2659a61347cfe9c.tar.bz2 gsoc2013-evolution-63a1f0eab3e15e0d64e24bd5a2659a61347cfe9c.tar.lz gsoc2013-evolution-63a1f0eab3e15e0d64e24bd5a2659a61347cfe9c.tar.xz gsoc2013-evolution-63a1f0eab3e15e0d64e24bd5a2659a61347cfe9c.tar.zst gsoc2013-evolution-63a1f0eab3e15e0d64e24bd5a2659a61347cfe9c.zip |
Bug #333184 - Add Undo support to component editors
Diffstat (limited to 'e-util/e-selectable.h')
-rw-r--r-- | e-util/e-selectable.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/e-util/e-selectable.h b/e-util/e-selectable.h index c03cb3da2c..2d92941986 100644 --- a/e-util/e-selectable.h +++ b/e-util/e-selectable.h @@ -62,6 +62,8 @@ struct _ESelectableInterface { void (*paste_clipboard) (ESelectable *selectable); void (*delete_selection) (ESelectable *selectable); void (*select_all) (ESelectable *selectable); + void (*undo) (ESelectable *selectable); + void (*redo) (ESelectable *selectable); }; GType e_selectable_get_type (void) G_GNUC_CONST; @@ -74,6 +76,8 @@ void e_selectable_copy_clipboard (ESelectable *selectable); void e_selectable_paste_clipboard (ESelectable *selectable); void e_selectable_delete_selection (ESelectable *selectable); void e_selectable_select_all (ESelectable *selectable); +void e_selectable_undo (ESelectable *selectable); +void e_selectable_redo (ESelectable *selectable); GtkTargetList * e_selectable_get_copy_target_list (ESelectable *selectable); GtkTargetList * e_selectable_get_paste_target_list |