aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-photo-source.c
Commit message (Collapse)AuthorAgeFilesLines
* Replace 'interface' with 'iface' in the codeTarnyko2014-02-261-9/+9
| | | | | | Win32 headers have a #define for 'interface', which breaks the build when this word is used in the code, thus replace it to 'iface', the same way as GLib or GTK+ code use to have it. (See bug #722068.)
* Bug 721545 - License text contains obsolete FSF postal addressMatthew Barnes2014-01-081-10/+9
|
* EPhotoSource fixupMatthew Barnes2013-04-241-2/+2
|
* Add EPhotoSource interface.Matthew Barnes2013-04-241-0/+123
EPhotoSource is an interface used to extend the functionality of EPhotoCache. You can add an object implementing EPhotoSource to an EPhotoCache with e_photo_cache_add_photo_source() and remove it with e_photo_cache_remove_photo_source(). When EPhotoCache needs a photo for an email address, it will invoke e_photo_source_get_photo() on all available EPhotoSource objects simultaneously and select one photo.