aboutsummaryrefslogtreecommitdiffstats
path: root/modules/addressbook/e-book-shell-view-private.c
Commit message (Collapse)AuthorAgeFilesLines
* Bug 555325 - Delete key should not delete a whole address bookMatthew Barnes2012-08-181-22/+0
|
* Adapt modules/addressbook to the new ESource API.Matthew Barnes2012-06-031-26/+45
|
* Adapt to libedataserver[ui] changes.Matthew Barnes2012-04-221-3/+6
|
* Bug #665036 - Memory leaks spot in Contacts viewMilan Crha2012-01-041-0/+3
|
* Miscellaneous cleanups.Matthew Barnes2011-11-231-2/+2
|
* Bug #663286 - Changing view clears Contact previewMilan Crha2011-11-031-0/+24
|
* Coding style and whitespace cleanup.Matthew Barnes2011-08-131-20/+32
|
* Do not use deprecated EBook/ECal APIMilan Crha2011-06-141-19/+19
|
* Bug #646109 - Fix use of include <config.h> to make sure translations workMilan Crha2011-05-271-0/+4
|
* Show common addressbook and calendar errors in an alert sinkMilan Crha2010-12-151-2/+9
|
* Utilize the new ESourceSelector:primary-selection property.Matthew Barnes2010-11-021-1/+1
|
* Use new GDK keysym names if available.Matthew Barnes2010-09-181-1/+1
| | | | | | | In GTK+ 2.21.8, the keysym names were renamed from GDK_* to GDK_KEY_*. I've added backward-compatibility macors to gtk-compat.h, which can be dumped as soon as we require GTK+ >= 2.22.0.
* Use the new e_load_book_source_async() where possible.Matthew Barnes2010-08-191-29/+39
| | | | | | It's easier to use than addressbook_load() but requires starting with an ESource rather than an EBook, and there's a couple places left where that's not so easy. I'll spend more time on it later.
* fix lifecycle nasties bgo#625852Michael Meeks2010-08-031-25/+31
|
* Bug 625624 - Customizations of contacts views forgottenMatthew Barnes2010-07-301-0/+5
| | | | Found similar bugs in EShellMemoContent and EShellTaskContent.
* Bug #623204 - Be able to report detailed errors from backendsMilan Crha2010-07-091-4/+4
|
* Some more directories relocated on windowsFridrich Strba2010-03-111-0/+2
|
* Coding style and whitespace cleanup.Matthew Barnes2009-12-261-2/+6
|
* Bug #602998 - Contacts searches are supposed to be per address bookMilan Crha2009-12-111-0/+3
|
* Bug 595119 - Crash while trying to add a new category in contactMatthew Barnes2009-09-211-2/+2
|
* Introduce an EShellView::execute-search signal.Matthew Barnes2009-09-031-108/+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.
* Kill CalSearchBar.Matthew Barnes2009-07-281-3/+3
| | | | Move calendar search logic to ECalShellView.
* Bug 579702 – Contact changes not shown until restartMatthew Barnes2009-07-181-6/+12
|
* Add a "quit-requested" signal to the shutdown protocol.Matthew Barnes2009-07-131-4/+11
| | | | | | | 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/+621
- 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.