aboutsummaryrefslogtreecommitdiffstats
path: root/modules/mail/e-mail-shell-view-private.c
Commit message (Collapse)AuthorAgeFilesLines
* Some more directories relocated on windowsFridrich Strba2010-03-111-0/+2
|
* 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 604542 - Skip non-system rules when building quick search menuMatthew Barnes2010-02-111-0/+2
|
* Implement account-wide search scope in mail.Matthew Barnes2010-02-071-4/+55
| | | | Also, let EShellSearchbar handle search state persistence.
* Bug #606666 - Cannot move cursor with arrows in preview with caret modeMilan Crha2010-01-251-1/+1
|
* Introduce ESelectable and EFocusTracker.Matthew Barnes2009-12-261-0/+1
| | | | | | | | | | | | | | | | | | 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.
* Remove some obsolete GConf keys.Matthew Barnes2009-12-191-70/+0
| | | | | | | | | /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-7/+7
| | | | | | | | | | | | | | | | | 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/+70
|
* Kill ETreeScrolled.Matthew Barnes2009-12-081-3/+7
| | | | | | | 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.
* Expand the EMailReader interface so it's easier to use.Matthew Barnes2009-12-021-40/+36
| | | | | | | | 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-021-1/+1
| | | | Use em_utils_uids_free() instead.
* BugĀ 602844 - Flags not saved to IMAP account on exitMatthew Barnes2009-11-251-0/+54
|
* Don't update the message list when right-clicking on a folder.Matthew Barnes2009-10-281-1/+40
| | | | | | 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.
* Cleanup and rename filter classes.Matthew Barnes2009-10-271-7/+7
|
* Bug 594543 - Crash on folder/message changeMatthew Barnes2009-09-241-5/+5
| | | | Based on a patch by Milan Crha.
* Bug 595687 - Message list popup menu not activated by menu keyMatthew Barnes2009-09-201-0/+16
|
* Bug 594863 - Message body doesn't allow right click pop up menuMatthew Barnes2009-09-131-5/+40
|
* Fix a runtime warning.Matthew Barnes2009-09-051-1/+3
|
* Copy folder tree state of 1st window when opening new windows.Matthew Barnes2009-09-041-0/+5
|
* Introduce an EShellView::execute-search signal.Matthew Barnes2009-09-031-244/+0
| | | | | | | | | | | | 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.
* Bug 579598 - Change in view types (from Menu) is not workingMilan Crha2009-09-011-1/+1
|
* Bug 593685 - Insensitive actions after startMatthew Barnes2009-09-011-0/+2
|
* Merge branch 'master' into kill-bonoboMatthew Barnes2009-07-011-0/+50
|
* Partial fix for bug #587014.Matthew Barnes2009-06-271-0/+54
| | | | Cursor now moves to the correct row, but row is not selected.
* Radically reorganize source code.Matthew Barnes2009-06-251-0/+905
- 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.