aboutsummaryrefslogtreecommitdiffstats
path: root/modules/mail
Commit message (Collapse)AuthorAgeFilesLines
...
* Bug 579598 - Change in view types (from Menu) is not workingMilan Crha2009-09-012-2/+2
|
* Bug 593685 - Insensitive actions after startMatthew Barnes2009-09-011-0/+2
|
* Get EConfig and EEvent hooks working again.Matthew Barnes2009-09-013-8/+21
| | | | | | | | | | | | | There were a number of problems: - Walk the GType tree to find EPluginHook subclasses, instead of just registering the immediate children. - Some EConfig and EEvent subclasses were not being configured properly (particularly the mail and calendar subclasses). - Add preference window pages after the main loop starts to make sure all plugins and plugin hooks are installed first.
* Simplify EPlugin loading at startup.Matthew Barnes2009-08-3013-152/+775
| | | | | | | | | | | | | - Require all EPlugin and EPluginHook subtypes be registered before loading plugins. This drastically simplifies the EPlugin/EPluginHook negotiation. - Turn most EPluginHook subtypes into GTypeModules and register their types from an e_module_load() function (does not include shell hooks). - Convert EPluginLib and the Mono and Python bindings to GTypeModules and register their types from an e_module_load() function, and kill EPluginTypeHook.
* Remove redundant "vertical view" functions.Matthew Barnes2009-08-283-65/+71
|
* Add vertical view to Memos and Tasks.Matthew Barnes2009-08-282-12/+5
|
* Add EPaned widget to generalize vertical view.Matthew Barnes2009-08-282-145/+20
|
* Fix preview pane size persistance.Matthew Barnes2009-08-282-22/+127
| | | | | | | | 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.
* Fix resize behavior of main window panes.Matthew Barnes2009-08-271-2/+2
| | | | | Now that I finally understand how the "resize" and "shrink" child properties in GtkPaned work. Was a real brain teaser for some reason.
* Switch between classic and vertical view using GtkOrientable.Matthew Barnes2009-08-261-18/+9
|
* Exit if no command-line URIs are handled.Matthew Barnes2009-08-251-1/+1
|
* BugĀ 567260 - Migrate from GnomeDruid to GtkAssistantMilan Crha2009-08-181-17/+17
|
* BugĀ 592032 - Marks message as read when preview is offMatthew Barnes2009-08-182-3/+14
|
* Fix compiler warnings and deprecated GTK+ API usage.Matthew Barnes2009-08-164-8/+5
|
* Bug #205137 - Configurable date formats in componentsMilan Crha2009-08-121-0/+7
|
* Seal up ESignature and add GObject properties.Matthew Barnes2009-08-071-1/+1
|
* Simplify binding EShellSettings properties to GConf keys.Matthew Barnes2009-08-011-405/+78
|
* Kill a debug message.Matthew Barnes2009-07-181-2/+0
|
* Implement the mail backend's quit strategy.Matthew Barnes2009-07-171-0/+203
|
* Prompt when exiting with unsent messages.Matthew Barnes2009-07-171-0/+48
|
* Fix excessive whitespace.Matthew Barnes2009-07-144-11/+0
|
* Kill the global EMailShellBackend variable. Yay!Matthew Barnes2009-07-142-15/+0
|
* Implement the shutdown protocol and stub in session management.Matthew Barnes2009-07-111-2/+0
| | | | | The shutdown protocol is modelled after online/offline preparation. Session management code is copied from libegg. Not yet used.
* Use an EShellSettings property for folder tree search.Matthew Barnes2009-07-112-0/+25
|
* Kill the last GtkOptionMenu instances.Matthew Barnes2009-07-033-108/+34
| | | | | | | Wrote a new widget (ECharsetComboBox) to replace e-charset-picker.c. The widget provides a "charset" string property that allows us to bind to GConf keys (via EShellSettings). Moved e_charset_add_radio_actions() to e-util/e-charset.c. Updated Glade files, #include lines, etc.
* Fix merge issues in EMAccountEditor.Matthew Barnes2009-07-023-63/+83
|
* Merge branch 'master' into kill-bonoboMatthew Barnes2009-07-011-0/+50
|
* Fix "make distcheck" errors and other build cleanups.Matthew Barnes2009-07-011-1/+1
|
* Get the "startup-wizard" plugin working again.Matthew Barnes2009-06-305-3229/+0
|
* Partial fix for bug #587014.Matthew Barnes2009-06-271-0/+54
| | | | Cursor now moves to the correct row, but row is not selected.
* Get the "mail-to-task" plugin working again.Matthew Barnes2009-06-261-4/+2
| | | | | This one was more challenging. It exposed some flaws in the new shell design and in EPluginUI, which is good because they're fixed now.
* Kill the "folder-unsubscribe" plugin.Matthew Barnes2009-06-263-1/+34
| | | | Feature is now integrated in core mailer, and has a main menu item.
* Radically reorganize source code.Matthew Barnes2009-06-2530-0/+16993
- 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.