aboutsummaryrefslogtreecommitdiffstats
path: root/modules/addressbook/e-book-shell-view-actions.c
Commit message (Collapse)AuthorAgeFilesLines
* EShellView: Add a "view-instance" property.Matthew Barnes2013-07-061-26/+0
| | | | | | | | | | | | | | EShellView now holds a reference to the active GalViewInstance. Where applicable, the EShellView subclass is responsible for keeping this up to date when the sidebar selection changes. Holding a reference allows EShellView to implement common actions like "Save Current View" directly instead pushing it on to subclasses. New functions: e_shell_view_get_view_instance e_shell_view_set_view_instance
* Contacts view: Add 'Refresh' into books context menuMilan Crha2013-07-011-0/+67
| | | | Done as part of bug #700894
* EBookShellView: Use EClientCache to obtain an EClient.Matthew Barnes2013-02-181-3/+28
|
* Use e_book_client_connect().Matthew Barnes2013-01-301-14/+27
| | | | Instead of e_client_utils_open_new() and e_book_client_new().
* Avoid deprecated libedataserver APIs.Matthew Barnes2013-01-151-4/+4
| | | | I forgot to include this in 3.7.4, but no matter.
* Consolidate base utility libraries into libeutil.Matthew Barnes2012-12-131-6/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Evolution consists of entirely too many small utility libraries, which increases linking and loading time, places a burden on higher layers of the application (e.g. modules) which has to remember to link to all the small in-tree utility libraries, and makes it difficult to generate API documentation for these utility libraries in one Gtk-Doc module. Merge the following utility libraries under the umbrella of libeutil, and enforce a single-include policy on libeutil so we can reorganize the files as desired without disrupting its pseudo-public API. libemail-utils/libemail-utils.la libevolution-utils/libevolution-utils.la filter/libfilter.la widgets/e-timezone-dialog/libetimezonedialog.la widgets/menus/libmenus.la widgets/misc/libemiscwidgets.la widgets/table/libetable.la widgets/text/libetext.la This also merges libedataserverui from the Evolution-Data-Server module, since Evolution is its only consumer nowadays, and I'd like to make some improvements to those APIs without concern for backward-compatibility. And finally, start a Gtk-Doc module for libeutil. It's going to be a project just getting all the symbols _listed_ much less _documented_. But the skeletal structure is in place and I'm off to a good start.
* e-book-shell-view-actions.c: Support deleting remote resources.Matthew Barnes2012-08-031-6/+18
|
* action_address_book_new_cb(): Fix a runtime warning.Matthew Barnes2012-07-261-1/+1
|
* Adapt modules/addressbook to the new ESource API.Matthew Barnes2012-06-031-63/+35
|
* Missed one.Matthew Barnes2012-04-221-4/+8
|
* Adapt to libedataserver[ui] changes.Matthew Barnes2012-04-221-5/+12
|
* Move EAlert* and e-xml-utils references from other part of the code to ↵Srinivasa Ragavan2012-03-031-1/+1
| | | | libevolution-utils.
* Miscellaneous EShellView-related cleanups.Matthew Barnes2011-12-081-11/+20
|
* Fix compiler warnings.Matthew Barnes2011-11-231-1/+0
|
* Addressbook module GSettings migrationRodrigo Moya2011-11-021-9/+8
|
* Coding style and whitespace cleanup.Matthew Barnes2011-09-141-6/+6
|
* Do not use deprecated EBook/ECal APIMilan Crha2011-06-301-34/+34
|
* Coding style and whitespace cleanups.Matthew Barnes2011-06-301-16/+16
|
* Little text typo fixMilan Crha2011-06-301-1/+1
|
* Bug #642557 - Display maps in contact previewDan Vrátil2011-06-301-1/+163
|
* Bug #646109 - Fix use of include <config.h> to make sure translations workMilan Crha2011-06-301-0/+4
|
* Restore lockdown integration.Matthew Barnes2011-06-301-12/+12
| | | | | | | | | | | | | With lockdown settings available through GSettings, widgets can handle lockdown integration themselves without having to use EShellSettings. Also fixed a few places where printing or save-to-disk actions were either not properly wired up or not responding to lockdown settings, but much more work needs done. Attachments, for example, are not honoring the disable-save-to-disk setting at all. This too requires the recently-added gsettings-desktop-schemas dependency.
* Bug #639483 - Category list includes weather informationMilan Crha2011-06-301-1/+1
|
* Utilize the new ESourceSelector:primary-selection property.Matthew Barnes2010-11-101-2/+2
|
* Replace EBinding with GBinding.Matthew Barnes2010-10-141-4/+6
| | | | | | GObject now does property bindings itself. Requires GLib >= 2.26.
* Pass an EShell to EMsgComposer instances.Matthew Barnes2010-08-141-2/+18
| | | | Reduce the composer's dependency on e_shell_get_default().
* Bug #567304 - Review strings for translationMilan Crha2010-04-071-1/+5
|
* Bug 612792 - Crash when trying to delete WebDav addressbookMatthew Barnes2010-03-151-1/+1
|
* Add DnD support to e-selection.c.Matthew Barnes2010-02-091-1/+1
| | | | | | Avoid listing calendar and directory targets explicitly, so that e-selection.c contains the one and only master list. Still need to figure out how to centralize "text/x-source-vcard".
* Implement account-wide search scope in mail.Matthew Barnes2010-02-071-16/+10
| | | | Also, let EShellSearchbar handle search state persistence.
* Give all preview panes a search bar.Matthew Barnes2010-01-181-10/+27
| | | | Use Shift+Ctrl+F as the accelerator for consistency with the mailer.
* Cleanup delete actions in shell views.Matthew Barnes2010-01-111-9/+2
|
* Coding style and whitespace cleanup.Matthew Barnes2009-12-261-2/+4
|
* Introduce ESelectable and EFocusTracker.Matthew Barnes2009-12-261-92/+0
| | | | | | | | | | | | | | | | | | 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.
* Refactor the EShell search API.Matthew Barnes2009-12-191-12/+20
| | | | | | | | | | | | | | | | | 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 #499322 - Use extension for "Save as" suggested file nameMilan Crha2009-12-101-2/+2
|
* Port all error code to use GObject-ified EAlert / EAlertDialogJonathon Jongsma2009-12-081-1/+1
| | | | | | 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.
* Rename EError to EAlert to match general use betterJonathon Jongsma2009-12-011-5/+5
| | | | | | | | | | 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-011-2/+2
| | | | | | This should be everything now. https://bugzilla.gnome.org/show_bug.cgi?id=602963
* 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.