2001-01-15 Miguel de Icaza <miguel@gnu.org> * e-table-specification.c: Document all entry points. (e_table_specification_save_to_file): Change prototype to return the number of bytes written. (e_table_specification_duplicate): Implement a function to duplicate nodes. (e_table_specification_save_to_node): Implement missing function. (e_table_specification_save_to_file): Enable. (e_table_specification_save_to_string): Enable. (e_table_specification_load_from_node): Just load the normal version of the click-to-add-message version, let other code translate it. (e_table_specification_load_from_string): Alter prototype to return success code. * e-table-specification.h: Do not store the translated version, store the plain version, so we can restore this later during the saving routines. * e-table.c (et_real_construct): Translate click to add message here. * e-table-header-item.c: Destroy config object if we are destroyed. svn path=/trunk/; revision=7518
54 lines
2.2 KiB
C
54 lines
2.2 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
#ifndef _E_TABLE_SPECIFICATION_H_
|
|
#define _E_TABLE_SPECIFICATION_H_
|
|
|
|
#include <gtk/gtkobject.h>
|
|
#include <gnome-xml/tree.h>
|
|
#include <gal/e-table/e-table-state.h>
|
|
#include <gal/e-table/e-table-column-specification.h>
|
|
#include <gal/e-table/e-table-defines.h>
|
|
|
|
#define E_TABLE_SPECIFICATION_TYPE (e_table_specification_get_type ())
|
|
#define E_TABLE_SPECIFICATION(o) (GTK_CHECK_CAST ((o), E_TABLE_SPECIFICATION_TYPE, ETableSpecification))
|
|
#define E_TABLE_SPECIFICATION_CLASS(k) (GTK_CHECK_CLASS_CAST((k), E_TABLE_SPECIFICATION_TYPE, ETableSpecificationClass))
|
|
#define E_IS_TABLE_SPECIFICATION(o) (GTK_CHECK_TYPE ((o), E_TABLE_SPECIFICATION_TYPE))
|
|
#define E_IS_TABLE_SPECIFICATION_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_TABLE_SPECIFICATION_TYPE))
|
|
|
|
typedef struct {
|
|
GtkObject base;
|
|
|
|
ETableColumnSpecification **columns;
|
|
ETableState *state;
|
|
|
|
guint no_headers : 1;
|
|
guint click_to_add : 1;
|
|
guint draw_grid : 1;
|
|
GtkSelectionMode selection_mode;
|
|
ETableCursorMode cursor_mode;
|
|
|
|
char *click_to_add_message;
|
|
} ETableSpecification;
|
|
|
|
typedef struct {
|
|
GtkObjectClass parent_class;
|
|
} ETableSpecificationClass;
|
|
|
|
GtkType e_table_specification_get_type (void);
|
|
ETableSpecification *e_table_specification_new (void);
|
|
|
|
gboolean e_table_specification_load_from_file (ETableSpecification *specification,
|
|
const char *filename);
|
|
gboolean e_table_specification_load_from_string (ETableSpecification *specification,
|
|
const char *xml);
|
|
void e_table_specification_load_from_node (ETableSpecification *specification,
|
|
const xmlNode *node);
|
|
|
|
int e_table_specification_save_to_file (ETableSpecification *specification,
|
|
const char *filename);
|
|
char *e_table_specification_save_to_string (ETableSpecification *specification);
|
|
xmlNode *e_table_specification_save_to_node (ETableSpecification *specification,
|
|
xmlDoc *doc);
|
|
ETableSpecification *e_table_specification_duplicate (ETableSpecification *spec);
|
|
|
|
#endif /* _E_TABLE_SPECIFICATION_H_ */
|