aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-group-container.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-05-23 02:44:11 +0800
committernobody <nobody@localhost>2001-05-23 02:44:11 +0800
commit0cca49e2662d0f61cc50206b55444ba5d657cb9a (patch)
tree95dc85a352a224a01f4569713aff91034dffc2b0 /widgets/table/e-table-group-container.h
parent4c2d071302d73e50d1a549959eeba7e5acf295d2 (diff)
downloadgsoc2013-evolution-0cca49e2662d0f61cc50206b55444ba5d657cb9a.tar
gsoc2013-evolution-0cca49e2662d0f61cc50206b55444ba5d657cb9a.tar.gz
gsoc2013-evolution-0cca49e2662d0f61cc50206b55444ba5d657cb9a.tar.bz2
gsoc2013-evolution-0cca49e2662d0f61cc50206b55444ba5d657cb9a.tar.lz
gsoc2013-evolution-0cca49e2662d0f61cc50206b55444ba5d657cb9a.tar.xz
gsoc2013-evolution-0cca49e2662d0f61cc50206b55444ba5d657cb9a.tar.zst
gsoc2013-evolution-0cca49e2662d0f61cc50206b55444ba5d657cb9a.zip
This commit was manufactured by cvs2svn to create tagGNOME_LIBS_1_4_1_4
'GNOME_LIBS_1_4_1_4'. svn path=/tags/GNOME_LIBS_1_4_1_4/; revision=9929
Diffstat (limited to 'widgets/table/e-table-group-container.h')
-rw-r--r--widgets/table/e-table-group-container.h75
1 files changed, 0 insertions, 75 deletions
diff --git a/widgets/table/e-table-group-container.h b/widgets/table/e-table-group-container.h
deleted file mode 100644
index d7e314d517..0000000000
--- a/widgets/table/e-table-group-container.h
+++ /dev/null
@@ -1,75 +0,0 @@
-/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
-#ifndef _E_TABLE_GROUP_CONTAINER_H_
-#define _E_TABLE_GROUP_CONTAINER_H_
-
-#include <libgnomeui/gnome-canvas.h>
-#include <gal/e-table/e-table-model.h>
-#include <gal/e-table/e-table-header.h>
-#include <gal/e-table/e-table-group.h>
-#include <gal/e-table/e-table-item.h>
-
-BEGIN_GNOME_DECLS
-
-#define E_TABLE_GROUP_CONTAINER_TYPE (e_table_group_container_get_type ())
-#define E_TABLE_GROUP_CONTAINER(o) (GTK_CHECK_CAST ((o), E_TABLE_GROUP_CONTAINER_TYPE, ETableGroupContainer))
-#define E_TABLE_GROUP_CONTAINER_CLASS(k) (GTK_CHECK_CLASS_CAST((k), E_TABLE_GROUP_CONTAINER_TYPE, ETableGroupContainerClass))
-#define E_IS_TABLE_GROUP_CONTAINER(o) (GTK_CHECK_TYPE ((o), E_TABLE_GROUP_CONTAINER_TYPE))
-#define E_IS_TABLE_GROUP_CONTAINER_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_TABLE_GROUP_CONTAINER_TYPE))
-
-typedef struct {
- ETableGroup group;
-
- /*
- * The ETableCol used to group this set
- */
- ETableCol *ecol;
- gint ascending;
-
- /*
- * List of ETableGroups we stack
- */
- GList *children;
-
- /*
- * The canvas rectangle that contains the children
- */
- GnomeCanvasItem *rect;
-
- GdkFont *font;
-
- gdouble width, height, minimum_width;
-
- ETableSortInfo *sort_info;
- int n;
- int length_threshold;
-
- ESelectionModel *selection_model;
-
- guint alternating_row_colors : 1;
- guint horizontal_draw_grid : 1;
- guint vertical_draw_grid : 1;
- guint draw_focus : 1;
- ECursorMode cursor_mode;
-
- /*
- * State: the ETableGroup is open or closed
- */
- guint open:1;
-} ETableGroupContainer;
-
-typedef struct {
- ETableGroupClass parent_class;
-} ETableGroupContainerClass;
-
-ETableGroup *e_table_group_container_new (GnomeCanvasGroup *parent, ETableHeader *full_header, ETableHeader *header,
- ETableModel *model, ETableSortInfo *sort_info, int n);
-void e_table_group_container_construct (GnomeCanvasGroup *parent, ETableGroupContainer *etgc,
- ETableHeader *full_header,
- ETableHeader *header,
- ETableModel *model, ETableSortInfo *sort_info, int n);
-
-GtkType e_table_group_container_get_type (void);
-
-END_GNOME_DECLS
-
-#endif /* _E_TABLE_GROUP_CONTAINER_H_ */