aboutsummaryrefslogtreecommitdiffstats
path: root/modules/mail/e-mail-shell-content.h
Commit message (Collapse)AuthorAgeFilesLines
* Miscellaneous EShellView-related cleanups.Matthew Barnes2011-12-081-1/+1
|
* Coding style and whitespace cleanup.Matthew Barnes2010-08-291-1/+2
|
* Mail module + EMailView cleanups.Matthew Barnes2010-08-271-18/+1
|
* Rewrite the content piece of evolution.Srinivasa Ragavan2010-07-261-1/+2
|
* Bug 616724 - Initialize message window with threaded state of main windowMatthew Barnes2010-06-191-5/+0
|
* Remove some obsolete GConf keys.Matthew Barnes2009-12-191-3/+5
| | | | | | | | | /apps/evolution/mail/display/show_preview /apps/evolution/mail/display/thread_list These keys are no longer needed since we're storing the settings by folder now in ~/.evolution/mail/config/state. To simplify things we use hard-coded defaults: TRUE for PreviewVisible, FALSE for GroupByThreads.
* Refactor the EShell search API.Matthew Barnes2009-12-191-0/+4
| | | | | | | | | | | | | | | | | 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.
* Bug #596967 - Per-folder setting for threading and preview panelMilan Crha2009-12-191-0/+3
|
* Remove redundant "vertical view" functions.Matthew Barnes2009-08-281-5/+0
|
* Add EPaned widget to generalize vertical view.Matthew Barnes2009-08-281-5/+0
|
* Fix preview pane size persistance.Matthew Barnes2009-08-281-0/+5
| | | | | | | | The new packing style broke preview pane size restoration at startup. The fix is to store the size of the bottom GtkPaned child instead of the top child. Unfortunately GtkPaned does not make this easy. Will have to repeat this procedure for the other preview panes.
* Radically reorganize source code.Matthew Barnes2009-06-251-0/+94
- 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.