aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-group-leaf.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-03-02 09:33:29 +0800
committernobody <nobody@localhost>2001-03-02 09:33:29 +0800
commit33d0bbdc0ce1b25a612c2583c0bfcc3705866ebc (patch)
treecda39502324bf50b451e5c7f58e5dee7c7476bad /widgets/table/e-table-group-leaf.h
parent50ef074887b43f43dad3edb120d9abf30092c681 (diff)
downloadgsoc2013-evolution-33d0bbdc0ce1b25a612c2583c0bfcc3705866ebc.tar
gsoc2013-evolution-33d0bbdc0ce1b25a612c2583c0bfcc3705866ebc.tar.gz
gsoc2013-evolution-33d0bbdc0ce1b25a612c2583c0bfcc3705866ebc.tar.bz2
gsoc2013-evolution-33d0bbdc0ce1b25a612c2583c0bfcc3705866ebc.tar.lz
gsoc2013-evolution-33d0bbdc0ce1b25a612c2583c0bfcc3705866ebc.tar.xz
gsoc2013-evolution-33d0bbdc0ce1b25a612c2583c0bfcc3705866ebc.tar.zst
gsoc2013-evolution-33d0bbdc0ce1b25a612c2583c0bfcc3705866ebc.zip
This commit was manufactured by cvs2svn to create tag 'PONG_0_11'.PONG_0_11
svn path=/tags/PONG_0_11/; revision=8498
Diffstat (limited to 'widgets/table/e-table-group-leaf.h')
-rw-r--r--widgets/table/e-table-group-leaf.h57
1 files changed, 0 insertions, 57 deletions
diff --git a/widgets/table/e-table-group-leaf.h b/widgets/table/e-table-group-leaf.h
deleted file mode 100644
index 680ee37347..0000000000
--- a/widgets/table/e-table-group-leaf.h
+++ /dev/null
@@ -1,57 +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 draw_grid : 1;
- guint draw_focus : 1;
- ECursorMode cursor_mode;
-
- ETableSelectionModel *table_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_ */
-