aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-format-html-display.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-04-28 10:33:05 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-04-28 10:33:05 +0800
commitaf5958acaa62952d7ad0b729ad477dbe570eab6d (patch)
tree376b0ee99e80da1ba5d72b01080d3c345852c2df /mail/em-format-html-display.h
parenta9e1c0f8e729915f756ee38854e20a8f04f3684b (diff)
downloadgsoc2013-evolution-af5958acaa62952d7ad0b729ad477dbe570eab6d.tar
gsoc2013-evolution-af5958acaa62952d7ad0b729ad477dbe570eab6d.tar.gz
gsoc2013-evolution-af5958acaa62952d7ad0b729ad477dbe570eab6d.tar.bz2
gsoc2013-evolution-af5958acaa62952d7ad0b729ad477dbe570eab6d.tar.lz
gsoc2013-evolution-af5958acaa62952d7ad0b729ad477dbe570eab6d.tar.xz
gsoc2013-evolution-af5958acaa62952d7ad0b729ad477dbe570eab6d.tar.zst
gsoc2013-evolution-af5958acaa62952d7ad0b729ad477dbe570eab6d.zip
Cosmetic cleanups for EMFormat headers
Diffstat (limited to 'mail/em-format-html-display.h')
-rw-r--r--mail/em-format-html-display.h107
1 files changed, 70 insertions, 37 deletions
diff --git a/mail/em-format-html-display.h b/mail/em-format-html-display.h
index 4e2e7c1f83..10a379d7f6 100644
--- a/mail/em-format-html-display.h
+++ b/mail/em-format-html-display.h
@@ -22,20 +22,40 @@
Concrete class for formatting mails to displayed html
*/
-#ifndef _EM_FORMAT_HTML_DISPLAY_H
-#define _EM_FORMAT_HTML_DISPLAY_H
-
-#include "mail/em-format-html.h"
+#ifndef EM_FORMAT_HTML_DISPLAY_H
+#define EM_FORMAT_HTML_DISPLAY_H
+
+#include <mail/em-format-html.h>
+
+/* Standard GObject macros */
+#define EM_TYPE_FORMAT_HTML_DISPLAY \
+ (em_format_html_display_get_type ())
+#define EM_FORMAT_HTML_DISPLAY(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST \
+ ((obj), EM_TYPE_FORMAT_HTML_DISPLAY, EMFormatHTMLDisplay))
+#define EM_FORMAT_HTML_DISPLAY_CLASS(cls) \
+ (G_TYPE_CHECK_CLASS_CAST \
+ ((cls), EM_TYPE_FORMAT_HTML_DISPLAY, EMFormatHTMLDisplayClass))
+#define EM_IS_FORMAT_HTML_DISPLAY(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE \
+ ((obj), EM_TYPE_FORMAT_HTML_DISPLAY))
+#define EM_IS_FORMAT_HTML_DISPLAY_CLASS(cls) \
+ (G_TYPE_CHECK_CLASS_TYPE \
+ ((cls), EM_TYPE_FORMAT_HTML_DISPLAY))
+#define EM_FORMAT_HTML_DISPLAY_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS \
+ ((obj), EM_TYPE_FORMAT_HTML_DISPLAY, EMFormatHTMLDisplayClass))
+
+G_BEGIN_DECLS
typedef struct _EMFormatHTMLDisplay EMFormatHTMLDisplay;
typedef struct _EMFormatHTMLDisplayClass EMFormatHTMLDisplayClass;
-
-struct _CamelMimePart;
+typedef struct _EMFormatHTMLDisplayPrivate EMFormatHTMLDisplayPrivate;
struct _EMFormatHTMLDisplay {
EMFormatHTML formathtml;
- struct _EMFormatHTMLDisplayPrivate *priv;
+ EMFormatHTMLDisplayPrivate *priv;
struct _ESearchingTokenizer *search_tok;
@@ -59,33 +79,46 @@ struct _EMFormatHTMLDisplayClass {
void (*on_url)(EMFormatHTMLDisplay *efhd, const char *uri);
};
-GType em_format_html_display_get_type(void);
-EMFormatHTMLDisplay *em_format_html_display_new(void);
-
-void em_format_html_display_goto_anchor(EMFormatHTMLDisplay *efhd, const char *name);
-
-void em_format_html_display_set_animate(EMFormatHTMLDisplay *efhd, gboolean state);
-void em_format_html_display_set_caret_mode(EMFormatHTMLDisplay *efhd, gboolean state);
-
-void em_format_html_display_set_search(EMFormatHTMLDisplay *efhd, int type, GSList *strings);
-void em_format_html_display_search(EMFormatHTMLDisplay *efhd);
-void em_format_html_display_search_with (EMFormatHTMLDisplay *efhd, char *word);
-void em_format_html_display_search_close (EMFormatHTMLDisplay *efhd);
-
-GtkWidget *em_format_html_get_search_dialog (EMFormatHTMLDisplay *efhd);
-
-void em_format_html_display_cut (EMFormatHTMLDisplay *efhd);
-void em_format_html_display_copy (EMFormatHTMLDisplay *efhd);
-void em_format_html_display_paste (EMFormatHTMLDisplay *efhd);
-
-void em_format_html_display_zoom_in (EMFormatHTMLDisplay *efhd);
-void em_format_html_display_zoom_out (EMFormatHTMLDisplay *efhd);
-void em_format_html_display_zoom_reset (EMFormatHTMLDisplay *efhd);
-
-gboolean em_format_html_display_popup_menu (EMFormatHTMLDisplay *efhd);
-
-/* experimental */
-struct _EPopupExtension;
-void em_format_html_display_set_popup(EMFormatHTMLDisplay *, struct _EPopupExtension *);
-
-#endif /* !_EM_FORMAT_HTML_DISPLAY_H */
+GType em_format_html_display_get_type (void);
+EMFormatHTMLDisplay *
+ em_format_html_display_new (void);
+
+void em_format_html_display_goto_anchor
+ (EMFormatHTMLDisplay *efhd,
+ const char *name);
+
+void em_format_html_display_set_animate
+ (EMFormatHTMLDisplay *efhd,
+ gboolean state);
+void em_format_html_display_set_caret_mode
+ (EMFormatHTMLDisplay *efhd,
+ gboolean state);
+
+void em_format_html_display_set_search
+ (EMFormatHTMLDisplay *efhd,
+ int type,
+ GSList *strings);
+void em_format_html_display_search (EMFormatHTMLDisplay *efhd);
+void em_format_html_display_search_with
+ (EMFormatHTMLDisplay *efhd,
+ char *word);
+void em_format_html_display_search_close
+ (EMFormatHTMLDisplay *efhd);
+
+GtkWidget * em_format_html_get_search_dialog(EMFormatHTMLDisplay *efhd);
+
+void em_format_html_display_cut (EMFormatHTMLDisplay *efhd);
+void em_format_html_display_copy (EMFormatHTMLDisplay *efhd);
+void em_format_html_display_paste (EMFormatHTMLDisplay *efhd);
+
+void em_format_html_display_zoom_in (EMFormatHTMLDisplay *efhd);
+void em_format_html_display_zoom_out (EMFormatHTMLDisplay *efhd);
+void em_format_html_display_zoom_reset
+ (EMFormatHTMLDisplay *efhd);
+
+gboolean em_format_html_display_popup_menu
+ (EMFormatHTMLDisplay *efhd);
+
+G_END_DECLS
+
+#endif /* EM_FORMAT_HTML_DISPLAY_H */