X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Fwidgets%2Fmodest-msg-view.h;h=80c0902a4286eda13eee49d8a2d0ba3b03d80962;hb=d132c26b55814e25fc75f26e0d4a72d3bedcdd6e;hp=40cc53196912a22e1579883866e1b71c3a28f423;hpb=863ef6ddca26d35008666611cb12b8266c8c305f;p=modest diff --git a/src/widgets/modest-msg-view.h b/src/widgets/modest-msg-view.h index 40cc531..80c0902 100644 --- a/src/widgets/modest-msg-view.h +++ b/src/widgets/modest-msg-view.h @@ -27,17 +27,15 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ - -/* modest-tny-msg-view.h */ - #ifndef __MODEST_MSG_VIEW_H__ #define __MODEST_MSG_VIEW_H__ -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include G_BEGIN_DECLS @@ -53,22 +51,48 @@ typedef struct _ModestMsgView ModestMsgView; typedef struct _ModestMsgViewClass ModestMsgViewClass; struct _ModestMsgView { - GtkScrolledWindow parent; + GtkContainer parent; }; struct _ModestMsgViewClass { - GtkScrolledWindowClass parent_class; - + GtkContainerClass parent_class; + + /* TnyMimePartView interface */ + TnyMimePart* (*get_part_func) (TnyMimePartView *self); + void (*set_part_func) (TnyMimePartView *self, TnyMimePart *part); + /* TnyMsgView interface */ + TnyMsg* (*get_msg_func) (TnyMsgView *self); + void (*set_msg_func) (TnyMsgView *self, TnyMsg *msg); + void (*set_unavailable_func) (TnyMsgView *self); + void (*clear_func) (TnyMsgView *self); + TnyMimePartView* (*create_mime_part_view_for_func) (TnyMsgView *self, TnyMimePart *part); + TnyMsgView* (*create_new_inline_viewer_func) (TnyMsgView *self); + /* ModestZoomable interface */ + gdouble (*get_zoom_func) (ModestZoomable *self); + void (*set_zoom_func) (ModestZoomable *self, gdouble value); + gboolean (*zoom_minus_func) (ModestZoomable *self); + gboolean (*zoom_plus_func) (ModestZoomable *self); + + /* signals */ + void (*set_scroll_adjustments) (ModestMsgView *msg_view, + GtkAdjustment *hadj, + GtkAdjustment *vadj); + void (*link_hover) (ModestMsgView *msgview, const gchar* link, gpointer user_data); void (*link_clicked) (ModestMsgView *msgview, const gchar* link, gpointer user_data); - void (*attachment_clicked) (ModestMsgView *msgview, int index, + void (*link_contextual) (ModestMsgView *msgview, const gchar* link, + gpointer user_data); + void (*attachment_clicked) (ModestMsgView *msgview, TnyMimePart *mime_part, + gpointer user_data); + void (*recpt_activated) (ModestMsgView *msgview, const gchar *address, gpointer user_data); }; /** + * * modest_msg_view_get_type * * get the GType for the this class @@ -80,7 +104,7 @@ GType modest_msg_view_get_type (void) G_GNUC_CONST; /** * modest_msg_view_new - * @tny_msg: a TnyMsgIface instance, or NULL + * @tny_msg: a TnyMsg instance, or NULL * * create a new ModestMsgView widget (a GtkScrolledWindow subclass), * and display the @tny_msg e-mail message in it. If @tny_msg is NULL, @@ -88,29 +112,37 @@ GType modest_msg_view_get_type (void) G_GNUC_CONST; * * Returns: a new ModestMsgView widget, or NULL if there's an error */ -GtkWidget* modest_msg_view_new (const TnyMsgIface *tny_msg); +GtkWidget* modest_msg_view_new (TnyMsg *tny_msg); -/** - * modest_msg_view_set_message - * @self: a ModestMsgView instance - * @tny_msg: a TnyMsgIface instance, or NULL - * - * display the @tny_msg e-mail message. If @tny_msg is NULL, - * then a blank page will be displayed - * */ -void modest_msg_view_set_message (ModestMsgView *self, - const TnyMsgIface *tny_msg); /** - * modest_msg_view_get_selected_text: + * modest_msg_view_get_message_is_empty * @self: a ModestMsgView instance - * - * get the user selected part of the message - * - * Returns: a newly allocated string of the user's selection or NULL if nothing is selected + * + * Returns whether the message contains any visbible (searchable) text. + * For instance, this will return FALSE if the message contains only markup. + * + * Returns: TRUE if the message contains visible text. */ -gchar * modest_msg_view_get_selected_text (ModestMsgView *self); +gboolean modest_msg_view_get_message_is_empty (ModestMsgView *self); + +GtkAdjustment *modest_msg_view_get_vadjustment (ModestMsgView *self); +GtkAdjustment *modest_msg_view_get_hadjustment (ModestMsgView *self); +void modest_msg_view_set_vadjustment (ModestMsgView *self, GtkAdjustment *vadj); +void modest_msg_view_set_hadjustment (ModestMsgView *self, GtkAdjustment *hadj); +void modest_msg_view_set_shadow_type (ModestMsgView *self, GtkShadowType type); +GtkShadowType modest_msg_view_get_shadow_type (ModestMsgView *self); + +gboolean modest_msg_view_search (ModestMsgView *self, const gchar *search); +gboolean modest_msg_view_search_next (ModestMsgView *self); +TnyHeaderFlags modest_msg_view_get_priority (ModestMsgView *self); +void modest_msg_view_set_priority (ModestMsgView *self, TnyHeaderFlags flags); +GList *modest_msg_view_get_selected_attachments (ModestMsgView *self); +GList *modest_msg_view_get_attachments (ModestMsgView *self); +void modest_msg_view_grab_focus (ModestMsgView *self); +void modest_msg_view_remove_attachment (ModestMsgView *view, TnyMimePart *attachment); + G_END_DECLS