Files
evolution/widgets/misc/Makefile.am
Matthew Barnes 7c0c40f833 Reorder accounts by drag-and-drop.
This implements https://bugzilla.gnome.org/show_bug.cgi?id=663527#c3.

Account reordering is now done by drag-and-drop instead of up/down
buttons.

Turned out to be a wee bit more complicated than I initially thought.

This scraps EAccountManager and EAccountTreeView and replaces them with
new classes centered around EMailAccountStore, which EMailSession owns.

EMailAccountStore is the model behind the account list in Preferences.
The folder tree model now uses it to sort its own top-level rows using
gtk_tree_path_compare().  It also broadcasts account operations through
signals so we don't have to rely so heavily on EAccountList signals,
since EAccountList is going away soon.

Also as part of this work, the e-mail-local.h and e-mail-store.h APIs
have been merged into EMailSession and MailFolderCache.
2011-12-10 21:34:19 -05:00

233 lines
5.6 KiB
Makefile

privsolib_LTLIBRARIES = libemiscwidgets.la
widgetsincludedir = $(privincludedir)/misc
ui_DATA = e-send-options.ui
widgetsinclude_HEADERS = \
e-account-combo-box.h \
e-action-combo-box.h \
e-activity-bar.h \
e-activity-proxy.h \
e-alert-bar.h \
e-attachment.h \
e-attachment-button.h \
e-attachment-dialog.h \
e-attachment-handler.h \
e-attachment-handler-image.h \
e-attachment-handler-sendto.h \
e-attachment-icon-view.h \
e-attachment-paned.h \
e-attachment-store.h \
e-attachment-tree-view.h \
e-attachment-view.h \
e-auth-combo-box.h \
e-buffer-tagger.h \
e-calendar.h \
e-calendar-item.h \
e-canvas.h \
e-canvas-background.h \
e-canvas-utils.h \
e-canvas-vbox.h \
e-cell-renderer-combo.h \
e-charset-combo-box.h \
e-combo-cell-editable.h \
e-contact-map.h \
e-contact-map-window.h \
e-contact-marker.h \
e-dateedit.h \
e-focus-tracker.h \
e-image-chooser.h \
e-import-assistant.h \
e-map.h \
e-menu-tool-action.h \
e-menu-tool-button.h \
e-online-button.h \
e-paned.h \
e-picture-gallery.h \
e-popup-action.h \
e-port-entry.h \
e-preferences-window.h \
e-preview-pane.h \
e-printable.h \
e-search-bar.h \
e-searching-tokenizer.h \
e-selectable.h \
e-selection-model.h \
e-selection-model-array.h \
e-selection-model-simple.h \
e-send-options.h \
e-signature-combo-box.h \
e-signature-editor.h \
e-signature-manager.h \
e-signature-preview.h \
e-signature-script-dialog.h \
e-signature-tree-view.h \
e-url-entry.h \
e-web-view.h \
e-web-view-preview.h \
ea-calendar-cell.h \
ea-calendar-item.h \
ea-cell-table.h \
ea-widgets.h
libemiscwidgets_la_CPPFLAGS = \
$(AM_CPPFLAGS) \
-I$(top_srcdir) \
-I$(top_srcdir)/filter \
-I$(top_srcdir)/widgets \
-DEVOLUTION_IMAGESDIR=\""$(imagesdir)"\" \
-DEVOLUTION_UIDIR=\""$(uidir)"\" \
-DG_LOG_DOMAIN=__FILE__ \
$(EVOLUTION_DATA_SERVER_CFLAGS) \
$(GNOME_PLATFORM_CFLAGS) \
$(CHAMPLAIN_CFLAGS) \
$(GEOCLUE_CFLAGS) \
$(CLUTTER_CFLAGS) \
$(GTKHTML_CFLAGS)
libemiscwidgets_la_SOURCES = \
$(widgetsinclude_HEADERS) \
e-account-combo-box.c \
e-action-combo-box.c \
e-activity-bar.c \
e-activity-proxy.c \
e-alert-bar.c \
e-attachment.c \
e-attachment-button.c \
e-attachment-dialog.c \
e-attachment-handler.c \
e-attachment-handler-image.c \
e-attachment-handler-sendto.c \
e-attachment-icon-view.c \
e-attachment-paned.c \
e-attachment-store.c \
e-attachment-tree-view.c \
e-attachment-view.c \
e-auth-combo-box.c \
e-buffer-tagger.c \
e-calendar.c \
e-calendar-item.c \
e-canvas.c \
e-canvas-background.c \
e-canvas-utils.c \
e-canvas-vbox.c \
e-cell-renderer-combo.c \
e-charset-combo-box.c \
e-combo-cell-editable.c \
e-contact-map.c \
e-contact-map-window.c \
e-contact-marker.c \
e-dateedit.c \
e-focus-tracker.c \
e-image-chooser.c \
e-import-assistant.c \
e-map.c \
e-menu-tool-action.c \
e-menu-tool-button.c \
e-online-button.c \
e-paned.c \
e-picture-gallery.c \
e-popup-action.c \
e-port-entry.c \
e-preferences-window.c \
e-preview-pane.c \
e-printable.c \
e-search-bar.c \
e-searching-tokenizer.c \
e-selectable.c \
e-selection-model.c \
e-selection-model-array.c \
e-selection-model-simple.c \
e-send-options.c \
e-signature-combo-box.c \
e-signature-editor.c \
e-signature-manager.c \
e-signature-preview.c \
e-signature-script-dialog.c \
e-signature-tree-view.c \
e-url-entry.c \
e-web-view.c \
e-web-view-preview.c \
ea-calendar-cell.c \
ea-calendar-item.c \
ea-cell-table.c \
ea-widgets.c
libemiscwidgets_la_LDFLAGS = $(NO_UNDEFINED)
libemiscwidgets_la_LIBADD = \
$(top_builddir)/e-util/libeutil.la \
$(top_builddir)/filter/libfilter.la \
$(top_builddir)/a11y/libevolution-a11y.la \
$(top_builddir)/libgnomecanvas/libgnomecanvas.la \
$(EVOLUTION_DATA_SERVER_LIBS) \
$(GNOME_PLATFORM_LIBS) \
$(MATH_LIB) \
$(ICONV_LIBS) \
$(CHAMPLAIN_LIBS) \
$(GEOCLUE_LIBS) \
$(CLUTTER_LIBS) \
$(GTKHTML_LIBS)
noinst_PROGRAMS = \
test-calendar \
test-dateedit \
test-preferences-window
test_widgets_misc_CPPFLAGS= \
$(AM_CPPFLAGS) \
-I$(top_srcdir) \
-I$(top_srcdir)/filter \
-I$(top_srcdir)/widgets \
-DEVOLUTION_IMAGESDIR=\""$(imagesdir)"\" \
-DG_LOG_DOMAIN=__FILE__ \
$(EVOLUTION_DATA_SERVER_CFLAGS) \
$(GNOME_PLATFORM_CFLAGS)
# test-calendar
test_calendar_CPPFLAGS = $(test_widgets_misc_CPPFLAGS)
test_calendar_SOURCES = \
test-calendar.c
test_calendar_LDADD = \
libemiscwidgets.la \
$(top_builddir)/e-util/libeutil.la \
$(top_builddir)/filter/libfilter.la \
$(EVOLUTION_DATA_SERVER_LIBS) \
$(GNOME_PLATFORM_LIBS)
# test-dateedit
test_dateedit_CPPFLAGS = $(test_widgets_misc_CPPFLAGS)
test_dateedit_SOURCES = \
test-dateedit.c
test_dateedit_LDADD = \
libemiscwidgets.la \
$(top_builddir)/e-util/libeutil.la \
$(top_builddir)/filter/libfilter.la \
$(EVOLUTION_DATA_SERVER_LIBS) \
$(GNOME_PLATFORM_LIBS)
# test-preferences-window
test_preferences_window_CPPFLAGS = $(test_widgets_misc_CPPFLAGS)
test_preferences_window_SOURCES = \
test-preferences-window.c
test_preferences_window_LDADD = \
libemiscwidgets.la \
$(top_builddir)/e-util/libeutil.la \
$(top_builddir)/filter/libfilter.la \
$(EVOLUTION_DATA_SERVER_LIBS) \
$(GNOME_PLATFORM_LIBS)
EXTRA_DIST = $(ui_DATA)
-include $(top_srcdir)/git.mk