Plugin.EmailStore: Add email-displayed signal

Ensure the signal is emitted whenever an email in the conversation
viewer is displayed fully (i.e. expanded).
This commit is contained in:
Michael Gratton 2020-03-23 00:00:58 +11:00 committed by Michael James Gratton
parent e29d9378ba
commit 8a36587cc0
6 changed files with 54 additions and 3 deletions

View file

@ -15,6 +15,9 @@
public interface Plugin.EmailStore : Geary.BaseObject {
/** Emitted when an email has been displayed in the UI. */
public signal void email_displayed(Email sent);
/** Emitted when an email has been sent. */
public signal void email_sent(Email sent);