2000-03-12 Christopher James Lahey <clahey@helixcode.com> * widgets/Makefile.am: Rearranged SUBDIRS for dependencies. * widgets/e-text/e-text-model.c, widgets/e-text-model.h: New object which stores a piece of text data. All methods are virtual. * widgets/e-text/e-text.c, widgets/e-text/e-text.h: Modified this to use an ETextModel for its data. * widgets/e-text/Makefile.am: Added e-text-model.c and e-text-model.h. * widgets/e-minicard/test-minicard-label.c: Made this work again. * widgets/e-minicard/e-minicard.c, widgets/e-minicard/e-minicard.h: Made this use an ETableModel to get its data. * widgets/e-minicard/e-minicard-label.c, widgets/e-minicard/e-minicard-label.h: Added the ability to set the text model used for the contained text widget. * widgets/e-minicard/Makefile.am: Added e-table since e-minicard is now dependent on an e-table-model for its data. * e-util/e-canvas.c, e-util/e-canvas.h: Fixed some bugs here to speed up reflow and to make it fail less often. * addressbook/demo, addressbook/demo/.cvsignore, addressbook/demo/Makefile.am, addressbook/demo/demo.c, addressbook/demo/spec: A new program to test ETable and EMinicard integration. * configure.in: Added addressbook/demo/Makefile. * addressbook/Makefile.am: Added the demo/ subdirectory. in widgets/e-table/: 2000-03-12 Christopher James Lahey <clahey@helixcode.com> * e-table.c: Made this use an ECanvas. Fixed a bug where e_table_new_from_spec_file was calling e_table_construct instead of e_table_construct_from_spec_file. * e-table-item.c, e-table-header-item.c, e-table-column-item.c: Switched these to use GTK_TYPE_OBJECT and GTK_VALUE_OBJECT instead of GTK_TYPE_POINTER and GTK_TYPE_OBJECT. * e-cell-text.c: Got rid of a crashing bug. * e-table-text-model.c, e-table-text-model.h: A new object which is an e-text-model which uses an e-table-model for its data. * Makefile.am: Added e-table-text-model.c and e-table-text-model.h. * .cvsignore: Added table-example-1 and table-example-2. svn path=/trunk/; revision=2101
98 lines
2.1 KiB
Makefile
98 lines
2.1 KiB
Makefile
INCLUDES = \
|
|
$(EXTRA_GNOME_CFLAGS) \
|
|
$(GNOME_INCLUDEDIR) \
|
|
-I$(top_srcdir)/widgets/e-text \
|
|
-I$(top_srcdir)/e-util \
|
|
-I$(top_srcdir)
|
|
|
|
noinst_LIBRARIES = \
|
|
libetable.a
|
|
|
|
libetable_a_SOURCES = \
|
|
e-cell.c \
|
|
e-cell.h \
|
|
e-cell-checkbox.c \
|
|
e-cell-checkbox.h \
|
|
e-cell-text.c \
|
|
e-cell-text.h \
|
|
e-cell-toggle.c \
|
|
e-cell-toggle.h \
|
|
e-table.c \
|
|
e-table.h \
|
|
e-table-col.c \
|
|
e-table-col.h \
|
|
e-table-group.c \
|
|
e-table-group.h \
|
|
e-table-group-container.c \
|
|
e-table-group-container.h \
|
|
e-table-group-leaf.c \
|
|
e-table-group-leaf.h \
|
|
e-table-header.c \
|
|
e-table-header.h \
|
|
e-table-header-item.c \
|
|
e-table-header-item.h \
|
|
e-table-item.c \
|
|
e-table-item.h \
|
|
e-table-model.c \
|
|
e-table-model.h \
|
|
e-table-simple.c \
|
|
e-table-simple.h \
|
|
e-table-sort-info.c \
|
|
e-table-sort-info.h \
|
|
e-table-sorted.c \
|
|
e-table-sorted.h \
|
|
e-table-sorted-variable.c \
|
|
e-table-sorted-variable.h \
|
|
e-table-subset.c \
|
|
e-table-subset.h \
|
|
e-table-subset-variable.c \
|
|
e-table-subset-variable.h \
|
|
e-table-text-model.c \
|
|
e-table-text-model.h
|
|
|
|
noinst_PROGRAMS = \
|
|
table-test table-example-1 table-example-2
|
|
|
|
table_test_SOURCES = \
|
|
test-table.c \
|
|
test-check.c \
|
|
test-cols.c \
|
|
table-test.c
|
|
|
|
table_test_LDADD = \
|
|
libetable.a \
|
|
$(EXTRA_GNOME_LIBS) \
|
|
$(top_builddir)/widgets/e-text/libetext.a \
|
|
$(top_builddir)/e-util/libeutil.la
|
|
|
|
table_test_LDFLAGS = `gnome-config --libs gdk_pixbuf`
|
|
|
|
table_example_1_SOURCES = \
|
|
e-table-example-1.c
|
|
|
|
table_example_1_LDADD = \
|
|
libetable.a \
|
|
$(EXTRA_GNOME_LIBS) \
|
|
$(top_builddir)/widgets/e-text/libetext.a \
|
|
$(top_builddir)/e-util/libeutil.la
|
|
|
|
table_example_1_LDFLAGS = `gnome-config --libs gdk_pixbuf`
|
|
|
|
table_example_2_SOURCES = \
|
|
e-table-example-2.c
|
|
|
|
table_example_2_LDADD = \
|
|
libetable.a \
|
|
$(EXTRA_GNOME_LIBS) \
|
|
$(top_builddir)/widgets/e-text/libetext.a \
|
|
$(top_builddir)/e-util/libeutil.la
|
|
|
|
table_example_2_LDFLAGS = `gnome-config --libs gdk_pixbuf`
|
|
|
|
EXTRA_DIST = \
|
|
sample.table \
|
|
add-col.xpm \
|
|
check-empty.xpm \
|
|
check-filled.xpm \
|
|
remove-col.xpm
|