From e581631a9ce0803ba629ac67cd8934a6e23753ae Mon Sep 17 00:00:00 2001 From: Chris Toshok Date: Thu, 8 Jun 2000 23:16:22 +0000 Subject: New files. A tree model using a GNode structure to store it's info. 2000-06-08 Chris Toshok * e-tree-gnode.c, e-tree-gnode.h: New files. A tree model using a GNode structure to store it's info. * e-tree-model.c, e-tree-model.h: New files. A proxy model sitting between a table model and the real tree model (of which ETreeGNode is an example). * e-cell-tree.c, e-cell-tree.h: New files. A cell renderer capable of wrapping up a subcell and drawing the tree controls for expanding/collapsing trees. * tree-expanded.xpm, tree-unexpanded.xpm: New files. the standard + and - icons. * e-tree-example-1.c: New file, giving a (pretty poor :) example of using ETreeGNode. * Makefile.am: at the tree stuff to the build, and build tree-example-1. * .cvsignore: ignore tree-example-1. svn path=/trunk/; revision=3483 --- widgets/e-table/Makefile.am | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) (limited to 'widgets/e-table/Makefile.am') diff --git a/widgets/e-table/Makefile.am b/widgets/e-table/Makefile.am index bb0cc97edb..8048435753 100644 --- a/widgets/e-table/Makefile.am +++ b/widgets/e-table/Makefile.am @@ -31,6 +31,8 @@ libetable_a_SOURCES = \ e-cell-text.h \ e-cell-toggle.c \ e-cell-toggle.h \ + e-cell-tree.c \ + e-cell-tree.h \ e-table.c \ e-table.h \ e-table-col-dnd.h \ @@ -72,10 +74,14 @@ libetable_a_SOURCES = \ e-table-subset-variable.c \ e-table-subset-variable.h \ e-table-text-model.c \ - e-table-text-model.h + e-table-text-model.h \ + e-tree-gnode.c \ + e-tree-gnode.h \ + e-tree-model.c \ + e-tree-model.h noinst_PROGRAMS = \ - table-test table-example-1 table-example-2 table-size-test + table-test table-example-1 table-example-2 table-size-test tree-example-1 table_test_SOURCES = \ test-table.c \ @@ -125,6 +131,17 @@ table_example_2_LDADD = \ table_example_2_LDFLAGS = `gnome-config --libs gdk_pixbuf` +tree_example_1_SOURCES = \ + e-tree-example-1.c + +tree_example_1_LDFLAGS = `gnome-config --libs gdk_pixbuf` + +tree_example_1_LDADD = \ + libetable.a \ + $(EXTRA_GNOME_LIBS) \ + $(top_builddir)/widgets/e-text/libetext.a \ + $(top_builddir)/e-util/libeutil.la + icons = \ arrow-down.xpm \ arrow-up.xpm \ -- cgit