2000-07-26 Christopher James Lahey <clahey@helixcode.com> * e-table-group-container.c, e-table-group-container.h, e-table-group-leaf.c, e-table-group-leaf.h: Added "table_selection_model" argument. Removed foreach function and selection notification. * e-table-group.c, e-table-group.h: Removed foreach function and selection notification. * e-table-header.c: Fixed header width calculation to include the last column. * e-table-item.c, e-table-item.h: Fixed this to use the new selection model. * e-table-scrolled.c, e-table-scrolled.h: Removed selection notification. * e-table-selection-model.c, e-table-selection-model.h: Finished notification signals and fixed a bunch of bit manipulations. Implemented do_something method. * e-table.c, e-table.h: Create an ETableSelectionModel and use it properly. svn path=/trunk/; revision=4363
53 lines
1.4 KiB
C
53 lines
1.4 KiB
C
/* -*- 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 "e-table-group.h"
|
|
#include "e-table-sorted-variable.h"
|
|
#include "e-table-item.h"
|
|
|
|
#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;
|
|
|
|
ETableSubsetVariable *subset;
|
|
|
|
int length_threshold;
|
|
|
|
guint draw_grid : 1;
|
|
guint draw_focus : 1;
|
|
ETableCursorMode 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);
|
|
|
|
|
|
#endif /* _E_TABLE_GROUP_LEAF_H_ */
|
|
|