aboutsummaryrefslogtreecommitdiffstats
path: root/modules/addressbook/e-book-shell-content.c
Commit message (Collapse)AuthorAgeFilesLines
* Consolidate base utility libraries into libeutil.Matthew Barnes2012-12-131-3/+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.
* Coding style and whitespace cleanup.Matthew Barnes2012-11-111-2/+2
|
* Do not call g_object_notify() when property didn't changeMilan Crha2012-06-181-0/+9
|
* Adapt modules/addressbook to the new ESource API.Matthew Barnes2012-06-031-0/+8
|
* WebKit port - port formatter and mail moduleDan Vrátil2012-03-291-9/+0
|
* Miscellaneous EShellView-related cleanups.Matthew Barnes2011-12-081-47/+38
|
* Addressbook module GSettings migrationRodrigo Moya2011-11-021-12/+6
|
* Do not use deprecated EBook/ECal APIMilan Crha2011-06-301-1/+1
|
* Coding style and whitespace cleanups.Matthew Barnes2011-06-301-1/+2
|
* Bug #642557 - Display maps in contact previewDan Vrátil2011-06-301-1/+55
|
* Bug #646109 - Fix use of include <config.h> to make sure translations workMilan Crha2011-06-301-0/+4
|
* Fix compiler warnings.Matthew Barnes2011-06-301-2/+0
| | | | Mostly dead assignments.
* Restore lockdown integration.Matthew Barnes2011-06-301-1/+0
| | | | | | | | | | | | | 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.
* Coding style and whitespace cleanup.Matthew Barnes2011-06-301-1/+3
|
* Bug #614480 - Avoid using G_TYPE_INSTANCE_GET_PRIVATE repeatedlyMilan Crha2011-06-301-9/+4
|
* Coding style and whitespace cleanup.Matthew Barnes2011-06-301-1/+0
|
* Bug #255973 - Contact preview waste space and cosmetic correctionDan Vrátil2011-06-301-0/+11
|
* Replace EBinding with GBinding.Matthew Barnes2010-10-141-3/+8
| | | | | | GObject now does property bindings itself. Requires GLib >= 2.26.
* Pass an EShell to EMsgComposer instances.Matthew Barnes2010-08-141-1/+10
| | | | Reduce the composer's dependency on e_shell_get_default().
* EShellContent: Add a focus_search_results() method.Matthew Barnes2010-06-251-0/+13
| | | | | This gives EShellSearchbar something concrete to call to direct focus away from itself instead of tabbing forward and hoping for the best.
* Bug 613038 - Preview pane size not rememberedMatthew Barnes2010-05-291-13/+31
| | | | | | | Converted size restoration of all preview panes to be triggered by EShellWindow::shell-view-created signal. The signal is emitted when the view is fully initialized and visible. Shell views can use that as a trigger for restoring pane sizes from GConf.
* Miscellaneous cleanup bits from WebKit branch.Matthew Barnes2010-04-021-0/+7
|
* Bug #325121 - Do not translate developer strings in g_param_spec_*Milan Crha2010-04-021-6/+6
|
* Simplify the search UI for express mode.Matthew Barnes2010-03-271-1/+3
| | | | | | | | | | | | | | | For express mode: - Move the search bar up to the toolbar. - Hide the "filter" combo box and lock down the first item. - Hide the "scope" combo box and lock down the first item. (This is the combo box with "Current Folder" only in the mailer.) - EShellView owns the search bar widget now instead of EShellContent. - Insert several nasty hacks that will likely come back to bite me.
* Give all preview panes a search bar.Matthew Barnes2010-01-181-30/+31
| | | | Use Shift+Ctrl+F as the accelerator for consistency with the mailer.
* Introduce ESelectable and EFocusTracker.Matthew Barnes2009-12-261-31/+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/+43
| | | | | | | | | | | | | | | | | 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-1/+29
|
* Prefer EWebView calls over direct GtkHTML calls.Matthew Barnes2009-11-181-8/+4
|
* Bug 601774 - "Send Message to Contact" is always disabledMatthew Barnes2009-11-141-1/+55
|
* EWebView popup menu enhancements.Matthew Barnes2009-11-141-7/+23
| | | | Bumps the GtkHtml dependency to 3.29.2 for gtk_html_unselect_all().
* Simplify clipboard handling in addressbook.Matthew Barnes2009-11-121-0/+6
|
* 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.
* Add vertical view to Contacts.Matthew Barnes2009-08-281-28/+77
|
* Radically reorganize source code.Matthew Barnes2009-06-251-0/+492
- 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.