From: Matthew Barnes Date: Sat, 6 Oct 2012 20:37:00 +0000 (-0400) Subject: e-data-cal-view.h readability cleanups. X-Git-Tag: upstream/3.7.4~389 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=206cc61fc3d83630a9e580e76e1628777de39ea6;p=platform%2Fupstream%2Fevolution-data-server.git e-data-cal-view.h readability cleanups. --- diff --git a/calendar/libedata-cal/e-data-cal-view.h b/calendar/libedata-cal/e-data-cal-view.h index 5211f9a..414352f 100644 --- a/calendar/libedata-cal/e-data-cal-view.h +++ b/calendar/libedata-cal/e-data-cal-view.h @@ -27,14 +27,26 @@ #include -G_BEGIN_DECLS - - +/* Standard GObject macros */ +#define E_DATA_CAL_VIEW_TYPE \ + (e_data_cal_view_get_type ()) +#define E_DATA_CAL_VIEW(obj) \ + (G_TYPE_CHECK_INSTANCE_CAST \ + ((obj), E_DATA_CAL_VIEW_TYPE, EDataCalView)) +#define E_DATA_CAL_VIEW_CLASS(klass) \ + (G_TYPE_CHECK_CLASS_CAST \ + ((klass), E_DATA_CAL_VIEW_TYPE, EDataCalViewClass)) +#define E_IS_DATA_CAL_VIEW(obj) \ + (G_TYPE_CHECK_INSTANCE_TYPE \ + ((obj), E_DATA_CAL_VIEW_TYPE)) +#define E_IS_DATA_CAL_VIEW_CLASS(cls) \ + (G_TYPE_CHECK_CLASS_TYPE \ + ((cls), E_DATA_CAL_VIEW_TYPE)) +#define E_DATA_CAL_VIEW_GET_CLASS(obj) \ + (G_TYPE_INSTANCE_GET_CLASS \ + ((obj), E_DATA_CAL_VIEW_TYPE, EDataCalViewClass)) -#define E_DATA_CAL_VIEW_TYPE (e_data_cal_view_get_type ()) -#define E_DATA_CAL_VIEW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), E_DATA_CAL_VIEW_TYPE, EDataCalView)) -#define E_DATA_CAL_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), E_DATA_CAL_VIEW_TYPE, EDataCalViewClass)) -#define E_IS_DATA_CAL_VIEW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), E_DATA_CAL_VIEW_TYPE)) +G_BEGIN_DECLS struct _ECalBackend; struct _ECalBackendSExp; @@ -52,39 +64,74 @@ struct _EDataCalViewClass { GObjectClass parent_class; }; -GType e_data_cal_view_get_type (void); -EDataCalView * e_data_cal_view_new (struct _ECalBackend *backend, struct _ECalBackendSExp *sexp); -guint e_data_cal_view_register_gdbus_object (EDataCalView *view, GDBusConnection *connection, const gchar *object_path, GError **error); -const gchar * e_data_cal_view_get_text (EDataCalView *view); +GType e_data_cal_view_get_type (void) G_GNUC_CONST; +EDataCalView * e_data_cal_view_new (struct _ECalBackend *backend, + struct _ECalBackendSExp *sexp); +guint e_data_cal_view_register_gdbus_object + (EDataCalView *view, + GDBusConnection *connection, + const gchar *object_path, + GError **error); +const gchar * e_data_cal_view_get_text (EDataCalView *view); struct _ECalBackendSExp * - e_data_cal_view_get_object_sexp (EDataCalView *view); -gboolean e_data_cal_view_object_matches (EDataCalView *view, const gchar *object); -gboolean e_data_cal_view_component_matches (EDataCalView *view, ECalComponent *component); -gboolean e_data_cal_view_is_started (EDataCalView *view); -gboolean e_data_cal_view_is_completed (EDataCalView *view); -gboolean e_data_cal_view_is_stopped (EDataCalView *view); -GHashTable * e_data_cal_view_get_fields_of_interest (EDataCalView *view); -ECalClientViewFlags e_data_cal_view_get_flags (EDataCalView *view); - -gchar * e_data_cal_view_get_component_string (EDataCalView *view, /* const */ ECalComponent *component); - -void e_data_cal_view_notify_components_added (EDataCalView *view, const GSList *ecalcomponents); -void e_data_cal_view_notify_components_added_1 (EDataCalView *view, /* const */ ECalComponent *component); -void e_data_cal_view_notify_components_modified (EDataCalView *view, const GSList *ecalcomponents); -void e_data_cal_view_notify_components_modified_1 (EDataCalView *view, /* const */ ECalComponent *component); + e_data_cal_view_get_object_sexp (EDataCalView *view); +gboolean e_data_cal_view_object_matches (EDataCalView *view, + const gchar *object); +gboolean e_data_cal_view_component_matches + (EDataCalView *view, + ECalComponent *component); +gboolean e_data_cal_view_is_started (EDataCalView *view); +gboolean e_data_cal_view_is_completed (EDataCalView *view); +gboolean e_data_cal_view_is_stopped (EDataCalView *view); +GHashTable * e_data_cal_view_get_fields_of_interest + (EDataCalView *view); +ECalClientViewFlags + e_data_cal_view_get_flags (EDataCalView *view); + +gchar * e_data_cal_view_get_component_string + (EDataCalView *view, + ECalComponent *component); + +void e_data_cal_view_notify_components_added + (EDataCalView *view, + const GSList *ecalcomponents); +void e_data_cal_view_notify_components_added_1 + (EDataCalView *view, + ECalComponent *component); +void e_data_cal_view_notify_components_modified + (EDataCalView *view, + const GSList *ecalcomponents); +void e_data_cal_view_notify_components_modified_1 + (EDataCalView *view, + ECalComponent *component); #ifndef E_CAL_DISABLE_DEPRECATED -void e_data_cal_view_notify_objects_added (EDataCalView *view, const GSList *objects); -void e_data_cal_view_notify_objects_added_1 (EDataCalView *view, const gchar *object); -void e_data_cal_view_notify_objects_modified (EDataCalView *view, const GSList *objects); -void e_data_cal_view_notify_objects_modified_1 (EDataCalView *view, const gchar *object); +void e_data_cal_view_notify_objects_added + (EDataCalView *view, + const GSList *objects); +void e_data_cal_view_notify_objects_added_1 + (EDataCalView *view, + const gchar *object); +void e_data_cal_view_notify_objects_modified + (EDataCalView *view, + const GSList *objects); +void e_data_cal_view_notify_objects_modified_1 + (EDataCalView *view, + const gchar *object); #endif -void e_data_cal_view_notify_objects_removed (EDataCalView *view, const GSList *ids); -void e_data_cal_view_notify_objects_removed_1 (EDataCalView *view, const ECalComponentId *id); -void e_data_cal_view_notify_progress (EDataCalView *view, gint percent, const gchar *message); -void e_data_cal_view_notify_complete (EDataCalView *view, const GError *error); +void e_data_cal_view_notify_objects_removed + (EDataCalView *view, + const GSList *ids); +void e_data_cal_view_notify_objects_removed_1 + (EDataCalView *view, + const ECalComponentId *id); +void e_data_cal_view_notify_progress (EDataCalView *view, + gint percent, + const gchar *message); +void e_data_cal_view_notify_complete (EDataCalView *view, + const GError *error); G_END_DECLS -#endif +#endif /* E_DATA_CAL_VIEW_H */ diff --git a/docs/reference/calendar/libedata-cal/libedata-cal-sections.txt b/docs/reference/calendar/libedata-cal/libedata-cal-sections.txt index 958f7bd..4367a03 100644 --- a/docs/reference/calendar/libedata-cal/libedata-cal-sections.txt +++ b/docs/reference/calendar/libedata-cal/libedata-cal-sections.txt @@ -374,7 +374,8 @@ E_DATA_CAL_VIEW E_IS_DATA_CAL_VIEW E_DATA_CAL_VIEW_TYPE E_DATA_CAL_VIEW_CLASS -IS_E_DATA_CAL_VIEW_CLASS +E_IS_DATA_CAL_VIEW_CLASS +E_DATA_CAL_VIEW_GET_CLASS EDataCalViewPrivate e_data_cal_view_get_type