Ok, the restructuring of ETableItem to compute its size without hacks is in now. I am feeling better now. 1999-12-30 Miguel de Icaza <miguel@gnu.org> * e-table-item.c (eti_attach_cell_views): New routine, creates the cell views. (eti_detach_cell_views): Detaches the cell_views from the ETableItem. (eti_realize_cell_views, eti_unrealize_cell_views): Simplified to just do realize/unrealize notification. (eti_add_table_model): Only attach the cells when we have both the table model and the header model. * e-cell.h (ECellClass): Added two new methods: new_view and kill_view which drive the view process (instead of putting that on realize/unrealize). * e-cell.c: Adapt the code to use the new scheme for view instantiation. * e-cell-text.c, e-cell-toggle.c: Adapted to the new class changes. svn path=/trunk/; revision=1523
49 lines
1.2 KiB
C
49 lines
1.2 KiB
C
#ifndef _E_TABLE_H_
|
|
#define _E_TABLE_H_
|
|
|
|
#include <libgnomeui/gnome-canvas.h>
|
|
#include <gtk/gtktable.h>
|
|
#include "e-table-model.h"
|
|
#include "e-table-header.h"
|
|
|
|
BEGIN_GNOME_DECLS
|
|
|
|
#define E_TABLE_TYPE (e_table_get_type ())
|
|
#define E_TABLE(o) (GTK_CHECK_CAST ((o), E_TABLE_TYPE, ETable))
|
|
#define E_TABLE_CLASS(k) (GTK_CHECK_CLASS_CAST((k), E_TABLE_TYPE, ETableClass))
|
|
#define E_IS_TABLE(o) (GTK_CHECK_TYPE ((o), E_TABLE_TYPE))
|
|
#define E_IS_TABLE_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_TABLE_TYPE))
|
|
|
|
typedef struct {
|
|
GtkTable parent;
|
|
|
|
ETableModel *model;
|
|
|
|
ETableHeader *full_header, *header;
|
|
|
|
GnomeCanvas *header_canvas, *table_canvas;
|
|
|
|
GnomeCanvasItem *header_item, *root;
|
|
|
|
guint draw_grid:1;
|
|
guint draw_focus:1;
|
|
guint spreadsheet:1;
|
|
|
|
char *group_spec;
|
|
} ETable;
|
|
|
|
typedef struct {
|
|
GtkTableClass parent_class;
|
|
} ETableClass;
|
|
|
|
GtkType e_table_get_type (void);
|
|
void e_table_construct (ETable *e_table, ETableHeader *full_header, ETableModel *etm,
|
|
const char *cols_spec, const char *group_spec);
|
|
GtkWidget *e_table_new (ETableHeader *full_header, ETableModel *etm,
|
|
const char *cols_spec, const char *group_spec);
|
|
|
|
|
|
END_GNOME_DECLS
|
|
|
|
#endif /* _E_TABLE_H_ */
|