aboutsummaryrefslogtreecommitdiffstats
path: root/mail/e-mail-notebook-view.c
Commit message (Collapse)AuthorAgeFilesLines
* Coding style and whitespace cleanup.Matthew Barnes2012-08-201-6/+7
|
* express: Remove clutter-based email tabs.Matthew Barnes2012-08-111-627/+0
| | | | | | This was another MeeGo feature. MeeGo is dead, the code is starting to bit rot and crashes on startup, the original author disappeared and the remaining developers are not interested in maintaining it. So it's out.
* WebKit port - port formatter and mail moduleDan Vrátil2012-03-291-11/+7
|
* Coding style and whitespace cleanup.Matthew Barnes2012-02-201-18/+29
|
* Introduce libemail-engine and libemail-utils.Matthew Barnes2012-01-191-1/+1
| | | | | | | These libraries are bound for E-D-S so they live at the lowest layer of Evolution for now -- even libeutil can link to them (but please don't). This is the first step toward moving mail handing to a D-Bus service.
* Add EMailReader.get_preview_pane() method.Matthew Barnes2011-11-221-18/+18
| | | | | Also give EMailReader::show-search-bar signal a default implementation, since it can now dig up the search bar widget itself.
* Mail widget cleanups.Matthew Barnes2011-11-221-78/+122
|
* Make EMailNotebookView and EMailPanedView extensible.Matthew Barnes2011-11-221-1/+5
| | | | Since they each implement EMailReader.
* Coding style and whitespace cleanup.Matthew Barnes2011-09-041-39/+47
|
* Coding style and whitespace cleanup.Matthew Barnes2011-08-131-1/+1
|
* Limit the size of tab labels to a reasonable sizeGustavo Noronha Silva2011-06-281-0/+41
| | | | | | | | | | We use half the size allocated to the whole view as a reference, and force the label to be at most that size, taking advantage of ellipsis otherwise. Notice that we also force the natural size as the requested size if it is not too big as well, because labels ellipsisized using the minimum size usually, which is undesired. This is a fix for https://bugs.meego.com/show_bug.cgi?id=18313
* Remove unused variables reported by gccMilan Crha2011-06-141-8/+1
|
* Coding style and whitespace cleanups.Matthew Barnes2011-06-091-6/+13
|
* Including <glib.h> directly is rarely needed.Matthew Barnes2011-05-281-1/+0
|
* Bug #646109 - Fix use of include <config.h> to make sure translations workMilan Crha2011-05-271-1/+1
|
* Bug 650587 - Hide Search Folder actions when Search Folders are disabledMatthew Barnes2011-05-211-0/+3
| | | | | | | | | | | | | | | | Add an action group for Search Folders to EMailReader. The action group's visibility is bound to the "mail-enable-search-folders" setting, so that menu items related to Search Folders are hidden when Search Folders are disabled in GConf. Affected menu items are: Edit -> Search Folders Message -> Create Rule -> Search Folder from Subject... Message -> Create Rule -> Search Folder from Sender... Message -> Create Rule -> Search Folder from Recipients... Message -> Create Rule -> Search Folder from Mailing List... Search -> Create Search Folder From Search...
* EMailReader: Support multiple action groups.Matthew Barnes2011-05-211-3/+13
| | | | | | Use an enum type to request different action groups. For now we just have E_MAIL_READER_ACTION_GROUP_STANDARD. EMailReader implementations should map the enum value to an appropriate GtkActionGroup.
* Coding style cleanups.Matthew Barnes2011-05-091-27/+27
|
* Use e_mail_folder_uri_from_folder() instead of camel_folder_get_uri().Matthew Barnes2011-05-041-3/+7
|
* Remove e_mail_reader_get_folder_uri().Matthew Barnes2011-05-041-8/+27
| | | | | Instead call e_mail_reader_get_folder() and, if you really need to, generate the folder URI with e_mail_folder_uri_from_folder().
* Fix compiler warnings.Matthew Barnes2011-05-031-2/+0
| | | | Mostly dead assignments.
* EMailShellView: Open the selected folder ourselves.Matthew Barnes2011-05-031-6/+8
| | | | | | | | | | | | | | | | | This one's a little involved: - EMailShellView now obtains a CamelFolder itself in response to EMFolderTree::folder-selected signals. Uses EActivity to do so. - Revise EMFolderTree::folder-selected signal arguments to be more useful: emit a CamelStore object instead of a folder URI. - Also revise EMFolderTree::folder-activiated signal arguments the same way while we're at it. - Remove the "folder_uri" argument from e_mail_reader_set_folder(). If you have a CamelFolder object you can obtain the URI string by calling camel_folder_get_uri().
* Coding style and whitespace cleanup.Matthew Barnes2011-03-061-1/+2
|
* Bug #614480 - Avoid using G_TYPE_INSTANCE_GET_PRIVATE repeatedlyMilan Crha2011-02-251-26/+22
|
* Bug #642121 - Won't build with --with-clutter due missing includeDan Vrátil2011-02-181-0/+1
|
* Remove NULL checks for GObject methods.Matthew Barnes2011-02-131-2/+2
| | | | | As of GLib 2.28 all GObject virtual methods, including constructed(), are safe to chain up to unconditionally. Remove unnecessary checks.
* Bug 641756 - Fix warnings from GCC 4.6Kjartan Maraas2011-02-091-4/+3
| | | | GCC learned how to find dead assignments.
* Free/busy meeting view doesn't work due to non-working extensionMilan Crha2010-12-061-0/+3
|
* EMailReader: Add a get_alert_sink() method.Matthew Barnes2010-11-011-0/+15
|
* Reduce GConf usage in em-composer-utils.c.Matthew Barnes2010-10-201-2/+49
| | | | | | | | | | | | | | | | | | 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.
* Give MailSession a permanent home.Matthew Barnes2010-10-131-13/+15
| | | | | | | | | | | 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.
* Coding style and whitespace cleanup.Matthew Barnes2010-10-041-1/+2
|
* Coding style cleanups.Matthew Barnes2010-09-131-45/+45
|
* Mail module + EMailView cleanups.Matthew Barnes2010-08-271-5/+5
|
* GObject boilerplate cleanup.Matthew Barnes2010-08-251-13/+13
| | | | | | | Prefer thread-safe G_DEFINE_TYPE and G_DEFINE_INTERFACE macros over manual GType registration. This is just a start... lots more to do.
* Whitespace and coding style cleanup.Matthew Barnes2010-08-141-39/+39
|
* Add keybindings to tab.Srinivasa Ragavan2010-08-121-3/+116
| | | | | | Control Up - Go to parent folder. Control Shift Up/Down - prev/next tab Control Shift w - close tab.
* Change the order of histogram. New things at the right.Srinivasa Ragavan2010-08-111-14/+11
|
* Add Histogram of mail trend in clutter tab and enable DnD of tabs.Srinivasa Ragavan2010-08-111-11/+104
|
* Coding style and whitespace cleanup.Matthew Barnes2010-08-031-42/+106
|
* More code cleanup.Matthew Barnes2010-07-271-202/+152
|
* Coding style and whitespace cleanup.Matthew Barnes2010-07-261-285/+322
|
* Bug 624534 - Adapt to GTK+ GtkNotebookPage changesKjartan Maraas2010-07-261-1/+1
|
* More usable tab switching logic than just vannina appendSrinivasa Ragavan2010-07-261-11/+38
|
* Fix a compilation errorSrinivasa Ragavan2010-07-261-2/+2
|
* Make clutter mode even more appealing.Srinivasa Ragavan2010-07-261-27/+12
|
* Add animations for selecting mail and search.Srinivasa Ragavan2010-07-261-2/+14
|
* Select folder tree based on the tab selected.Srinivasa Ragavan2010-07-261-3/+14
|
* Fix tab close issues in gtk & clutter mode.Srinivasa Ragavan2010-07-261-8/+27
|
* Add more clutter effects. Fade while selecting pages etc.Srinivasa Ragavan2010-07-261-7/+178
|
* Add tab-close functionality in Mx.Srinivasa Ragavan2010-07-261-8/+65
|
* Make search work wellSrinivasa Ragavan2010-07-261-0/+2
|
* Redo everything with optional clutter support.Srinivasa Ragavan2010-07-261-42/+67
|
* Build awesome clutter/Mx based tab'ed mail reader.Srinivasa Ragavan2010-07-261-27/+275
|
* Add folder pane for tabbed browser.Srinivasa Ragavan2010-07-261-17/+203
|
* Make the update-actions work across tabs.Srinivasa Ragavan2010-07-261-0/+31
|
* Unique folder tabsSrinivasa Ragavan2010-07-261-1/+25
|
* Add EMailNotebook ViewSrinivasa Ragavan2010-07-261-18/+274
|
* New set of basic viewsSrinivasa Ragavan2010-07-261-0/+75