diff options
Diffstat (limited to 'addressbook/gui/widgets/eab-contact-formatter.h')
-rw-r--r-- | addressbook/gui/widgets/eab-contact-formatter.h | 90 |
1 files changed, 41 insertions, 49 deletions
diff --git a/addressbook/gui/widgets/eab-contact-formatter.h b/addressbook/gui/widgets/eab-contact-formatter.h index 31104b1f9a..58f671fe9f 100644 --- a/addressbook/gui/widgets/eab-contact-formatter.h +++ b/addressbook/gui/widgets/eab-contact-formatter.h @@ -1,4 +1,6 @@ /* + * eab-contact-formatter.h + * * 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 @@ -24,22 +26,22 @@ /* Standard GObject macros */ #define EAB_TYPE_CONTACT_FORMATTER \ -(eab_contact_formatter_get_type ()) + (eab_contact_formatter_get_type ()) #define EAB_CONTACT_FORMATTER(obj) \ -(G_TYPE_CHECK_INSTANCE_CAST \ -((obj), EAB_TYPE_CONTACT_FORMATTER, EABContactFormatter)) + (G_TYPE_CHECK_INSTANCE_CAST \ + ((obj), EAB_TYPE_CONTACT_FORMATTER, EABContactFormatter)) #define EAB_CONTACT_FORMATTER_CLASS(cls) \ -(G_TYPE_CHECK_CLASS_CAST \ -((cls), EAB_TYPE_CONTACT_FORMATTER, EABContactFormatterClass)) + (G_TYPE_CHECK_CLASS_CAST \ + ((cls), EAB_TYPE_CONTACT_FORMATTER, EABContactFormatterClass)) #define EAB_IS_CONTACT_FORMATTER(obj) \ -(G_TYPE_CHECK_INSTANCE_TYPE \ -((obj), EAB_TYPE_CONTACT_FORMATTER)) + (G_TYPE_CHECK_INSTANCE_TYPE \ + ((obj), EAB_TYPE_CONTACT_FORMATTER)) #define EAB_IS_CONTACT_FORMATTER_CLASS(cls) \ -(G_TYPE_CHECK_CLASS_TYPE \ -((cls), EAB_TYPE_CONTACT_FORMATTER)) + (G_TYPE_CHECK_CLASS_TYPE \ + ((cls), EAB_TYPE_CONTACT_FORMATTER)) #define EAB_CONTACT_FORMATTER_GET_CLASS(obj) \ -(G_TYPE_ISNTANCE_GET_CLASS \ -((obj), EAB_TYPE_CONTACT_FORMATTER, EABContactFormatterClass)) + (G_TYPE_ISNTANCE_GET_CLASS \ + ((obj), EAB_TYPE_CONTACT_FORMATTER, EABContactFormatterClass)) G_BEGIN_DECLS @@ -48,59 +50,49 @@ typedef struct _EABContactFormatterClass EABContactFormatterClass; typedef struct _EABContactFormatterPrivate EABContactFormatterPrivate; struct _EABContactFormatter { - GObject parent; - EABContactFormatterPrivate *priv; + GObject parent; + EABContactFormatterPrivate *priv; }; struct _EABContactFormatterClass { - GObjectClass parent_class; + GObjectClass parent_class; }; -GType eab_contact_formatter_get_type (); - +GType eab_contact_formatter_get_type (void) G_GNUC_CONST; EABContactFormatter * eab_contact_formatter_new (EABContactDisplayMode mode, gboolean render_maps); - -void eab_contact_formatter_set_style - (EABContactFormatter *formatter, +GtkStyle * eab_contact_formatter_get_style (EABContactFormatter *formatter); +void eab_contact_formatter_set_style (EABContactFormatter *formatter, GtkStyle *context); -GtkStyle * - eab_contact_formatter_get_style - (EABContactFormatter *formatter); - +GtkStateType eab_contact_formatter_get_state (EABContactFormatter *formatter); void eab_contact_formatter_set_state (EABContactFormatter *formatter, GtkStateType state); -GtkStateType eab_contact_formatter_get_state (EABContactFormatter *formatter); - -void eab_contact_formatter_set_render_maps - (EABContactFormatter *formatter, - gboolean render_maps); -gboolean eab_contact_formatter_get_render_maps - (EABContactFormatter *formatter); - -void eab_contact_formatter_set_display_mode - (EABContactFormatter *formatter, - EABContactDisplayMode mode); +gboolean eab_contact_formatter_get_render_maps + (EABContactFormatter *formatter); +void eab_contact_formatter_set_render_maps + (EABContactFormatter *formatter, + gboolean render_maps); EABContactDisplayMode - eab_contact_formatter_get_display_mode - (EABContactFormatter *formatter); - -void eab_contact_formatter_format_contact_sync - (EABContactFormatter *formatter, - EContact *contact, + eab_contact_formatter_get_display_mode + (EABContactFormatter *formatter); +void eab_contact_formatter_set_display_mode + (EABContactFormatter *formatter, + EABContactDisplayMode mode); +void eab_contact_formatter_format_contact_sync + (EABContactFormatter *formatter, + EContact *contact, CamelStream *stream, - GCancellable *cancellable); - + GCancellable *cancellable); void eab_contact_formatter_format_contact_async - (EABContactFormatter *formatter, - EContact *contact, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data); - + (EABContactFormatter *formatter, + EContact *contact, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data); void eab_contact_formatter_bind_dom (WebKitDOMDocument *document); G_END_DECLS -#endif +#endif /* EAB_CONTACT_FORMATTER_H */ + |