diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2001-06-28 23:10:40 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2001-06-28 23:10:40 +0800 |
commit | 60e8e89604ace4df3124e53e05e1318edba431f4 (patch) | |
tree | fbcd5a0959f66deb2c3750978d920d25f07f3115 /calendar/gui/e-calendar-table.h | |
parent | b8430242b75b1aa7a06ec98dfadd4e934879a432 (diff) | |
download | gsoc2013-evolution-60e8e89604ace4df3124e53e05e1318edba431f4.tar gsoc2013-evolution-60e8e89604ace4df3124e53e05e1318edba431f4.tar.gz gsoc2013-evolution-60e8e89604ace4df3124e53e05e1318edba431f4.tar.bz2 gsoc2013-evolution-60e8e89604ace4df3124e53e05e1318edba431f4.tar.lz gsoc2013-evolution-60e8e89604ace4df3124e53e05e1318edba431f4.tar.xz gsoc2013-evolution-60e8e89604ace4df3124e53e05e1318edba431f4.tar.zst gsoc2013-evolution-60e8e89604ace4df3124e53e05e1318edba431f4.zip |
new functions for allowing the execution of clipboard-related commands
2001-06-28 Rodrigo Moya <rodrigo@ximian.com>
* gui/e-calendar-table.[ch] (e_calendar_table_cut_clipboard),
(e_calendar_table_copy_clipboard),
(e_calendar_table_paste_clipboard): new functions for allowing the
execution of clipboard-related commands
* gui/tasks-control.c (tasks_control_cut_cmd),
(tasks_control_copy_cmd), (tasks_control_paste_cmd): added
callbacks for the new clipboard-related menu entries
svn path=/trunk/; revision=10560
Diffstat (limited to 'calendar/gui/e-calendar-table.h')
-rw-r--r-- | calendar/gui/e-calendar-table.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/calendar/gui/e-calendar-table.h b/calendar/gui/e-calendar-table.h index bcb6830f75..3ad45e541b 100644 --- a/calendar/gui/e-calendar-table.h +++ b/calendar/gui/e-calendar-table.h @@ -107,6 +107,11 @@ ETable *e_calendar_table_get_table (ECalendarTable *cal_table); void e_calendar_table_delete_selected (ECalendarTable *cal_table); +/* Clipboard related functions */ +void e_calendar_table_cut_clipboard (ECalendarTable *cal_table); +void e_calendar_table_copy_clipboard (ECalendarTable *cal_table); +void e_calendar_table_paste_clipboard (ECalendarTable *cal_table); + /* These load and save the state of the table (headers shown etc.) to/from the given file. */ void e_calendar_table_load_state (ECalendarTable *cal_table, |