diff options
author | JP Rosevear <jpr@ximian.com> | 2004-01-18 05:06:14 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-01-18 05:06:14 +0800 |
commit | d8c28801a75106daf09303a1cdcae6814fc91773 (patch) | |
tree | 685bf8a1c8321ed09e299e7e0f2397f84f9263ab /calendar/gui/print.h | |
parent | fe09d1e6a6f00ee603d678a10673e2c50986e14e (diff) | |
download | gsoc2013-evolution-d8c28801a75106daf09303a1cdcae6814fc91773.tar.gz gsoc2013-evolution-d8c28801a75106daf09303a1cdcae6814fc91773.tar.zst gsoc2013-evolution-d8c28801a75106daf09303a1cdcae6814fc91773.zip |
update protos
004-01-17 JP Rosevear <jpr@ximian.com>
* gui/print.h: update protos
* gui/print.c (print_title): util routine to print a title
(print_table): print out an etable
* gui/calendar-commands.c (print): handle printing the list view
* gui/e-cal-list-view.etspec: draw the grid to mimic tasks
* gui/tasks-control.c (tasks_control_print_cmd): use print_table
Fixes #51751, #52958
svn path=/trunk/; revision=24290
Diffstat (limited to 'calendar/gui/print.h')
-rw-r--r-- | calendar/gui/print.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/calendar/gui/print.h b/calendar/gui/print.h index 495007d81d..52db38c371 100644 --- a/calendar/gui/print.h +++ b/calendar/gui/print.h @@ -30,11 +30,14 @@ typedef enum { PRINT_VIEW_DAY, PRINT_VIEW_WEEK, PRINT_VIEW_MONTH, - PRINT_VIEW_YEAR + PRINT_VIEW_YEAR, + PRINT_VIEW_LIST } PrintView; void print_calendar (GnomeCalendar *gcal, gboolean preview, time_t at, PrintView default_view); void print_comp (ECalComponent *comp, ECal *client, gboolean preview); +void print_table (ETable *etable, const char *title, gboolean preview); + void print_setup (void); |