aboutsummaryrefslogtreecommitdiffstats
path: root/modules/addressbook/e-book-shell-view.c
Commit message (Collapse)AuthorAgeFilesLines
* EShellView can load the GalViewCollection itself now.Matthew Barnes2013-07-061-34/+22
| | | | | | | | EShellView no longer needs help from subclasses other than getting the needed GalView subclasses registered. A nice side-effect of this is EShellView subclasses can now use the G_DEFINE_DYNAMIC_TYPE macro.
* Remove gal_view_collection_add_factory().Matthew Barnes2013-07-061-0/+6
| | | | | | No longer needed. Instead, use g_type_ensure() to ensure the necessary GalView subclasses are registered in the GType system before loading a GalViewCollection. Best place to ensure types is from GClassInitFunc.
* Contacts view: Add 'Refresh' into books context menuMilan Crha2013-07-011-0/+7
| | | | Done as part of bug #700894
* Enable "delete" action for remote-deletable sources.Matthew Barnes2012-08-031-1/+6
|
* Disable 'Rename' if source is a collection member.Matthew Barnes2012-06-151-4/+9
| | | | | | For consistency with the Preferences window. We assume the display names are server-assigned and not user-assigned, at least not assigned through Evolution.
* Adapt modules/addressbook to the new ESource API.Matthew Barnes2012-06-031-68/+12
|
* Miscellaneous EShellView-related cleanups.Matthew Barnes2011-12-081-4/+3
|
* Bug #663286 - Changing view clears Contact previewMilan Crha2011-11-031-3/+0
|
* Bug #646109 - Fix use of include <config.h> to make sure translations workMilan Crha2011-05-271-0/+4
|
* Miscellaneous GtkAction-related cleanups.Matthew Barnes2011-03-281-2/+2
| | | | Prefer the newer GtkAction "set" functions over g_object_set().
* Coding style and whitespace cleanup.Matthew Barnes2011-03-061-1/+3
|
* Bug #614480 - Avoid using G_TYPE_INSTANCE_GET_PRIVATE repeatedlyMilan Crha2011-02-251-5/+4
|
* Bug #639483 - Category list includes weather informationMilan Crha2011-02-181-1/+1
|
* fix lifecycle nasties bgo#625852Michael Meeks2010-08-031-2/+5
|
* Bug #603006 - Move All Contacts To enabled for read-only address booksMilan Crha2010-05-131-0/+4
|
* Give all preview panes a search bar.Matthew Barnes2010-01-181-0/+4
| | | | Use Shift+Ctrl+F as the accelerator for consistency with the mailer.
* Remove dead assignments found by clang.Matthew Barnes2010-01-161-6/+0
|
* Introduce ESelectable and EFocusTracker.Matthew Barnes2009-12-261-22/+3
| | | | | | | | | | | | | | | | | | 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-8/+15
| | | | | | | | | | | | | | | | | 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 #602998 - Contacts searches are supposed to be per address bookMilan Crha2009-12-111-8/+46
|
* Bug 602803 - New Contact enabled for read-only address booksMatthew Barnes2009-11-251-0/+8
|
* Bug #579599 - Let the Advanced Search work againMilan Crha2009-11-191-32/+35
|
* Disallow renaming a non-deletable ESource.Matthew Barnes2009-11-191-1/+1
| | | | This is a partial solution to bug #600397.
* Bug 600397 - Delete option enabled for undeletable ESourceMatthew Barnes2009-11-141-1/+4
|
* Bug 601769 - Print issues in address bookMatthew Barnes2009-11-141-4/+8
|
* Simplify clipboard handling in addressbook.Matthew Barnes2009-11-121-1/+4
|
* Bug 600402 - Clear search is always enabled in calendar/contact/taskMatthew Barnes2009-11-041-4/+1
|
* Cleanup and rename filter classes.Matthew Barnes2009-10-271-4/+4
|
* Introduce an EShellView::execute-search signal.Matthew Barnes2009-09-031-0/+107
| | | | | | | | | | | | 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.
* Radically reorganize source code.Matthew Barnes2009-06-251-0/+318
- 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.