aboutsummaryrefslogtreecommitdiffstats
path: root/modules/addressbook/e-book-shell-view-actions.c
Commit message (Collapse)AuthorAgeFilesLines
* Bug #579599 - Let the Advanced Search work againMilan Crha2009-11-191-25/+15
|
* BugĀ 601769 - Print issues in address bookMatthew Barnes2009-11-141-22/+45
|
* EWebView popup menu enhancements.Matthew Barnes2009-11-141-13/+44
| | | | Bumps the GtkHtml dependency to 3.29.2 for gtk_html_unselect_all().
* Kill more redundant save dialogs and related utilities.Matthew Barnes2009-11-111-4/+8
|
* Convert some "Save As" actions to run asynchronously.Matthew Barnes2009-11-081-2/+116
| | | | | | | | | | This introduces e-shell-utils for miscellaneous utility functions that integrate with the shell or shell settings. First function is e_shell_run_save_dialog(), which automatically remembers the selected folder in the file chooser dialog. Also, kill some redundant save dialog functions, as well as some write-this-string-to-disk functions that block.
* Cleanup and rename filter classes.Matthew Barnes2009-10-271-1/+1
|
* Introduce an EShellView::execute-search signal.Matthew Barnes2009-09-031-28/+2
| | | | | | | | | | | | 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-021-4/+4
| | | | | 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
|
* Add vertical view to Contacts.Matthew Barnes2009-08-281-1/+69
|
* Fix some compiler warnings.Matthew Barnes2009-07-151-4/+4
|
* Add a "quit-requested" signal to the shutdown protocol.Matthew Barnes2009-07-131-2/+16
| | | | | | | The contact and contact-list editors now demonstrate this part of the shutdown protocol. They listen for the "quit-requested" signal from the shell and prompt to save changes, discard changes or cancel. If the user cancels, the editor calls e_shell_cancel_quit() to do just that.
* Radically reorganize source code.Matthew Barnes2009-06-251-0/+1011
- 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.