2000-06-26 Christopher James Lahey <clahey@helixcode.com> * widgets/e-text/e-text.c: Calculate height including if clip_height is set to -1. From addressbook/ChangeLog: 2000-06-26 Christopher James Lahey <clahey@helixcode.com> * contact-editor/e-contact-editor-categories.c, addressbook/gui/component/e-cardlist-model.c: Added value_to_string handlers. * demo/addressbook-widget.c, demo/demo.c: Removed usage of "x" and "y" arguments. * addressbook/gui/component/addressbook.c: Activated Click To Add and set the click to add message. * addressbook/gui/component/e-addressbook-model.c: Added value_to_string and append_row handlers. * addressbook/gui/component/e-select-names.c: Added a column. From calendar/ChangeLog: 2000-06-26 Christopher James Lahey <clahey@helixcode.com> * gui/calendar-model.c: Added an #ifdefed value_to_string handler assignment. From camel/ChangeLog: 2000-06-26 Christopher James Lahey <clahey@helixcode.com> * providers/mbox/camel-mbox-summary.c: Added debugging information. From composer/ChangeLog: 2000-06-26 Christopher James Lahey <clahey@helixcode.com> * Makefile.am: Added e-msg-composer-select-file.h for make distcheck. From e-util/ChangeLog: 2000-06-26 Christopher James Lahey <clahey@helixcode.com> * Makefile.am: Added e-canvas-vbox.c and e-canvas-vbox.h. * e-canvas-vbox.c, e-canvas-vbox.h: New canvas object to act like a vbox using the reflow system. From mail/ChangeLog: 2000-06-26 Christopher James Lahey <clahey@helixcode.com> * message-list.c: Added a value_to_string handler. From shell/ChangeLog: 2000-06-26 Christopher James Lahey <clahey@helixcode.com> * glade/Makefile.am: Added EXTRA_DIST for make distcheck. From widgets/e-table/ChangeLog: 2000-06-26 Christopher James Lahey <clahey@helixcode.com> * Makefile.am: Added e-table-click-to-add.c, e-table-click-to-add.h, e-table-one.c, and e-table-one.h. * e-table-click-to-add.c, e-table-click-to-add.h: A new canvas item that represents a single row that sometimes exists. It's for adding new rows to your table. * e-table-example-1.c, e-table-example-2.c, e-table-size-test.c, test-check.c, test-cols.c, test-table.c: Added value_to_string handlers. * e-table-group-container.c: Use value_to_string to make grouping not crash for non string columns. Made some changes to work properly in an ECanvasVbox. * e-table-group-leaf.c, e-table-item.c: Made some changes to work properly in an ECanvasVbox. * e-table-model.c, e-table-model.h: Added append_row and value_to_string methods. * e-table-one.c, e-table-one.h: Given a source ETableModel, this provides a single row model that uses the initialize_value, duplicate_value, free_value, and value_is_empty methods of the original source to implement set_value and value_at (and proxies most of the other methods.) This is used for ETableClickToAdd. * e-table-simple.c, e-table-simple.h: Added append_row and value_to_string handlers. append_row uses a GtkArg instead of a parameter to e_table_simple_new. * e-table-subset.c: Added append_row and value_to_string handlers. * e-table.c, e-table.h: Use a vbox containing an ETableClickToAdd and an ETableItem instead of an ETableItem directly. Only show the ETableClickToAdd if the top level of the xml SPEC has the attribute click-to-add set to some non-zero integer. (click-to-add="1"). Add a "click_to_add_message" argument. * e-tree-model.c: Add a commented out value_to_string handler. From widgets/meeting-time-sel/ChangeLog: 2000-06-26 Christopher James Lahey <clahey@helixcode.com> * Makefile.am: Added the include path to top_srcdir. svn path=/trunk/; revision=3744
175 lines
4.0 KiB
Makefile
175 lines
4.0 KiB
Makefile
|
|
gladedir = $(datadir)/evolution/glade
|
|
glade_DATA = \
|
|
e-table-config.glade \
|
|
e-table-group.glade \
|
|
e-table-field-chooser.glade
|
|
|
|
glade_headers = \
|
|
e-table-config.glade.h \
|
|
e-table-group.glade.h \
|
|
e-table-field-chooser.glade.h
|
|
|
|
INCLUDES = \
|
|
$(EXTRA_GNOME_CFLAGS) \
|
|
$(GNOME_PRINT_CFLAGS) \
|
|
$(GNOME_INCLUDEDIR) \
|
|
-DETABLE_GLADEDIR=\"$(gladedir)\" \
|
|
-I$(top_srcdir)/widgets/e-text \
|
|
-I$(top_srcdir)/e-util \
|
|
-I$(top_srcdir) \
|
|
-DG_LOG_DOMAIN=\"e-table\"
|
|
|
|
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-cell-tree.c \
|
|
e-cell-tree.h \
|
|
e-table.c \
|
|
e-table.h \
|
|
e-table-click-to-add.c \
|
|
e-table-click-to-add.h \
|
|
e-table-col-dnd.h \
|
|
e-table-col.c \
|
|
e-table-col.h \
|
|
e-table-config.c \
|
|
e-table-config.h \
|
|
e-table-defines.h \
|
|
e-table-field-chooser-dialog.c \
|
|
e-table-field-chooser-dialog.h \
|
|
e-table-field-chooser-item.c \
|
|
e-table-field-chooser-item.h \
|
|
e-table-field-chooser.c \
|
|
e-table-field-chooser.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-one.c \
|
|
e-table-one.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 \
|
|
e-tree-model.c \
|
|
e-tree-model.h \
|
|
e-tree-simple.c \
|
|
e-tree-simple.h
|
|
|
|
noinst_PROGRAMS = \
|
|
table-test table-example-1 table-example-2 table-size-test tree-example-1
|
|
|
|
table_test_SOURCES = \
|
|
test-table.c \
|
|
test-check.c \
|
|
test-cols.c \
|
|
table-test.c \
|
|
table-test.h
|
|
|
|
table_test_LDADD = \
|
|
libetable.a \
|
|
$(EXTRA_GNOME_LIBS) \
|
|
$(top_builddir)/widgets/e-text/libetext.a \
|
|
$(top_builddir)/widgets/misc/libemiscwidgets.a \
|
|
$(top_builddir)/e-util/libeutil.la \
|
|
$(GNOME_PRINT_LIBS)
|
|
|
|
table_test_LDFLAGS = `gnome-config --libs gdk_pixbuf`
|
|
|
|
table_size_test_SOURCES = \
|
|
e-table-size-test.c
|
|
|
|
table_size_test_LDADD = \
|
|
libetable.a \
|
|
$(EXTRA_GNOME_LIBS) \
|
|
$(top_builddir)/widgets/e-text/libetext.a \
|
|
$(top_builddir)/widgets/misc/libemiscwidgets.a \
|
|
$(top_builddir)/e-util/libeutil.la \
|
|
$(GNOME_PRINT_LIBS)
|
|
|
|
table_size_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)/widgets/misc/libemiscwidgets.a \
|
|
$(top_builddir)/e-util/libeutil.la \
|
|
$(GNOME_PRINT_LIBS)
|
|
|
|
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)/widgets/misc/libemiscwidgets.a \
|
|
$(top_builddir)/e-util/libeutil.la \
|
|
$(GNOME_PRINT_LIBS)
|
|
|
|
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)/widgets/misc/libemiscwidgets.a \
|
|
$(top_builddir)/e-util/libeutil.la \
|
|
$(GNOME_PRINT_LIBS)
|
|
|
|
icons = \
|
|
arrow-down.xpm \
|
|
arrow-up.xpm \
|
|
add-col.xpm \
|
|
check-empty.xpm \
|
|
check-filled.xpm \
|
|
remove-col.xpm \
|
|
tree-expanded.xpm \
|
|
tree-unexpanded.xpm
|
|
|
|
EXTRA_DIST = \
|
|
sample.table \
|
|
$(icons) \
|
|
$(glade_DATA) \
|
|
$(glade_headers)
|