2000-04-24 Miguel de Icaza <miguel@helixcode.com> * e-table.c (e_table_class_init): Add argument handling here. * e-table-group-leaf.c (e_table_group_apply_to_leafs): New method. Enables us to walk all the children of an ETableGroup. * e-table.c (et_get_arg, et_set_arg): Implement ::get and ::set methods. (e_table_construct_from_spec_file): Now we return the etable. (e_table_construct): ditto. (et_real_construct): Now we return the ETable. Returns NULL on construct failure. (e_table_new): ditto. (e_table_new_from_spec_file): ditto. * (et_build_grouping_spec): Removed vestige code that still contained references to the etable->specification XML code. Dumped all the ifdefed out code. * e-table.h: Removed ETable->specification finally. svn path=/trunk/; revision=2632
84 lines
2.1 KiB
C
84 lines
2.1 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
#ifndef _E_TABLE_H_
|
|
#define _E_TABLE_H_
|
|
|
|
#include <libgnomeui/gnome-canvas.h>
|
|
#include <gtk/gtktable.h>
|
|
#include <gnome-xml/tree.h>
|
|
#include "e-table-model.h"
|
|
#include "e-table-header.h"
|
|
#include "e-table-group.h"
|
|
#include "e-table-sort-info.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;
|
|
|
|
ETableGroup *group;
|
|
|
|
ETableSortInfo *sort_info;
|
|
|
|
int table_model_change_id;
|
|
int table_row_change_id;
|
|
int table_cell_change_id;
|
|
|
|
int sort_info_change_id;
|
|
int group_info_change_id;
|
|
|
|
GnomeCanvas *header_canvas, *table_canvas;
|
|
|
|
GnomeCanvasItem *header_item, *root;
|
|
|
|
guint need_rebuild:1;
|
|
guint need_row_changes:1;
|
|
|
|
GHashTable *row_changes_list;
|
|
gint rebuild_idle_id;
|
|
|
|
/*
|
|
* Configuration settings
|
|
*/
|
|
guint draw_grid:1;
|
|
guint draw_focus:1;
|
|
guint spreadsheet:1;
|
|
} ETable;
|
|
|
|
typedef struct {
|
|
GtkTableClass parent_class;
|
|
|
|
void (*row_selection) (ETable *et, int row, gboolean selected);
|
|
} ETableClass;
|
|
|
|
GtkType e_table_get_type (void);
|
|
|
|
ETable *e_table_construct (ETable *e_table, ETableHeader *full_header, ETableModel *etm,
|
|
const char *spec);
|
|
GtkWidget *e_table_new (ETableHeader *full_header, ETableModel *etm,
|
|
const char *spec);
|
|
|
|
ETable *e_table_construct_from_spec_file (ETable *e_table,
|
|
ETableHeader *full_header,
|
|
ETableModel *etm,
|
|
const char *filename);
|
|
GtkWidget *e_table_new_from_spec_file (ETableHeader *full_header,
|
|
ETableModel *etm,
|
|
const char *filename);
|
|
|
|
gchar *e_table_get_specification (ETable *e_table);
|
|
void e_table_save_specification (ETable *e_table, gchar *filename);
|
|
|
|
END_GNOME_DECLS
|
|
|
|
#endif /* _E_TABLE_H_ */
|