aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/widgets/eab-contact-formatter.c
Commit message (Collapse)AuthorAgeFilesLines
* Simplify EABContactFormatter.Matthew Barnes2013-05-211-246/+30
| | | | | | | | | | | | | | | | | | | | | | | | Simplify the EABContactFormatter API as follows: * Drop all constructor arguments from eab_contact_formatter_new() since get/set functions exist for all of them. * Remove eab_contact_formatter_format_contact_async() since EABContactFormatter does not block. * Replace eab_contact_formatter_format_contact_sync() with eab_contact_formatter_format_contact() which drops the CamelStream and GCancellable arguments and takes a GString as an output buffer. * Remove the "state" and "style" properties, and always use a white background when rendering the full contact. This is particularly important since render_normal() dereferenced the GtkStyle without checking for NULL, which would crash on mails with a vCard MIME part when "Show Full vCard" was clicked, because the "vcard-inline" module never set a GtkStyle. (cherry picked from commit badc0e6156777c65885bad6858a6f44f7cbf037e)
* EABContactFormatter cleanups.Matthew Barnes2013-05-211-151/+143
| | | | (cherry picked from commit 3df09670afb44ecf2d39fb71a228f0fa7ebbdb73)
* Contact's print doesn't decode QP encoded email addressesMilan Crha2013-01-231-0/+1
|
* Consolidate base utility libraries into libeutil.Matthew Barnes2012-12-131-11/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Bug #687360 - Crash on quit in gtk_style_context_get_valist()Milan Crha2012-11-291-3/+8
|
* Coding style and whitespace cleanup.Matthew Barnes2012-11-111-22/+31
|
* Coding style and whitespace cleanup.Matthew Barnes2012-08-201-10/+9
|
* Bug #680666 - Contacts/Tasks/Memos preview pane does not follow theme colorsDan Vrátil2012-08-021-12/+101
|
* Bug #674427 - Crash when formatting contact in addressbookDan Vrátil2012-06-271-0/+11
|
* Fix displaying photos in contacts previewDan Vrátil2012-06-271-3/+6
| | | | | | EContactPhoto URIs are already escaped, but WebKit escapes it again, so images are not displayed sometimes. Unescaping the URI before writing it to the HTML fixes to problem.
* Coding style and whitespace cleanup.Matthew Barnes2012-06-251-3/+3
|
* Reduce usage of g_type_class_peek_parent().Matthew Barnes2012-06-251-4/+1
| | | | G_DEFINE_TYPE macros define a static "parent_class" variable.
* Fix some GSimpleAsyncResult reference leaks.Matthew Barnes2012-05-131-0/+2
|
* Use g_simple_async_result_set_check_cancellable().Matthew Barnes2012-05-131-6/+7
| | | | Always call it immediately after g_simple_async_result_new().
* Whitespace cleanups.Matthew Barnes2012-05-131-3/+3
|
* Bug #674997 - Collapsing contact lists broken in Contacts previewDan Vrátil2012-05-031-11/+77
|
* Bug #668989 - Add a twitter username to IM in contactsMilan Crha2012-04-261-1/+20
|
* Bug #674272 - Contacts preview differs with mailer running and notDan Vrátil2012-04-231-33/+2
| | | | | | This splits the giant EMailRequest to individual EFileRequest, EStockRequest, EHTTPRequest and EMailRequest, making the first two available globally from e-utils, the othe two are loaded only with mailer, since no other component uses them.
* Whitespace cleanup.Matthew Barnes2012-04-021-108/+108
| | | | | Replace 8-space indentation with tab characters, and various other automated cleanups.
* WebKit port - port addressbook, calendar and update composer to keep working ↵Dan Vrátil2012-03-291-0/+1267
with GtkHtml