aboutsummaryrefslogtreecommitdiffstats
path: root/em-format/e-mail-part-list.c
Commit message (Collapse)AuthorAgeFilesLines
* Bug #689787 - Prefer-plain can hide message body for composerMilan Crha2013-09-271-0/+20
|
* EMailPart: Add "part-list" property.Matthew Barnes2013-06-061-1/+3
| | | | | | | | | | This is a weak reference to the EMailPartList to which the EMailPart has been added. The property is set by e_mail_part_list_add_part(). New functions: e_mail_part_ref_part_list() e_mail_part_set_part_list()
* Convert EMailPart to a GObject.Matthew Barnes2013-05-201-5/+5
| | | | | EMailPart is reference-counted, subclassed, and allows a custom finalize function. There's no excuse for it not to use GObject.
* Add e_mail_part_get_cid().Matthew Barnes2013-05-201-1/+1
|
* Add e_mail_part_get_id().Matthew Barnes2013-05-201-2/+2
|
* em-format cleanups.Matthew Barnes2013-05-201-9/+13
|
* Make EMailPartList thread-safe.Matthew Barnes2012-12-081-48/+307
| | | | | | Exposing data members in the public struct is unwise, especially when EMailPartList is used from multiple threads. Instead keep the members private and provide a set of thread-safe functions to manipulate them.
* Bug #678834 - [prefer-plain] Setting change works only after restartDan Vrátil2012-06-271-31/+0
|
* Coding style and whitespace cleanup.Matthew Barnes2012-06-251-7/+6
|
* Bug #677608 - Fails to open message which is not yet downloadedDan Vrátil2012-06-181-0/+54
|
* Mail formatter rewriteDan Vrátil2012-06-061-0/+130
All mail-parsing and formatting code has been moved to em-format. Parsing is handeled by EMailParser class, formatting by EMailFormatter. Both classes have registry which hold extensions - simple classes that do actual parsing and formatting. Each supported mime-type has it's own parser and formatter extension class.