diff options
author | nobody <nobody@localhost> | 2001-08-04 06:36:03 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2001-08-04 06:36:03 +0800 |
commit | b266f65c147b99ecae0297ff1ef1c801bfc6f883 (patch) | |
tree | f3c195439d0a5928ddb85c3a1583b09eb498443a /widgets/table/e-table-group-leaf.h | |
parent | 308aaf47ea788683b47a600d6c6f31563d7ee070 (diff) | |
download | gsoc2013-evolution-gnomemm_1_2_1.tar gsoc2013-evolution-gnomemm_1_2_1.tar.gz gsoc2013-evolution-gnomemm_1_2_1.tar.bz2 gsoc2013-evolution-gnomemm_1_2_1.tar.lz gsoc2013-evolution-gnomemm_1_2_1.tar.xz gsoc2013-evolution-gnomemm_1_2_1.tar.zst gsoc2013-evolution-gnomemm_1_2_1.zip |
This commit was manufactured by cvs2svn to create taggnomemm_1_2_1
'gnomemm_1_2_1'.
svn path=/tags/gnomemm_1_2_1/; revision=11631
Diffstat (limited to 'widgets/table/e-table-group-leaf.h')
-rw-r--r-- | widgets/table/e-table-group-leaf.h | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/widgets/table/e-table-group-leaf.h b/widgets/table/e-table-group-leaf.h deleted file mode 100644 index de6a63013b..0000000000 --- a/widgets/table/e-table-group-leaf.h +++ /dev/null @@ -1,59 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -#ifndef _E_TABLE_GROUP_LEAF_H_ -#define _E_TABLE_GROUP_LEAF_H_ - -#include <libgnomeui/gnome-canvas.h> -#include <gal/e-table/e-table-group.h> -#include <gal/e-table/e-table-subset.h> -#include <gal/e-table/e-table-item.h> - -BEGIN_GNOME_DECLS - -#define E_TABLE_GROUP_LEAF_TYPE (e_table_group_leaf_get_type ()) -#define E_TABLE_GROUP_LEAF(o) (GTK_CHECK_CAST ((o), E_TABLE_GROUP_LEAF_TYPE, ETableGroupLeaf)) -#define E_TABLE_GROUP_LEAF_CLASS(k) (GTK_CHECK_CLASS_CAST((k), E_TABLE_GROUP_LEAF_TYPE, ETableGroupLeafClass)) -#define E_IS_TABLE_GROUP_LEAF(o) (GTK_CHECK_TYPE ((o), E_TABLE_GROUP_LEAF_TYPE)) -#define E_IS_TABLE_GROUP_LEAF_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_TABLE_GROUP_LEAF_TYPE)) - -typedef struct { - ETableGroup group; - - /* - * Item. - */ - ETableItem *item; - - gdouble height; - gdouble width; - gdouble minimum_width; - - int length_threshold; - - ETableSubset *ets; - guint is_grouped : 1; - - guint alternating_row_colors : 1; - guint horizontal_draw_grid : 1; - guint vertical_draw_grid : 1; - guint draw_focus : 1; - ECursorMode cursor_mode; - - ESelectionModel *selection_model; -} ETableGroupLeaf; - -typedef struct { - ETableGroupClass parent_class; -} ETableGroupLeafClass; - -ETableGroup *e_table_group_leaf_new (GnomeCanvasGroup *parent, - ETableHeader *full_header, - ETableHeader *header, - ETableModel *model, - ETableSortInfo *sort_info); -GtkType e_table_group_leaf_get_type (void); - - -END_GNOME_DECLS - -#endif /* _E_TABLE_GROUP_LEAF_H_ */ - |