aboutsummaryrefslogtreecommitdiffstats
path: root/modules/mail/e-mail-shell-view-private.h
Commit message (Collapse)AuthorAgeFilesLines
* Only #include Camel's top-level header.Matthew Barnes2010-04-031-6/+0
|
* Shell and UI manager cleanups.Matthew Barnes2010-03-141-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Replace the EVO_EXPRESS environment variable with an --express command line option. (Note, this adds a new translatable string for --help.) Add an EUIManager class with an "express-mode" property and custom load functions that use our new "express" preprocessor. This replaces the UI manager functions in e-utils.c. (Also going to see if I can get GTK+ to add an "add_ui_from_string" method to GtkUIManagerClass that we can override. Then we could just call gtk_ui_manager_add_ui_from_string() and the preprocessor would automatically do its thing and chain up.) Add an "express-mode" read-only GObject property to EShell. Add e_shell_configure_ui_manager() to e-shell-utils.c. For now this just creates a one-way property binding: EShell:express-mode -> EUIManager:express-mode Call this immediately after e_ui_manager_new(). (EUIManager can't do this itself because it lives too low in the dependency hierarchy and doesn't know about EShell.)
* Implement account-wide search scope in mail.Matthew Barnes2010-02-071-0/+10
| | | | Also, let EShellSearchbar handle search state persistence.
* Refactor the EShell search API.Matthew Barnes2009-12-191-0/+1
| | | | | | | | | | | | | | | | | Move the search interface to a new widget: EShellSearchbar The current search rule is now stored in EShellView, and the search context in EShellViewClass similar to GalViewCollection (since it's class-specific, not instance-specific). Also add a couple new signals to EShellView: "clear-search" and "custom-search" ("custom" refers to an advanced search or a saved search -- something more complex than a quick search). Still working out a few kinks. The search entry is clearly trying to be too many things. We need a different way of indicating that you're looking at search results. Perhaps a search results banner similar to Nautilus.
* Introduce EMailSidebar into libevolution-mail.Matthew Barnes2009-12-151-0/+1
| | | | | | EMailSidebar is a subclass of EMFolderTree that implements the state saving and restoration feature from EMailShellSidebar. Placing this in the shared mail library allows Anjal to reuse it.
* Merge bits and pieces of the anjal-evo-2-30 branch.Matthew Barnes2009-12-011-0/+1
|
* BugĀ 602844 - Flags not saved to IMAP account on exitMatthew Barnes2009-11-251-0/+3
|
* Bug #579599 - Let the Advanced Search work againMilan Crha2009-11-191-0/+1
|
* BugĀ 600714 - No label colors in popup menuMatthew Barnes2009-11-141-0/+1
|
* Cleanup and rename filter classes.Matthew Barnes2009-10-271-2/+2
|
* Bug 593905 - 'Subject or Addresses contains' search criteria missingMatthew Barnes2009-09-111-2/+1
|
* Finish killing Bonobo.Matthew Barnes2009-09-091-0/+1
|
* Introduce an EShellView::execute-search signal.Matthew Barnes2009-09-031-2/+5
| | | | | | | | | | | | This addresses bug #593896 but is also a cleaner design than before. It introduces an EShellView::execute-search signal and renames the "search-execute" action to "search-quick" to clarify that it's only meant for the "quick" search bar in the main window. Shell view subclasses should implement the execute_search() method to actually execute a search. e_shell_view_execute_search() emits the new signal.
* Radically reorganize source code.Matthew Barnes2009-06-251-0/+173
- Collect all shell modules into a new top-level 'modules' directory: $(top_srcdir)/modules/addressbook $(top_srcdir)/modules/calendar $(top_srcdir)/modules/mail Nothing is allowed to link to these, not plugins nor other modules. THIS SOLVES BUG #571275 AND OPENS THE DOOR TO PORTING TO MAC OS X. - Mimic the libevolution-mail-shared library from master (except drop the "shared" suffix) and have libevolution-mail-importers and all mail-related plugins link to it. - Discard the a11y subdirectories and have the files live alongside their counterpart widgets.