aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table.h
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-03-04 04:05:57 +0800
committerChris Lahey <clahey@src.gnome.org>2000-03-04 04:05:57 +0800
commit626f63df0b18cc891b7995a0b7202303efede45d (patch)
tree9a963dfa708abf113b067bf1a11c7592f13cb565 /widgets/table/e-table.h
parentbc0d854e93fa0dd9ca596d1663f389f31f458439 (diff)
downloadgsoc2013-evolution-626f63df0b18cc891b7995a0b7202303efede45d.tar
gsoc2013-evolution-626f63df0b18cc891b7995a0b7202303efede45d.tar.gz
gsoc2013-evolution-626f63df0b18cc891b7995a0b7202303efede45d.tar.bz2
gsoc2013-evolution-626f63df0b18cc891b7995a0b7202303efede45d.tar.lz
gsoc2013-evolution-626f63df0b18cc891b7995a0b7202303efede45d.tar.xz
gsoc2013-evolution-626f63df0b18cc891b7995a0b7202303efede45d.tar.zst
gsoc2013-evolution-626f63df0b18cc891b7995a0b7202303efede45d.zip
Added a bunch of stuff to the TODO list. Put +s before a few of the items
2000-03-04 Christopher James Lahey <clahey@helixcode.com> * TODO: Added a bunch of stuff to the TODO list. Put +s before a few of the items that are finished. * test-table.c: Add a button to save the spec file. * e-table.c, e-table.h: Add loading configurations from files as well as the ability to get the current configuration out of the widget. svn path=/trunk/; revision=2025
Diffstat (limited to 'widgets/table/e-table.h')
-rw-r--r--widgets/table/e-table.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/widgets/table/e-table.h b/widgets/table/e-table.h
index 841013c09a..5c29c1fa0c 100644
--- a/widgets/table/e-table.h
+++ b/widgets/table/e-table.h
@@ -56,6 +56,12 @@ void e_table_construct (ETable *e_table, ETableHeader *full_header, ETable
const char *spec);
GtkWidget *e_table_new (ETableHeader *full_header, ETableModel *etm,
const char *spec);
+void 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