2000-01-25 Christopher James Lahey <clahey@helixcode.com> * widgets/e-reflow.c, widgets/e-minicard.c: Handle shift-tab properly now. * widgets/e-minicard-label.c: Reindented some areas. * widgets/test-reflow.c: Use e-canvas. Set the back pixmap to NULL for the canvas so that scrolling won't flash grey. * widgets/e-canvas.c, widgets/e-canvas.h: These subclass GnomeCanvas to work around a few bugs so that evolution will work well with old versions of gnome-libs. * widgets/Makefile.am: Added e-canvas.c and e-canvas.h. * addressbook/contact-editor/contact-editor.glade: Not much change. Mostly internal reorganization by glade itself. svn path=/trunk/; revision=1638
58 lines
1.0 KiB
Makefile
58 lines
1.0 KiB
Makefile
|
|
SUBDIRS = \
|
|
meeting-time-sel shortcut-bar e-table
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir)/camel \
|
|
-I$(top_builddir)/camel \
|
|
$(GNOME_INCLUDEDIR)
|
|
|
|
noinst_LIBRARIES = \
|
|
libevolutionwidgets.a
|
|
|
|
libevolutionwidgets_a_SOURCES = \
|
|
e-canvas.c \
|
|
e-canvas.h \
|
|
e-canvas-utils.c \
|
|
e-canvas-utils.h \
|
|
e-cursors.c \
|
|
e-cursors.h \
|
|
e-minicard.c \
|
|
e-minicard.h \
|
|
e-minicard-label.c \
|
|
e-minicard-label.h \
|
|
e-reflow.c \
|
|
e-reflow.h \
|
|
e-text.c \
|
|
e-text.h \
|
|
e-text-event-processor.c \
|
|
e-text-event-processor.h \
|
|
e-text-event-processor-emacs-like.c \
|
|
e-text-event-processor-emacs-like.h
|
|
|
|
noinst_PROGRAMS = \
|
|
minicard-label-test \
|
|
minicard-test \
|
|
reflow-test
|
|
|
|
minicard_label_test_SOURCES = \
|
|
test-minicard-label.c
|
|
|
|
minicard_label_test_LDADD = \
|
|
$(EXTRA_GNOME_LIBS) \
|
|
libevolutionwidgets.a
|
|
|
|
minicard_test_SOURCES = \
|
|
test-minicard.c
|
|
|
|
minicard_test_LDADD = \
|
|
$(EXTRA_GNOME_LIBS) \
|
|
libevolutionwidgets.a
|
|
|
|
reflow_test_SOURCES = \
|
|
test-reflow.c
|
|
|
|
reflow_test_LDADD = \
|
|
$(EXTRA_GNOME_LIBS) \
|
|
libevolutionwidgets.a
|