aboutsummaryrefslogtreecommitdiffstats
path: root/modules/mail
Commit message (Collapse)AuthorAgeFilesLines
* Bug #637162 - May not add toolbar Send/Receive button multiple timesMilan Crha2010-12-141-22/+29
|
* Bug #631568 - Scheduling Meetings with CalDAV calendarsMilan Crha2010-12-081-0/+4
|
* Free/busy meeting view doesn't work due to non-working extensionMilan Crha2010-12-063-0/+21
|
* Bug 636265 - Trash is untranslated in the window titleMatthew Barnes2010-12-041-10/+16
|
* Add option "Check for new messages in all active accounts"Milan Crha2010-11-302-0/+16
| | | | As a follow-up for bug #633949
* Set mnemonic widget for lblDefaultCharset in Mail PreferencesMilan Crha2010-11-301-0/+1
|
* Bug #633949 - Add an option to disable new e-mail check at startupMilan Crha2010-11-302-0/+11
|
* Bug #207580 - Allow new mail check on individual accountsMilan Crha2010-11-265-20/+448
|
* Bug #633783 - Folder->Expunge enabled when no folder selectedMilan Crha2010-11-221-0/+4
|
* Bug #633779 - GtkComboBoxText issuesMilan Crha2010-11-181-12/+18
|
* Bug #632683 - Remove-duplicates should work on selectionMilan Crha2010-11-102-136/+0
|
* Coding style and whitespace cleanup.Matthew Barnes2010-11-081-3/+3
|
* Bug #632562 - Disabled account in preferences not remove in folder treeMilan Crha2010-11-031-1/+3
|
* EMailReader: Add a get_alert_sink() method.Matthew Barnes2010-11-011-0/+15
|
* Kill em_folder_utils_unsubscribe_folder().Matthew Barnes2010-11-012-2/+50
| | | | Use e_mail_session_unsubscribe_folder() instead.
* Bug 633172 - Folder->Subscriptions is always enabledMatthew Barnes2010-10-301-5/+14
|
* Bug #632767 - Some widgets removed from mail-config.uiMilan Crha2010-10-271-3/+1
|
* Bug #445439 - Delete mail from pop-server when deleted from Inbox/TrashMilan Crha2010-10-271-1/+1
|
* Fix capitalization in menu labels.Matthew Barnes2010-10-231-1/+1
|
* Simplify EActivity.Matthew Barnes2010-10-231-1/+3
| | | | | | | | | | | | | | | | | | | | | | With unintrusive error dialogs gone, we can cut some unnecessary bits out of EActivity. I'm also adding a new enum property called "state", which is one of: E_ACTIVITY_RUNNING E_ACTIVITY_WAITING E_ACTIVITY_CANCELLED E_ACTIVITY_COMPLETED The state of an activity must be explicitly changed. In particular, when the user cancels an activity the state should be set only after confirming the operation has been cancelled and not when cancellation is requested (e.g. after receiving a G_IO_ERROR_CANCELLED, not when the GCancellable emits "cancelled"). EActivityBar and EActivityProxy widgets have been updated to make this distinction clearer in the UI. E_ACTIVITY_WAITING will be used when activities have to be queued and dispatched in sequence, which I haven't written yet.
* Bug 632641 - Handle combo box text API going awayMatthias Clasen2010-10-211-5/+13
|
* Reduce GConf usage in em-composer-utils.c.Matthew Barnes2010-10-208-22/+205
| | | | | | | | | | | | | | | | | | To reduce GConf usage in em-composer-utils.c: - Relevant functions in em-composer-utils.c now take arguments for reply and forward styles. - Redundant forwarding functions were removed: em_utils_forward_attached() em_utils_forward_inline() em_utils_forward_quoted() - EMailReader now has "forward-style" and "reply-style" properties, which get bound to the appropriate EShellSettings properties in modules/mail/e-mail-config-reader.c. These same EShellSettings properties are bound to the combo boxes in Composer Preferences.
* Add an "ellipsize" property to EMFolderTree.Matthew Barnes2010-10-192-2/+55
| | | | | | So we don't have to access GConf directly from EMFolderTree. The property gets bound to an EShellSettings property, which is in turn bound to the "no_folder_dots" GConf key by way of a transform function.
* Collect mail enum types in e-mail-enums.h.Matthew Barnes2010-10-191-8/+8
| | | | | | | | | And generate GTypes for each of them in e-mail-enumtypes.[ch]. Also, the glib-gen.mak script forced me to add a <mail/e-mail.h> top-level header, which really isn't a bad idea anyway. TODO: We should do this for calendar and addressbook too.
* Move more account utilities to e-account-utils.c.Matthew Barnes2010-10-197-8/+3
|
* Kill mail_config_get_gconf_client().Matthew Barnes2010-10-193-11/+18
|
* Send errors to an EAlertSink instead of the task bar.Matthew Barnes2010-10-193-28/+33
| | | | | | This marks the end of unintrusive error dialogs, which were too unintrusive. We now show errors directly in the main window using the EAlert / EAlertSink framework.
* Bug #587011 - Integrate remove-duplicates into evolutionMilan Crha2010-10-152-0/+136
|
* Replace EBinding with GBinding.Matthew Barnes2010-10-1410-201/+282
| | | | | | GObject now does property bindings itself. Requires GLib >= 2.26.
* Bug 305425 - Toolbar cancel button is always sensitiveMatthew Barnes2010-10-141-0/+6
|
* EShellBackend: Respond to EShell::prepare-for-quit signals.Matthew Barnes2010-10-141-0/+14
| | | | | | | | | | | | Listen for "prepare-for-quit" signals from the shell and inhibit shutdown until all the activities we're tracking are finalized. Also, add a couple supporting functions: gboolean e_shell_backend_is_busy (EShellBackend *shell_backend); void e_shell_backend_cancel_all (EShellBackend *shell_backend); These will eventually replace mail_msg_active() and mail_cancel_all().
* Remove mail_tools_folder_to_url().Matthew Barnes2010-10-131-8/+4
| | | | Use camel_folder_get_uri() instead.
* Give MailSession a permanent home.Matthew Barnes2010-10-1315-123/+440
| | | | | | | | | | | Global variables in shared libraries are a bad idea. EMailBackend now owns the MailSession instance, which is actually now EMailSession. Move the blocking utility functions in mail-tools.c to e-mail-session.c and add asynchronous variants. Same approach as Camel. Replace EMailReader.get_shell_backend() with EMailReader.get_backend(), which returns an EMailBackend. Easier access to the EMailSession.
* Bug 588851 - Don't show unsubscribe option for local foldersMatthew Barnes2010-10-051-1/+3
|
* Coding style and whitespace cleanup.Matthew Barnes2010-10-041-4/+11
|
* Bug 510020 - Add "Manage Subscriptions" to store context menusMatthew Barnes2010-10-033-1/+28
|
* Rewrite the folder subscription editor.Matthew Barnes2010-10-032-5/+17
| | | | | Redesign the "Folder Subscriptions" dialog and use Camel's async API instead of the MailMsg infrastructure to simplify the implementation.
* camel_operation_new() now returns a GCancellable pointer.Matthew Barnes2010-09-292-8/+8
|
* Bug #629266 - Crash on search in Current AccountMilan Crha2010-09-291-7/+54
|
* Adapt to Camel API changes.Matthew Barnes2010-09-282-6/+5
|
* Pass GCancellable to Camel.Matthew Barnes2010-09-283-6/+12
|
* Use new GDK keysym names if available.Matthew Barnes2010-09-182-8/+11
| | | | | | | In GTK+ 2.21.8, the keysym names were renamed from GDK_* to GDK_KEY_*. I've added backward-compatibility macors to gtk-compat.h, which can be dumped as soon as we require GTK+ >= 2.22.0.
* Adapt to CamelOperation API changes.Matthew Barnes2010-09-152-7/+7
|
* Kill the subject-thread plugin.Matthew Barnes2010-09-152-0/+9
| | | | | | All this time I never realized the subject-thread plugin was nothing more than a stupid checkbox. The actual thread-by-subject code lives in the core mail library.
* Fix a crapload of run-time warnings.Matthew Barnes2010-09-153-12/+6
| | | | EConfig and EMAccountEditor are very, very brittle.
* mail-config.ui cleanups.Matthew Barnes2010-09-132-11/+11
| | | | | | - Fix GtkVBox orientations. - Reduce container widgets. - Remove unused widgets.
* Remove uninteresting mail options from Preferences.Matthew Barnes2010-09-131-92/+0
| | | | | | | | | | | | | | | | | | | Remove some options from Mail Preferences that aren't worth the screen real estate they take up. For now, the corresponding GConf keys still remain and are honored by Evolution. These same options were already removed for Express mode. Options removed are: [ ] Mark messages as read after XXX seconds [ ] Do not display messages when text size exceeds XXX KB [ ] Shrink To / Cc / Bcc headers to XXX addresses [ ] Enable Magic Spacebar [ ] Enable Search Folders
* Bug #580623 - Mishandling of evolution's proxy ignore_hosts keyMilan Crha2010-09-031-3/+76
|
* Convert composer autosave to an EExtension.Matthew Barnes2010-09-031-8/+0
| | | | | | | | | | | | | | | | | | | Given the way the autosave feature was awkwardly bolted on to the composer, an EExtension seemed like a natural fit. And it helped clean up some object lifecycle hacks (and bugs). What we have now is a new module consisting of two EExtensions: EComposerAutosave extends EMsgComposer and determines when to kick off an asynchronous autosave operation. EComposerRegistry extends EShell and offers to restore orphaned autosave files on startup (which is also asynchronous now). e-autosave-utils.c holds the actual asynchronous functions and a few other miscellaneous utility functions. Source code for the new module lives in /modules/composer-autosave.
* Coding style and whitespace cleanup.Matthew Barnes2010-08-296-37/+39
|
* Bug 628141 - Duplicate signal connections in EMailReaderMatthew Barnes2010-08-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | EMailShellContent implements the EMailReader interface but acts as a proxy for EMailPanedView, from which it obtains MessageList and EWebView widgets. The problem was both classes call e_mail_reader_init_private() which connects to signals emitted from the MessageList and EWebView widgets. But since EMailShellContent is a proxy for EMailPanedView, the signals were being connected twice. This commit does away with e_mail_reader_init_private(), instead adding options to e_mail_reader_init() to control what parts of initialization to run. It's an ugly and temporary hack. I'm beginning to realize EMailReader is too bloated and needs rethought. EMailReader should just manage actions. EMailView should own and manage the widgets, and EMailReader should just have a get_mail_view() method so it has access to those widgets. That way the EMailView subclasses won't have to implement EMailReader themselves and wind up allocating a bunch of duplicate, unused actions. It's too close to a stable release to rip these interfaces apart and reorganize them. I'll try to do that for 2.33 to help make the design more intuitive.
* Mail module + EMailView cleanups.Matthew Barnes2010-08-275-236/+364
|
* GObject boilerplate cleanup.Matthew Barnes2010-08-255-172/+49
| | | | | | | Prefer thread-safe G_DEFINE_TYPE and G_DEFINE_INTERFACE macros over manual GType registration. This is just a start... lots more to do.
* Fix more non-removal of signals on user_data object distruction byMichael Meeks2010-08-211-52/+52
| | | | using g_signal_connect_object in many places; fixes bgo#627525#
* Whitespace and coding style cleanup.Matthew Barnes2010-08-142-9/+40
|
* Fix a runtime warning.Matthew Barnes2010-08-141-2/+2
|
* Pass an EShell to EMsgComposer instances.Matthew Barnes2010-08-142-10/+34
| | | | Reduce the composer's dependency on e_shell_get_default().
* Defer the load / creation of configuration UI with changes toMichael Meeks2010-08-119-66/+62
| | | | | | | | | e_preferences_window to take factory callbacks and store a reference to the shell. - This makes start-up substantially faster, particularly on Atom (eg.). Remove a number of idle handlers used to create these UIs in the first instance, cleaning the code.
* More code cleanup.Matthew Barnes2010-07-273-21/+34
|
* Drop the "quote-from-selection" property.Matthew Barnes2010-07-261-6/+0
| | | | | David's solution is simpler: check if the HTML widget is mapped. Avoids having to propagate the property to Srini's new classes.
* Coding style and whitespace cleanup.Matthew Barnes2010-07-264-15/+13
|
* Fix right click issues.Srinivasa Ragavan2010-07-261-8/+63
|
* Add switch for tab & non-tab mode.Srinivasa Ragavan2010-07-261-1/+1
|
* Add folder pane for tabbed browser.Srinivasa Ragavan2010-07-261-3/+147
|
* Make the update-actions work across tabs.Srinivasa Ragavan2010-07-261-0/+18
|
* More bug fixes.Srinivasa Ragavan2010-07-261-1/+9
|
* Add EMailReader i/f recurrsive from tne Content.Srinivasa Ragavan2010-07-262-1/+86
|
* Rewrite the content piece of evolution.Srinivasa Ragavan2010-07-266-947/+47
|
* Add nag popup when mailing list hijacks private reply with Reply-To: headerDavid Woodhouse2010-07-162-0/+9
|
* Change 'Reply to All' toolbar button into configurable 'Group Reply'David Woodhouse2010-07-152-0/+9
| | | | | ...with a dropdown menu like the Forward button, and configuration for whether it tries to do 'Reply to List' by default.
* Add support for ignoring mailing list Reply-To: headersDavid Woodhouse2010-07-152-0/+9
|
* Warn on reply-to-all with too many recipientsDavid Woodhouse2010-07-152-0/+9
|
* Bug 624204 - Warn when replying privately to a mailing list messageDavid Woodhouse2010-07-152-0/+9
|
* Bug 624285 - When replying, ignore text selection if preview is hiddenMatthew Barnes2010-07-142-0/+26
|
* Bug 624128 - Folder -> Subscriptions is always enabledMatthew Barnes2010-07-121-1/+11
|
* Migrate from CamelException to GError.Matthew Barnes2010-07-092-23/+12
|
* EShellContent: Add a focus_search_results() method.Matthew Barnes2010-06-251-0/+11
| | | | | This gives EShellSearchbar something concrete to call to direct focus away from itself instead of tabbing forward and hoping for the best.
* Coding style and whitespace cleanup.Matthew Barnes2010-06-203-3/+3
|
* Bug 616724 - Initialize message window with threaded state of main windowMatthew Barnes2010-06-193-56/+26
|
* Bug 619098 - mail_shell_backend_sync_store_cb() has wrong signatureJonathon Jongsma2010-06-181-0/+1
|
* Bug 621839 - Improve auto-selection of messagesMatthew Barnes2010-06-171-20/+7
|
* Bug 501534 - apply new customized view to all foldersChenthill Palanisamy2010-06-083-1/+21
|
* Bug 620602 - Next/prev shortcuts should focus message listMatthew Barnes2010-06-061-5/+2
|
* Convert "startup-wizard" to an EExtension.Matthew Barnes2010-06-031-3/+13
| | | | | | | | | | | | | | Convert the "startup-wizard" EPlugin to an EExtension, and fix up the importing UI a bit (but it still needs a lot more love). Importing progress is now shown directly in the GtkAssistant window. Define a new EConfigItem type (E_CONFIG_PAGE_PROGRESS) for creating progress pages in a GtkAssistant. Also, change EMAccountEditor semantics slightly: you now have to call e_config_create_window() manually after creating a new EMAccountEditor instance. This allows extra EConfigItems (specifications for the window content) to be added manually before the window is created.
* Keep chipping away at direct GtkHTML usage.Matthew Barnes2010-06-014-33/+38
| | | | | | | | | | EMFormatHTML now holds a sealed EWebView instead of a public GtkHTML, accessible through em_format_html_get_web_view(). Rename e_mail_reader_get_html_display() to e_mail_reader_get_formatter() and have it return an EMFormatHTML instead of an EMFormatHTMLDisplay, since that's usually the type you want (or else an EMFormat, but never an EMFormatHTMLDisplay).
* Use EWebView functions whenever possible.Matthew Barnes2010-05-311-1/+4
|
* Bug 613038 - Preview pane size not rememberedMatthew Barnes2010-05-291-14/+34
| | | | | | | Converted size restoration of all preview panes to be triggered by EShellWindow::shell-view-created signal. The signal is emitted when the view is fully initialized and visible. Shell views can use that as a trigger for restoring pane sizes from GConf.
* Revert "Work around another dropped gnome-icon-theme icon."Matthew Barnes2010-05-272-3/+3
| | | | | | | This reverts commit 43e2c871a418b560b391af00df2b10896055026c. Correct icon name is "mail-mark-notjunk". The previous fix got clobbered by the express2 merge.
* Coding style and whitespace cleanup.Matthew Barnes2010-05-271-1/+3
|
* Merge branch 'express2'Matthew Barnes2010-05-276-16/+37
|\
| * Coding style and whitespace cleanup.Matthew Barnes2010-05-251-20/+26
| |
| * Merge branch 'gnome-2-30' into express2Matthew Barnes2010-05-252-22/+35
| |\
| | * Bug 619010 - Mailer's crash avoidance features are brokenMatthew Barnes2010-05-192-22/+35
| | |
| * | Merge branch 'gnome-2-30' into express2Matthew Barnes2010-05-171-1/+1
| |\|
| | * Bug 618400 - "Mark All Messages as Read" shortcut missingMatthew Barnes2010-05-121-1/+1
| | |
| | * Revert "Work around another dropped gnome-icon-theme icon."Matthew Barnes2010-04-302-3/+3
| | | | | | | | | | | | | | | | | | This reverts commit edf6286a38279e6db82dee4da50e94c587f06e02. gnome-icon-theme got it wrong, not us. See bug #616954.
| | * Bug #603418 - Custom headers not displayed in message previewMilan Crha2010-04-263-130/+13
| | |
| | * Work around another dropped gnome-icon-theme icon.Matthew Barnes2010-04-232-3/+3
| | | | | | | | | | | | mail-mark-notjunk -> mail-mark-not-junk
| * | Bug #603418 - Custom headers not displayed in message previewMilan Crha2010-04-303-130/+13
| | |
| * | Work around another dropped gnome-icon-theme icon.Matthew Barnes2010-04-302-3/+3
| | | | | | | | | | | | mail-mark-notjunk -> mail-mark-not-junk
| * | Don't use gconf to store the names of widgets to hideFederico Mena Quintero2010-04-272-2/+13
| | | | | | | | | | | | | | | | | | That was just for development. Now we hardcode the lists of widgets. Signed-off-by: Federico Mena Quintero <federico@novell.com>
| * | Merge commit 'origin/gnome-2-30' into express2Michael Meeks2010-04-221-0/+1
| |\|
| | * Bug #615331 - Message list/Folder tree focus policy has changedMilan Crha2010-04-191-0/+1
| | |
| * | turn threading on by default for mail; un-conditionally.Michael Meeks2010-04-151-1/+1
| | |
| * | Merge branch 'express2' into express2-reduced-preferencesFederico Mena Quintero2010-04-101-0/+4
| |\ \
| | * | Merge gnome-2-30 into express2 to get bugfixesFederico Mena Quintero2010-04-101-0/+4
| | |\| | | | | | | | | | | | | | | | | | | | | Note that express2 got some documentation for EExtensible and friends, and that documentation is not in gnome-2-30 yet. We need to cherry-pick those commits into gnome-2-30 and elsewhere.
| | | * [win32] Be consistent in disabling the lockdown options.Fridrich Strba2010-04-081-0/+4
| | | |
| * | | Hide widgets for the composer's preferences in Express modeFederico Mena Quintero2010-04-091-0/+4
| | | | | | | | | | | | | | | | Signed-off-by: Federico Mena Quintero <federico@novell.com>
| * | | Hide widgets for the mailer's preferences in Express modeFederico Mena Quintero2010-04-091-0/+4
| |/ / | | | | | | | | | Signed-off-by: Federico Mena Quintero <federico@novell.com>
| * | Express: Composer always defaults to HTML modeMatthew Barnes2010-04-072-6/+24
| | | | | | | | | | | | | | | | | | Composer and signature editor always default to HTML in Express mode. Hide the corresponding composer preference. This will not affect the user preference in normal mode.
| * | Simplify the search UI for express mode.Matthew Barnes2010-04-071-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For express mode: - Move the search bar up to the toolbar. - Hide the "filter" combo box and lock down the first item. - Hide the "scope" combo box and lock down the first item. (This is the combo box with "Current Folder" only in the mailer.) - EShellView owns the search bar widget now instead of EShellContent. - Insert several nasty hacks that will likely come back to bite me. Conflicts: doc/reference/shell/eshell-sections.txt
| * | Add an extension to configure EWebView.Matthew Barnes2010-04-075-15/+134
| | | | | | | | | | | | | | | | | | | | | | | | | | | Make EWebView extensible and register an extension to automatically bind every EWebView instance to the appropriate EShellSettings. Conflicts: widgets/misc/e-web-view.c
| * | Add an extension to configure EMFormatHTML.Matthew Barnes2010-04-074-0/+129
| |/ | | | | | | | | Make EMFormatHTML extensible and register an extension to automatically bind every EMFormatHTML instance to the appropriate EShellSettings.
| * Bug #613354 - Folder->Mark all messages as read does not workMilan Crha2010-04-011-1/+5
| |
| * Fix build break due to GTK+ deprecations.Matthew Barnes2010-03-301-0/+4
| |
| * Start the mailer's folder sidebar with a reasonable widthFederico Mena Quintero2010-03-261-0/+84
| | | | | | | | | | | | | | We measure a sample string, and then clamp this to one fourth of the screen's width; we do some voodoo to guess the monitor we are in. Signed-off-by: Federico Mena Quintero <federico@novell.com>
* | Bug #546551 - Dialog for mark-all-read always mentions subfoldersMilan Crha2010-05-211-1/+5
| |
* | Bug 619010 - Mailer's crash avoidance features are brokenMatthew Barnes2010-05-192-22/+35
| |
* | Bug #499320 - Preview before import from command lineMilan Crha2010-05-191-0/+33
| |
* | Bug 618400 - "Mark All Messages as Read" shortcut missingMatthew Barnes2010-05-121-1/+1
| |
* | Coding style and whitespace cleanup.Matthew Barnes2010-05-021-9/+13
| |
* | Adapt to Camel API changes.Matthew Barnes2010-04-303-25/+14
| |
* | Revert "Work around another dropped gnome-icon-theme icon."Matthew Barnes2010-04-302-3/+3
| | | | | | | | | | | | This reverts commit edf6286a38279e6db82dee4da50e94c587f06e02. gnome-icon-theme got it wrong, not us. See bug #616954.
* | Bug #603418 - Custom headers not displayed in message previewMilan Crha2010-04-263-130/+13
| |
* | Camel is now GObject-based.Matthew Barnes2010-04-244-19/+19
| |
* | Work around another dropped gnome-icon-theme icon.Matthew Barnes2010-04-232-3/+3
| | | | | | | | mail-mark-notjunk -> mail-mark-not-junk
* | Bug #615331 - Message list/Folder tree focus policy has changedMilan Crha2010-04-191-0/+1
| |
* | Forgot to commit some bits.Matthew Barnes2010-04-081-4/+0
| |
* | Giant leap towards GSEAL compliance.Matthew Barnes2010-04-082-8/+20
| |
* | Adapt to Camel API changes.Matthew Barnes2010-04-041-6/+6
| |
* | Only #include Camel's top-level header.Matthew Barnes2010-04-039-21/+0
| |
* | Miscellaneous cleanup bits from WebKit branch.Matthew Barnes2010-04-021-15/+4
| |
* | Bug #325121 - Do not translate developer strings in g_param_spec_*Milan Crha2010-04-021-4/+4
| |
* | Bug #613354 - Folder->Mark all messages as read does not workMilan Crha2010-04-011-1/+5
| |
* | Express: Composer always defaults to HTML modeMatthew Barnes2010-03-302-6/+24
| | | | | | | | | | | | Composer and signature editor always default to HTML in Express mode. Hide the corresponding composer preference. This will not affect the user preference in normal mode.
* | Bug 468448 - Kill "Hide Read Messages" and "Hide Selected Messages"Matthew Barnes2010-03-283-97/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removed the following menu items under View: Hide Selected Messages Hide Read Messages Show Hidden Messages These options are confusing and don't fit with the rest of the mailer design. Hidden messages were tracked by folder in: ~/.evolution/mail/config/hidestate-<<folder-uri>> So by simply not loading those files any more we reveal all previously hidden messages and avoid any risk of lost messages. Also inverted "Hide Deleted Messages" to "Show Deleted Messages".
* | Simplify the search UI for express mode.Matthew Barnes2010-03-271-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For express mode: - Move the search bar up to the toolbar. - Hide the "filter" combo box and lock down the first item. - Hide the "scope" combo box and lock down the first item. (This is the combo box with "Current Folder" only in the mailer.) - EShellView owns the search bar widget now instead of EShellContent. - Insert several nasty hacks that will likely come back to bite me.
* | Fix build break due to GTK+ deprecations.Matthew Barnes2010-03-261-0/+4
| |
* | Ensure that the width of the mail sidebar is not too wideFederico Mena Quintero2010-03-261-1/+48
| | | | | | | | | | | | | | We just clamp this to one fourth of the screen's width; we do some voodoo to guess the monitor we are in. Signed-off-by: Federico Mena Quintero <federico@novell.com>
* | Clear one more instance of lockdown settingsFridrich Strba2010-03-241-0/+2
| |
* | Oops, remove debug printfFederico Mena Quintero2010-03-231-9/+0
| | | | | | | | Signed-off-by: Federico Mena Quintero <federico@novell.com>
* | Don't hardcode a width, but compute a suitable oneSrinivasa Ragavan2010-03-232-16/+10
| | | | | | | | | | | | | | | | | | | | | | | | We do this by measuring a template string, which contains a sample name for an email account. This is what normally gets displayed in the folder tree, so such a sample string should give a reasonable width. Signed-off-by: Federico Mena Quintero <federico@novell.com> Conflicts: modules/mail/e-mail-shell-sidebar.c
* | Start the mailer's folder sidebar with a reasonable widthFederico Mena Quintero2010-03-231-1/+16
| | | | | | | | Signed-off-by: Federico Mena Quintero <federico@novell.com>
* | Start the mailer's folder sidebar with a reasonable widthFederico Mena Quintero2010-03-231-0/+37
| | | | | | | | | | | | | | | | We do this by measuring a template string, which contains a sample name for an email account. This is what normally gets displayed in the folder tree, so such a sample string should give a reasonable width. Signed-off-by: Federico Mena Quintero <federico@novell.com>
* | Add an extension to configure EWebView.Matthew Barnes2010-03-235-15/+134
| | | | | | | | | | Make EWebView extensible and register an extension to automatically bind every EWebView instance to the appropriate EShellSettings.
* | [win32] Be consistent in disabling the lockdown options.Fridrich Strba2010-03-211-0/+2
| |
* | Add an extension to configure EMFormatHTML.Matthew Barnes2010-03-204-0/+129
|/ | | | | Make EMFormatHTML extensible and register an extension to automatically bind every EMFormatHTML instance to the appropriate EShellSettings.
* Shell and UI manager cleanups.Matthew Barnes2010-03-142-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | 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.)
* clean up the 'express' mode hooks for UI Managers and start toMichael Meeks2010-03-141-5/+1
| | | | | extend them to plugins - use a simple one-off boolean on the UI Manager instead of exhaustively trying to propagate this information everywhere.
* Restructure capplet stuffs and load only on express mode.Srinivasa Ragavan2010-03-142-2/+2
|
* Switch to anjal style on express mode.Srinivasa Ragavan2010-03-141-15/+18
|
* Integrate into new account button.Srinivasa Ragavan2010-03-142-1/+5
|
* Add generic 'express mode' conditionals to the UI XMLMichael Meeks2010-03-141-1/+4
|
* Some more directories relocated on windowsFridrich Strba2010-03-112-0/+3
|
* Bug 587014 - Magic space does not work as expectedMatthew Barnes2010-02-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | Neither ETree::key-press nor ETableItem::key-press signal definitions specify a GSignalAccumulator that terminates the signal emission when a handler returns TRUE, and Evolution 2.29 connects multiple handlers to ETree::key-press. When the space key is pressed, the first handler implements the magic space bar behavior and returns TRUE, which should terminate signal emission but doesn't because there's no accumulator function on the signal. So the second handler runs and checks for other keys besides space. It returns FALSE since it didn't handle the key press. End result: emission site gets back FALSE (from the second handler) as the return value, so it thinks the key press was not handled at all and invokes the fallback handler -- e_selection_model_toggle_single_row() -- which -unselects- the newly selected row, making it appear the next unread message was never selected. Several other ETable-related signals that return "handled" flags also lack GSignalAccumulator functions. I've made a note to myself to fix those as well.
* Bug 609836 - Add translator comments to ambiguous stringsMatthew Barnes2010-02-171-0/+2
|
* Bug 604542 - Skip non-system rules when building quick search menuMatthew Barnes2010-02-111-0/+2
|
* Bug 609404 - Quick search filter should work on current message list viewMatthew Barnes2010-02-101-8/+18
|
* Implement account-wide search scope in mail.Matthew Barnes2010-02-074-105/+438
| | | | Also, let EShellSearchbar handle search state persistence.
* Bug #606666 - Cannot move cursor with arrows in preview with caret modeMilan Crha2010-01-251-1/+1
|
* Bug 549558 - "Download Messages for Offline Usage" still sensitive in ↵Viswanath Sivakumar2010-01-221-1/+7
| | | | offline mode
* Bug 607608 - Empty Trash does not work unless Trash is selectedMatthew Barnes2010-01-223-35/+45
|
* Give all preview panes a search bar.Matthew Barnes2010-01-181-30/+15
| | | | Use Shift+Ctrl+F as the accelerator for consistency with the mailer.
* Remove dead assignments found by clang.Matthew Barnes2010-01-167-27/+1
|
* Bug 606250 - Remove usage of deprecated GTK+ symbolsMatthew Barnes2010-01-082-6/+6
| | | | Several GtkWidget macros were recently deprecated.
* Bug #549988 - "Empty Trash" in Trash popup empties all Trash foldersMilan Crha2010-01-061-4/+4
|
* Bug #597816 - Read/save search folders with labels properlyMilan Crha2010-01-052-2/+17
|
* Kill e_popup_menu().Matthew Barnes2010-01-051-2/+0
| | | | | The function is trivial and was only used from ETableHeaderItem. This also eliminates widgets/misc/e-gui-utils.[ch].
* Coding style and whitespace cleanup.Matthew Barnes2010-01-041-11/+17
|
* Compiler and linker flag cleanups.Matthew Barnes2009-12-281-2/+2
|
* Coding style and whitespace cleanup.Matthew Barnes2009-12-261-1/+2
|
* Introduce ESelectable and EFocusTracker.Matthew Barnes2009-12-263-53/+4
| | | | | | | | | | | | | | | | | | EFocusTracker tracks the input focus within a window and helps keep the sensitivity of "selectable" actions in the main menu up-to-date. Selectable actions include Cut, Copy, Paste, Select All and Delete. EFocusTracker has built-in support for widgets that implement the GtkEditable interface such as GtkEntry and GtkTextView. It also supports custom widgets that implement the ESelectable interface, which is a subset of GtkEditable and can apply to anything that displays selectable content (esp. tree views and ETables). This commit integrates EFocusTracker with EShellWindow, CompEditor, EMsgComposer, and ESignatureManager. It also bumps the GtkHTML requirement to 2.29.5 to utilize the new GtkhtmlEditor:html constructor property.
* Bug #329693 - Add contexts to translated "None" wordsMilan Crha2009-12-241-2/+4
|
* Remove some obsolete GConf keys.Matthew Barnes2009-12-194-138/+144
| | | | | | | | | /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-196-44/+81
| | | | | | | | | | | | | | | | | 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-193-1/+111
|
* Bug #593700 - Restore folder's last selected message as expectedMilan Crha2009-12-181-136/+0
|
* Bug #603184 - Various problems with search box in foldersMilan Crha2009-12-181-0/+3
|
* Kill MailSession's interactive flag.Matthew Barnes2009-12-171-3/+0
| | | | | | | | | | | | After analyzing this again I'm confident we really don't need it. The only state change is from FALSE to TRUE at startup, and that one-time event happens while the mail shell backend is starting up (see: e_shell_backend_start()). If a need arises to query for this in the future I'll extend the EShellBackend API with an e_shell_backend_started() function, but for now there's no need.
* Move MailFolderCache signal handlers to EMailBackend.Matthew Barnes2009-12-171-77/+0
| | | | | Move the MailFolderCache signal handlers from EMailShellBackend down to EMailBackend (in libevolution-mail.so) to share with Anjal.
* Introduce EMailBackend into libevolution-mail.Matthew Barnes2009-12-162-361/+158
| | | | | | | EMailBackend is an abstract subclass of EShellBackend that handles online and offline modes and application shutdown. Placing this in the shared mail library allows Anjal to reuse it. Evolution's mail module further extends this class as EMailShellBackend.
* Add MailFolderCache::folder-changed signalJonathon Jongsma2009-12-161-0/+55
| | | | | | | | | Yes, this signal is kind of an ugly monster. I'm not sure how to improve this significantly. But this commit removes the last EMFolderTreeModel and EShell dependencies from MailFolderCache, which is a big step towards splitting off the backend. https://bugzilla.gnome.org/show_bug.cgi?id=604627
* Remove mail-config, vfolder, and filter deps from mail-folder-cacheJonathon Jongsma2009-12-161-0/+22
| | | | | | | | | | | | | | | | | | Instead of pushing the updates to the right places, the folder cache simply emits the appropriate signals and other objects are responsible for listening and handling them appropriately. This allows us to cut down the dependencies of MailFolderCache significantly, which is a huge step towards allowing us to split it off for the backend. Another nice thing about this is that it allows us to trim a lot of 'public' api from the filter, vfolder, and config classes that were only used by the cache. Now that stuff can all be internal since they're pulling changes rather than having the changes pushed. The last remaining problematic dependency in MailFolderCache is EmFolderTreeModel. That is next on the chopping block. https://bugzilla.gnome.org/show_bug.cgi?id=604627
* Move mail migration code to libevolution-mail.so.Matthew Barnes2009-12-164-3142/+2
| | | | So Anjal can reuse it.
* Introduce EMailSidebar into libevolution-mail.Matthew Barnes2009-12-154-419/+23
| | | | | | 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.
* Bug #591938 - Update translator's commentsMilan Crha2009-12-101-0/+2
|
* Kill ETreeScrolled.Matthew Barnes2009-12-082-19/+50
| | | | | | | Kill ETreeScrolled and convert MessageList to an ETree subclass. ETreeScrolled is nothing but a GtkScrolledWindow containing an ETree. It adds nothing of value and actually makes customizing ETree harder.
* Port all error code to use GObject-ified EAlert / EAlertDialogJonathon Jongsma2009-12-085-6/+6
| | | | | | The changes are mainly including the e-alert-header.h header instead of just e-alert.h. This allows us to include e-alert.h in non-UI situations when necessary.
* Fixing widgets order and adding back mnemonics after glade removalMilan Crha2009-12-021-3/+3
|
* Expand the EMailReader interface so it's easier to use.Matthew Barnes2009-12-024-111/+87
| | | | | | | | Adds the following methods: CamelFolder * (*get_folder) (EMailReader *reader); const gchar * (*get_folder_uri) (EMailReader *reader); GPtrArray * (*get_selected_uids) (EMailReader *reader);
* Kill message_list_free_uids().Matthew Barnes2009-12-022-7/+7
| | | | Use em_utils_uids_free() instead.
* Merge bits and pieces of the anjal-evo-2-30 branch.Matthew Barnes2009-12-015-97/+86
|
* Rename EError to EAlert to match general use betterJonathon Jongsma2009-12-018-13/+12
| | | | | | | | | | The EError mechanism is used both for error dialogs as well as basic alerts or user prompts, so we should give it a more general name which matches this use. This patch also cleans up a few includes of e-alert.h (formerly e-error.h) that were not actually being used. https://bugzilla.gnome.org/show_bug.cgi?id=602963
* port modules/ to new EError API.Jonathon Jongsma2009-12-015-6/+6
| | | | | | This should be everything now. https://bugzilla.gnome.org/show_bug.cgi?id=602963
* Fixes a build break.Chenthill Palanisamy2009-11-301-0/+1
|
* Bug 602844 - Flags not saved to IMAP account on exitMatthew Barnes2009-11-252-0/+57
|
* Bug #579599 - Let the Advanced Search work againMilan Crha2009-11-194-71/+30
|
* Bug 589153 - Use GtkBuilder instead of libgladeMatthew Barnes2009-11-178-146/+147
|
* Whitespace cleanup.Matthew Barnes2009-11-151-1/+1
|
* Bug 600714 - No label colors in popup menuMatthew Barnes2009-11-142-7/+9
|
* Bug 600933 - Empty Trash missing for real trash foldersMatthew Barnes2009-11-141-0/+9
|
* Mark also create_combo_text_widget() for exportTor Lillqvist2009-11-121-1/+1
| | | | As it is used from mail/mail-config.glade.
* Fix a potential crash in the mail migration code.Matthew Barnes2009-11-111-1/+0
|
* Fix build for WindowsTor Lillqvist2009-11-111-2/+2
| | | | | Do compile some more parts of modules/mail/e-mail-shell-migrate.c. No idea whether any migration might actually work on Windows, of course.
* Bug 600926 - Fails to build due to missing dependenciesJonathon Jongsma2009-11-101-0/+4
|
* Bug 600926 - Fails to build due to missing dependenciesYan Li2009-11-101-1/+7
|
* Bug #597582 - Original Date: header should be given precedenceDavid Woodhouse2009-11-052-2/+13
|
* Fix few compiler warningsMilan Crha2009-11-031-1/+1
|
* Lets the saved searches to work.Chenthill Palanisamy2009-10-301-0/+13
|
* Bug 599837 - Junk plugin combo box is invisibleMatthew Barnes2009-10-301-2/+8
|
* Bug 600019 - Menu glitches when an account name is selectedMatthew Barnes2009-10-291-0/+12
|
* Bug #268644 - unread mail shortcut collides with gtk tree searchMilan Crha2009-10-291-0/+25
| | | | Re-applied, as it got lost on kill-bonobo merge
* Bug 599896 - Flush outbox option is missingMatthew Barnes2009-10-291-3/+1
| | | | This also reverts commit f5165c618ae2defb310a0ed4eab06dac7346a2b0.
* Don't update the message list when right-clicking on a folder.Matthew Barnes2009-10-282-5/+61
| | | | | | After the folder's context menu closes the folder tree selection jumps back to the folder whose contents are showing in the message list. Suggested by Philippe LeCavalier on evolution-list.
* Bug #550049 - Disable Mark messages as read actions when unusableMilan Crha2009-10-282-2/+70
|
* Cleanup and rename filter classes.Matthew Barnes2009-10-275-24/+24
|
* Prefer G_N_ELEMENTS over sizeof calculations.Matthew Barnes2009-10-273-3/+3
|
* Bug #397265 - Image loading for new contact requires restarting EvolutionMilan Crha2009-10-261-0/+1
|
* Bug #522783 - Signature separator for HTML E-mailsMilan Crha2009-10-161-0/+4
| | | | | | | | Reapplied patch from bug #551470, as this got dropped on merging. Be sure you all also gconftool-2 --install-schema-file=$PREFIX/etc/gconf/schemas/evolution-mail.schemas as new key had been added.
* Bug #594471 - Shouldn't call e_error_new/run with NULL 'parent'Milan Crha2009-10-133-25/+6
|
* Bug 595092 - Remove option to skip offline syncrhonization dialogMatthew Barnes2009-10-081-2/+1
|
* Bug #596824 - evolution hangs on start upMilan Crha2009-10-071-3/+1
|
* Enable File->Empty Trash menu item for all foldersMilan Crha2009-10-071-1/+8
|
* Bug 597151 - [regression] Folder doesn't get deleted properlyLucian Langa2009-10-031-2/+4
|
* Bug 596848 - Use per-target CPPFLAGS in automake filesH.Habighorst2009-10-011-3/+4
|
* Bug #596753 - Autocompletion addressbooks not rememberedMilan Crha2009-09-301-0/+1
| | | | And select page in Edit->Preferences based on the active view.
* Bug 593700 - Opens folder on topMatthew Barnes2009-09-291-0/+9
|
* Bug 596268 - Crash when sidebar was clicked while 'loading'Matthew Barnes2009-09-251-1/+1
|
* Fix duplicate symbols in Glade files.Matthew Barnes2009-09-253-3/+3
|
* Bug 594543 - Crash on folder/message changeMatthew Barnes2009-09-241-5/+5
| | | | Based on a patch by Milan Crha.
* Fix few valgrind claimsMilan Crha2009-09-221-1/+1
|
* Bug 595687 - Message list popup menu not activated by menu keyMatthew Barnes2009-09-201-0/+16
|
* Goodbye libgnome and libgnomeui!!Matthew Barnes2009-09-191-1/+3
|
* Bug 594017 - Crash on set preview visibleMilan Crha2009-09-131-1/+5
|
* Bug 594863 - Message body doesn't allow right click pop up menuMatthew Barnes2009-09-132-5/+60
|
* Bug 217066 - Rename folders directly inside folder listMatthew Barnes2009-09-131-4/+1
|
* Bug 593899 - "Create Search Folder from Search" does not workMatthew Barnes2009-09-111-2/+71
|
* Followup fix for bug #593905.Matthew Barnes2009-09-112-5/+3
|
* Bug 593905 - 'Subject or Addresses contains' search criteria missingMatthew Barnes2009-09-112-13/+5
|
* Require a parent window when creating an EMFolderSelector.Matthew Barnes2009-09-111-2/+14
|
* Bug #594573 - Label dropdown box in the rule editor does not workMatt McCutchen2009-09-101-1/+2
|
* Finish killing Bonobo.Matthew Barnes2009-09-093-7/+8
|
* Bug #586854 - Crash on File->Quit with empty_junk enabledRitesh Khadgaray2009-09-081-2/+2
|
* Bug 594284 - FTBFS: missing linksDiego Escalante Urrelo2009-09-061-0/+1
|
* Kill the default parent window hack in e-error.c.Matthew Barnes2009-09-051-1/+10
| | | | | | Fix as many cases that relied on it as I could find, but there may be more cases out there. They should be fixed too. Passing a NULL parent window to e_error_new() is illegal and will emit a runtime warning.
* Fix a runtime warning.Matthew Barnes2009-09-051-1/+3
|
* Copy folder tree state of 1st window when opening new windows.Matthew Barnes2009-09-042-3/+6
|
* Introduce an EShellView::execute-search signal.Matthew Barnes2009-09-034-312/+282
| | | | | | | | | | | | 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.
* Relax the EBinding API to reduce GObject casting.Matthew Barnes2009-09-026-130/+130
| | | | | Also make it more fault-tolerant by warning about non-existent property names instead of just crashing.
* Disable classic/vertical options when preview is hidden.Matthew Barnes2009-09-021-0/+8
|