/* * e-html-editor-view.h * * Copyright (C) 2012 Dan Vrátil * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with the program; if not, see * */ #if !defined (__E_UTIL_H_INSIDE__) && !defined (LIBEUTIL_COMPILATION) #error "Only should be included directly." #endif #ifndef E_HTML_EDITOR_VIEW_H #define E_HTML_EDITOR_VIEW_H #include #include #include #include #include #include /* Standard GObject macros */ #define E_TYPE_HTML_EDITOR_VIEW \ (e_html_editor_view_get_type ()) #define E_HTML_EDITOR_VIEW(obj) \ (G_TYPE_CHECK_INSTANCE_CAST \ ((obj), E_TYPE_HTML_EDITOR_VIEW, EHTMLEditorView)) #define E_HTML_EDITOR_VIEW_CLASS(cls) \ (G_TYPE_CHECK_CLASS_CAST \ ((cls), E_TYPE_HTML_EDITOR_VIEW, EHTMLEditorViewClass)) #define E_IS_HTML_EDITOR_VIEW(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE \ ((obj), E_TYPE_HTML_EDITOR_VIEW)) #define E_IS_HTML_EDITOR_VIEW_CLASS(cls) \ (G_TYPE_CHECK_CLASS_TYPE \ ((cls), E_TYPE_HTML_EDITOR_VIEW)) #define E_HTML_EDITOR_VIEW_GET_CLASS(obj) \ (G_TYPE_INSTANCE_GET_CLASS \ ((obj), E_TYPE_HTML_EDITOR_VIEW, EHTMLEditorViewClass)) G_BEGIN_DECLS typedef struct _EHTMLEditorView EHTMLEditorView; typedef struct _EHTMLEditorViewClass EHTMLEditorViewClass; typedef struct _EHTMLEditorViewPrivate EHTMLEditorViewPrivate; struct _EHTMLEditorView { WebKitWebView parent; EHTMLEditorViewPrivate *priv; }; struct _EHTMLEditorViewClass { WebKitWebViewClass parent_class; void (*paste_clipboard_quoted) (EHTMLEditorView *view); gboolean (*popup_event) (EHTMLEditorView *view, GdkEventButton *event); void (*paste_primary_clipboard) (EHTMLEditorView *view); }; GType e_html_editor_view_get_type (void) G_GNUC_CONST; EHTMLEditorView * e_html_editor_view_new (void); EHTMLEditorSelection * e_html_editor_view_get_selection (EHTMLEditorView *view); gboolean e_html_editor_view_exec_command (EHTMLEditorView *view, EHTMLEditorViewCommand command, const gchar *value); gboolean e_html_editor_view_get_changed (EHTMLEditorView *view); void e_html_editor_view_set_changed (EHTMLEditorView *view, gboolean changed); gboolean e_html_editor_view_get_html_mode (EHTMLEditorView *view); void e_html_editor_view_set_html_mode (EHTMLEditorView *view, gboolean html_mode); gboolean e_html_editor_view_get_inline_spelling (EHTMLEditorView *view); void e_html_editor_view_set_inline_spelling (EHTMLEditorView *view, gboolean inline_spelling); gboolean e_html_editor_view_get_magic_links (EHTMLEditorView *view); void e_html_editor_view_set_magic_links (EHTMLEditorView *view, gboolean magic_links); void e_html_editor_view_insert_smiley (EHTMLEditorView *view, EEmoticon *emoticon); gboolean e_html_editor_view_get_magic_smileys (EHTMLEditorView *view); void e_html_editor_view_set_magic_smileys (EHTMLEditorView *view, gboolean magic_smileys); ESpellChecker * e_html_editor_view_get_spell_checker (EHTMLEditorView *view); gchar * e_html_editor_view_get_text_html (EHTMLEditorView *view); gchar * e_html_editor_view_get_text_html_for_drafts (EHTMLEditorView *view); gchar * e_html_editor_view_get_text_plain (EHTMLEditorView *view); void e_html_editor_view_convert_and_insert_html_to_plain_text (EHTMLEditorView *view, const gchar *html); void e_html_editor_view_set_text_html (EHTMLEditorView *view, const gchar *text); void e_html_editor_view_set_text_plain (EHTMLEditorView *view, const gchar *text); void e_html_editor_view_paste_clipboard_quoted (EHTMLEditorView *view); void e_html_editor_view_embed_styles (EHTMLEditorView *view); void e_html_editor_view_remove_embed_styles (EHTMLEditorView *view); void e_html_editor_view_update_fonts (EHTMLEditorView *view); WebKitDOMElement * e_html_editor_view_get_element_under_mouse_click (EHTMLEditorView *view); void e_html_editor_view_check_magic_links (EHTMLEditorView *view, gboolean while_typing); WebKitDOMElement * e_html_editor_view_quote_plain_text_element (EHTMLEditorView *view, WebKitDOMElement *element); WebKitDOMElement * e_html_editor_view_quote_plain_text (EHTMLEditorView *view); void e_html_editor_view_dequote_plain_text (EHTMLEditorView *view); void e_html_editor_view_turn_spell_check_off (EHTMLEditorView *view); void e_html_editor_view_force_spell_check_for_current_paragraph (EHTMLEditorView *view); void e_html_editor_view_force_spell_check (EHTMLEditorView *view); void e_html_editor_view_add_inline_image_from_mime_part (EHTMLEditorView *view, CamelMimePart *part); GList * e_html_editor_view_get_parts_for_inline_images (EHTMLEditorView *view, const gchar *uid_domain); G_END_DECLS #endif /* E_HTML_EDITOR_VIEW_H */