From 3012f7b1f28abda4cb15c50d061af165889bc08b Mon Sep 17 00:00:00 2001 From: Not Zed Date: Mon, 9 Oct 2000 12:24:54 +0000 Subject: Removed the assertion that there must be at least 1 column. No way to 2000-10-06 Not Zed * e-table-item.c (eti_header_structure_changed): Removed the assertion that there must be at least 1 column. No way to remove all columns otherwise (which the header allows). * e-table.c (et_xml_config_header): Reconfigure header based on xml nodes for header. (et_real_set_specification): Just configure the header only, dont try to recreate everything. 2000-10-05 Not Zed * e-table-scrolled.c (e_table_scrolled_set_specification): Set the spec on a scrolled etable. (e_table_scrolled_load_specification): Likewise for load. * e-table.c (et_real_set_specification): Allow you to set the specification after the widget was created. (et_real_construct): Changed to use et_real_set_specification to set the spec. (e_table_load_specification): New frunction, load the speficication from a specific file. (e_table_set_specification): NEw function to set the specification from a string. svn path=/trunk/; revision=5795 --- widgets/table/e-table.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'widgets/table/e-table.h') diff --git a/widgets/table/e-table.h b/widgets/table/e-table.h index 5b71fa82c2..d5462ce65c 100644 --- a/widgets/table/e-table.h +++ b/widgets/table/e-table.h @@ -173,6 +173,9 @@ GtkWidget *e_table_new_from_spec_file (ETableHeader *full_header, gchar *e_table_get_specification (ETable *e_table); void e_table_save_specification (ETable *e_table, gchar *filename); +/* note that it is more efficient to provide the spec at creation time */ +int e_table_set_specification (ETable *e_table, const char *spec); +int e_table_load_specification (ETable *e_table, gchar *filename); void e_table_set_cursor_row (ETable *e_table, int row); -- cgit