X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Fmodest-ui.h;h=b1ff8c3983b5609a2253cd5aacb9e8b453140731;hb=5bf2f24ec962205cc2c0af1e658189913ce7cfef;hp=fc487fce6d84fe2a019d12878cd0dc54521efa8e;hpb=3e7206e4700d2bb49daa3b11c9b87be9f8014665;p=modest diff --git a/src/modest-ui.h b/src/modest-ui.h index fc487fc..b1ff8c3 100644 --- a/src/modest-ui.h +++ b/src/modest-ui.h @@ -5,7 +5,9 @@ #define __MODEST_UI_H__ #include +#include #include "modest-conf.h" +#include "modest-tny-msg-view.h" G_BEGIN_DECLS @@ -64,7 +66,7 @@ gboolean modest_ui_show_main_window (ModestUI *ui); /** - * modest_ui_show_edit_window: + * modest_ui_new_edit_window: * @ui: a ModestUI instance * @to: people to send this to, ';' separated * @cc: people to send carbon-copies (cc), ';' separated @@ -75,7 +77,7 @@ gboolean modest_ui_show_main_window (ModestUI *ui); * * Returns: TRUE if succeeded, FALSE otherwise */ -gboolean modest_ui_show_edit_window (ModestUI *ui, +gboolean modest_ui_new_edit_window (ModestUI *ui, const gchar* to, const gchar* cc, const gchar* bcc, @@ -83,6 +85,18 @@ gboolean modest_ui_show_edit_window (ModestUI *ui, const gchar* body, const GSList* att); + +GtkContainer *modest_ui_new_editor_window (ModestUI *modest_ui, gpointer *user_data); + +gboolean modest_ui_editor_window_set_to_header(const gchar *to, gpointer window_data); +gboolean modest_ui_editor_window_set_cc_header(const gchar *cc, gpointer window_data); +gboolean modest_ui_editor_window_set_bcc_header(const gchar *bcc, gpointer window_data); +gboolean modest_ui_editor_window_set_subject_header(const gchar *subject, gpointer window_data); +gboolean modest_ui_editor_window_set_body(const gchar *body, gpointer window_data); +gboolean modest_ui_editor_window_update_attachments(gpointer window_data); + +GtkContainer *modest_ui_new_viewer_window (ModestUI *modest_ui, GtkWidget *msg_view, TnyMsgIface *msg, gpointer *user_data); + G_END_DECLS #endif /* __MODEST_UI_H__ */