diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-06-11 05:16:45 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-06-11 05:16:45 +0800 |
commit | c57de49bb5d65df1fa0d63285b296397be3af6f8 (patch) | |
tree | b3812be586e590ebe6de41ac2739bde89c1d29b2 /widgets/table/e-table-group.h | |
parent | 5dc1015e9666ef59682c46e306ed3a4add0a9356 (diff) | |
download | gsoc2013-evolution-c57de49bb5d65df1fa0d63285b296397be3af6f8.tar gsoc2013-evolution-c57de49bb5d65df1fa0d63285b296397be3af6f8.tar.gz gsoc2013-evolution-c57de49bb5d65df1fa0d63285b296397be3af6f8.tar.bz2 gsoc2013-evolution-c57de49bb5d65df1fa0d63285b296397be3af6f8.tar.lz gsoc2013-evolution-c57de49bb5d65df1fa0d63285b296397be3af6f8.tar.xz gsoc2013-evolution-c57de49bb5d65df1fa0d63285b296397be3af6f8.tar.zst gsoc2013-evolution-c57de49bb5d65df1fa0d63285b296397be3af6f8.zip |
Added $(GNOME_PRINT_LIBS) to all of the LDADDs.
2000-06-10 Christopher James Lahey <clahey@helixcode.com>
* Makefile.am: Added $(GNOME_PRINT_LIBS) to all of the LDADDs.
* e-cell-text.c: Added printing of text cells.
* e-cell.c, e-cell.h: Added print and print_height methods.
* e-table-field-chooser.glade: Added a minimum size.
* e-table-group-container.c: Fixed a rectangle sizing bug.
* e-table-group-leaf.c: Implemented get_printable.
* e-table-group.c, e-table-group.h: Added a get_printable method
to return an EPrintable.
* e-table-item.c, e-table-item.h: Added a get_printable function
to return an EPrintable.
* e-table.c, e-table.h: Added a get_printable function to return
an EPrintable.
svn path=/trunk/; revision=3511
Diffstat (limited to 'widgets/table/e-table-group.h')
-rw-r--r-- | widgets/table/e-table-group.h | 44 |
1 files changed, 24 insertions, 20 deletions
diff --git a/widgets/table/e-table-group.h b/widgets/table/e-table-group.h index 8f9e047959..6505759ce7 100644 --- a/widgets/table/e-table-group.h +++ b/widgets/table/e-table-group.h @@ -7,6 +7,7 @@ #include "e-table-header.h" #include "e-table-sort-info.h" #include "e-util/e-util.h" +#include "e-util/e-printable.h" #define E_TABLE_GROUP_TYPE (e_table_group_get_type ()) #define E_TABLE_GROUP(o) (GTK_CHECK_CAST ((o), E_TABLE_GROUP_TYPE, ETableGroup)) @@ -63,30 +64,33 @@ typedef struct { gboolean (*get_focus) (ETableGroup *etg); gint (*get_focus_column) (ETableGroup *etg); ETableCol *(*get_ecol) (ETableGroup *etg); + EPrintable *(*get_printable) (ETableGroup *etg); } ETableGroupClass; -void e_table_group_add (ETableGroup *etg, - gint row); -void e_table_group_add_all (ETableGroup *etg); -gboolean e_table_group_remove (ETableGroup *etg, - gint row); -gint e_table_group_get_count (ETableGroup *etg); -void e_table_group_increment (ETableGroup *etg, - gint position, - gint amount); -gint e_table_group_row_count (ETableGroup *etg); -void e_table_group_set_focus (ETableGroup *etg, - EFocus direction, - gint view_col); -void e_table_group_select_row (ETableGroup *etg, - gint row); +/* Virtual functions */ +void e_table_group_add (ETableGroup *etg, + gint row); +void e_table_group_add_all (ETableGroup *etg); +gboolean e_table_group_remove (ETableGroup *etg, + gint row); +gint e_table_group_get_count (ETableGroup *etg); +void e_table_group_increment (ETableGroup *etg, + gint position, + gint amount); +gint e_table_group_row_count (ETableGroup *etg); +void e_table_group_set_focus (ETableGroup *etg, + EFocus direction, + gint view_col); +void e_table_group_select_row (ETableGroup *etg, + gint row); int e_table_group_get_selected_view_row (ETableGroup *etg); -void e_table_group_unfocus (ETableGroup *etg); -gboolean e_table_group_get_focus (ETableGroup *etg); -gint e_table_group_get_focus_column (ETableGroup *etg); -ETableHeader *e_table_group_get_header (ETableGroup *etg); -ETableCol *e_table_group_get_ecol (ETableGroup *etg); +void e_table_group_unfocus (ETableGroup *etg); +gboolean e_table_group_get_focus (ETableGroup *etg); +gint e_table_group_get_focus_column (ETableGroup *etg); +ETableHeader *e_table_group_get_header (ETableGroup *etg); +ETableCol *e_table_group_get_ecol (ETableGroup *etg); +EPrintable *e_table_group_get_printable (ETableGroup *etg); ETableGroup *e_table_group_new (GnomeCanvasGroup *parent, ETableHeader *full_header, |