unity.h   unity.h 
skipping to change at line 137 skipping to change at line 137
#define UNITY_OPTIONS_FILTER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), UNITY _TYPE_OPTIONS_FILTER, UnityOptionsFilter)) #define UNITY_OPTIONS_FILTER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), UNITY _TYPE_OPTIONS_FILTER, UnityOptionsFilter))
#define UNITY_OPTIONS_FILTER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass) , UNITY_TYPE_OPTIONS_FILTER, UnityOptionsFilterClass)) #define UNITY_OPTIONS_FILTER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass) , UNITY_TYPE_OPTIONS_FILTER, UnityOptionsFilterClass))
#define UNITY_IS_OPTIONS_FILTER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), UN ITY_TYPE_OPTIONS_FILTER)) #define UNITY_IS_OPTIONS_FILTER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), UN ITY_TYPE_OPTIONS_FILTER))
#define UNITY_IS_OPTIONS_FILTER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((kla ss), UNITY_TYPE_OPTIONS_FILTER)) #define UNITY_IS_OPTIONS_FILTER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((kla ss), UNITY_TYPE_OPTIONS_FILTER))
#define UNITY_OPTIONS_FILTER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((ob j), UNITY_TYPE_OPTIONS_FILTER, UnityOptionsFilterClass)) #define UNITY_OPTIONS_FILTER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((ob j), UNITY_TYPE_OPTIONS_FILTER, UnityOptionsFilterClass))
typedef struct _UnityOptionsFilter UnityOptionsFilter; typedef struct _UnityOptionsFilter UnityOptionsFilter;
typedef struct _UnityOptionsFilterClass UnityOptionsFilterClass; typedef struct _UnityOptionsFilterClass UnityOptionsFilterClass;
typedef struct _UnityOptionsFilterPrivate UnityOptionsFilterPrivate; typedef struct _UnityOptionsFilterPrivate UnityOptionsFilterPrivate;
#define UNITY_OPTIONS_FILTER_TYPE_SORT_TYPE (unity_options_filter_sort_type
_get_type ())
#define UNITY_TYPE_RADIO_OPTION_FILTER (unity_radio_option_filter_get_type ()) #define UNITY_TYPE_RADIO_OPTION_FILTER (unity_radio_option_filter_get_type ())
#define UNITY_RADIO_OPTION_FILTER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), UNITY_TYPE_RADIO_OPTION_FILTER, UnityRadioOptionFilter)) #define UNITY_RADIO_OPTION_FILTER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), UNITY_TYPE_RADIO_OPTION_FILTER, UnityRadioOptionFilter))
#define UNITY_RADIO_OPTION_FILTER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((k lass), UNITY_TYPE_RADIO_OPTION_FILTER, UnityRadioOptionFilterClass)) #define UNITY_RADIO_OPTION_FILTER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((k lass), UNITY_TYPE_RADIO_OPTION_FILTER, UnityRadioOptionFilterClass))
#define UNITY_IS_RADIO_OPTION_FILTER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj ), UNITY_TYPE_RADIO_OPTION_FILTER)) #define UNITY_IS_RADIO_OPTION_FILTER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj ), UNITY_TYPE_RADIO_OPTION_FILTER))
#define UNITY_IS_RADIO_OPTION_FILTER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), UNITY_TYPE_RADIO_OPTION_FILTER)) #define UNITY_IS_RADIO_OPTION_FILTER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), UNITY_TYPE_RADIO_OPTION_FILTER))
#define UNITY_RADIO_OPTION_FILTER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), UNITY_TYPE_RADIO_OPTION_FILTER, UnityRadioOptionFilterClass)) #define UNITY_RADIO_OPTION_FILTER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), UNITY_TYPE_RADIO_OPTION_FILTER, UnityRadioOptionFilterClass))
typedef struct _UnityRadioOptionFilter UnityRadioOptionFilter; typedef struct _UnityRadioOptionFilter UnityRadioOptionFilter;
typedef struct _UnityRadioOptionFilterClass UnityRadioOptionFilterClass; typedef struct _UnityRadioOptionFilterClass UnityRadioOptionFilterClass;
typedef struct _UnityRadioOptionFilterPrivate UnityRadioOptionFilterPrivate ; typedef struct _UnityRadioOptionFilterPrivate UnityRadioOptionFilterPrivate ;
skipping to change at line 399 skipping to change at line 401
struct _UnityOptionsFilter { struct _UnityOptionsFilter {
UnityFilter parent_instance; UnityFilter parent_instance;
UnityOptionsFilterPrivate * priv; UnityOptionsFilterPrivate * priv;
GList* options; GList* options;
}; };
struct _UnityOptionsFilterClass { struct _UnityOptionsFilterClass {
UnityFilterClass parent_class; UnityFilterClass parent_class;
}; };
typedef enum {
UNITY_OPTIONS_FILTER_SORT_TYPE_MANUAL,
UNITY_OPTIONS_FILTER_SORT_TYPE_DISPLAY_NAME,
UNITY_OPTIONS_FILTER_SORT_TYPE_ID
} UnityOptionsFilterSortType;
struct _UnityRadioOptionFilter { struct _UnityRadioOptionFilter {
UnityOptionsFilter parent_instance; UnityOptionsFilter parent_instance;
UnityRadioOptionFilterPrivate * priv; UnityRadioOptionFilterPrivate * priv;
}; };
struct _UnityRadioOptionFilterClass { struct _UnityRadioOptionFilterClass {
UnityOptionsFilterClass parent_class; UnityOptionsFilterClass parent_class;
}; };
struct _UnityCheckOptionFilter { struct _UnityCheckOptionFilter {
skipping to change at line 557 skipping to change at line 565
struct _UnityActivePlaylistContainer { struct _UnityActivePlaylistContainer {
gboolean valid; gboolean valid;
UnityPlaylistDetails details; UnityPlaylistDetails details;
}; };
GType unity_app_info_manager_get_type (void) G_GNUC_CONST; GType unity_app_info_manager_get_type (void) G_GNUC_CONST;
UnityAppInfoManager* unity_app_info_manager_get_instance (void); UnityAppInfoManager* unity_app_info_manager_get_instance (void);
GAppInfo* unity_app_info_manager_lookup (UnityAppInfoManager* self, const g char* id); GAppInfo* unity_app_info_manager_lookup (UnityAppInfoManager* self, const g char* id);
gchar** unity_app_info_manager_get_categories (UnityAppInfoManager* self, c onst gchar* id, int* result_length1); gchar** unity_app_info_manager_get_categories (UnityAppInfoManager* self, c onst gchar* id, int* result_length1);
gchar* unity_app_info_manager_get_path (UnityAppInfoManager* self, const gc har* id);
void unity_app_info_manager_lookup_async (UnityAppInfoManager* self, const gchar* id, GAsyncReadyCallback _callback_, gpointer _user_data_); void unity_app_info_manager_lookup_async (UnityAppInfoManager* self, const gchar* id, GAsyncReadyCallback _callback_, gpointer _user_data_);
GAppInfo* unity_app_info_manager_lookup_finish (UnityAppInfoManager* self, GAsyncResult* _res_, GError** error); GAppInfo* unity_app_info_manager_lookup_finish (UnityAppInfoManager* self, GAsyncResult* _res_, GError** error);
void unity_app_info_manager_clear (UnityAppInfoManager* self); void unity_app_info_manager_clear (UnityAppInfoManager* self);
GType unity_inspector_get_type (void) G_GNUC_CONST; GType unity_inspector_get_type (void) G_GNUC_CONST;
UnityInspector* unity_inspector_get_default (void); UnityInspector* unity_inspector_get_default (void);
gboolean unity_inspector_get_unity_running (UnityInspector* self); gboolean unity_inspector_get_unity_running (UnityInspector* self);
const gchar* unity_inspector_get_unity_bus_name (UnityInspector* self); const gchar* unity_inspector_get_unity_bus_name (UnityInspector* self);
void unity_io_read_stream_async (GInputStream* input, gint io_priority, GCa ncellable* cancellable, GAsyncReadyCallback _callback_, gpointer _user_data _); void unity_io_read_stream_async (GInputStream* input, gint io_priority, GCa ncellable* cancellable, GAsyncReadyCallback _callback_, gpointer _user_data _);
void unity_io_read_stream_finish (GAsyncResult* _res_, guint8** data, int* data_length1, gsize* size, GError** error); void unity_io_read_stream_finish (GAsyncResult* _res_, guint8** data, int* data_length1, gsize* size, GError** error);
void unity_io_open_from_dirs (const gchar* filename, gchar** dirs, int dirs _length1, GAsyncReadyCallback _callback_, gpointer _user_data_); void unity_io_open_from_dirs (const gchar* filename, gchar** dirs, int dirs _length1, GAsyncReadyCallback _callback_, gpointer _user_data_);
skipping to change at line 643 skipping to change at line 652
gboolean unity_filter_get_collapsed (UnityFilter* self); gboolean unity_filter_get_collapsed (UnityFilter* self);
gboolean unity_filter_get_filtering (UnityFilter* self); gboolean unity_filter_get_filtering (UnityFilter* self);
GType unity_filter_option_get_type (void) G_GNUC_CONST; GType unity_filter_option_get_type (void) G_GNUC_CONST;
UnityFilterOption* unity_filter_option_new (const gchar* id, const gchar* d isplay_name, GIcon* icon_hint, gboolean active); UnityFilterOption* unity_filter_option_new (const gchar* id, const gchar* d isplay_name, GIcon* icon_hint, gboolean active);
UnityFilterOption* unity_filter_option_construct (GType object_type, const gchar* id, const gchar* display_name, GIcon* icon_hint, gboolean active); UnityFilterOption* unity_filter_option_construct (GType object_type, const gchar* id, const gchar* display_name, GIcon* icon_hint, gboolean active);
const gchar* unity_filter_option_get_id (UnityFilterOption* self); const gchar* unity_filter_option_get_id (UnityFilterOption* self);
const gchar* unity_filter_option_get_display_name (UnityFilterOption* self) ; const gchar* unity_filter_option_get_display_name (UnityFilterOption* self) ;
GIcon* unity_filter_option_get_icon_hint (UnityFilterOption* self); GIcon* unity_filter_option_get_icon_hint (UnityFilterOption* self);
gboolean unity_filter_option_get_active (UnityFilterOption* self); gboolean unity_filter_option_get_active (UnityFilterOption* self);
GType unity_options_filter_get_type (void) G_GNUC_CONST; GType unity_options_filter_get_type (void) G_GNUC_CONST;
GType unity_options_filter_sort_type_get_type (void) G_GNUC_CONST;
UnityFilterOption* unity_options_filter_add_option (UnityOptionsFilter* sel f, const gchar* id, const gchar* display_name, GIcon* icon_hint); UnityFilterOption* unity_options_filter_add_option (UnityOptionsFilter* sel f, const gchar* id, const gchar* display_name, GIcon* icon_hint);
UnityFilterOption* unity_options_filter_get_option (UnityOptionsFilter* sel f, const gchar* id); UnityFilterOption* unity_options_filter_get_option (UnityOptionsFilter* sel f, const gchar* id);
UnityOptionsFilter* unity_options_filter_new (void); UnityOptionsFilter* unity_options_filter_new (void);
UnityOptionsFilter* unity_options_filter_construct (GType object_type); UnityOptionsFilter* unity_options_filter_construct (GType object_type);
UnityOptionsFilterSortType unity_options_filter_get_sort_type (UnityOptions
Filter* self);
void unity_options_filter_set_sort_type (UnityOptionsFilter* self, UnityOpt
ionsFilterSortType value);
GType unity_radio_option_filter_get_type (void) G_GNUC_CONST; GType unity_radio_option_filter_get_type (void) G_GNUC_CONST;
UnityRadioOptionFilter* unity_radio_option_filter_new (const gchar* id, con st gchar* display_name, GIcon* icon_hint, gboolean collapsed); UnityRadioOptionFilter* unity_radio_option_filter_new (const gchar* id, con st gchar* display_name, GIcon* icon_hint, gboolean collapsed);
UnityRadioOptionFilter* unity_radio_option_filter_construct (GType object_t ype, const gchar* id, const gchar* display_name, GIcon* icon_hint, gboolean collapsed); UnityRadioOptionFilter* unity_radio_option_filter_construct (GType object_t ype, const gchar* id, const gchar* display_name, GIcon* icon_hint, gboolean collapsed);
UnityFilterOption* unity_radio_option_filter_get_active_option (UnityRadioO ptionFilter* self); UnityFilterOption* unity_radio_option_filter_get_active_option (UnityRadioO ptionFilter* self);
GType unity_check_option_filter_get_type (void) G_GNUC_CONST; GType unity_check_option_filter_get_type (void) G_GNUC_CONST;
UnityCheckOptionFilter* unity_check_option_filter_new (const gchar* id, con st gchar* display_name, GIcon* icon_hint, gboolean collapsed); UnityCheckOptionFilter* unity_check_option_filter_new (const gchar* id, con st gchar* display_name, GIcon* icon_hint, gboolean collapsed);
UnityCheckOptionFilter* unity_check_option_filter_construct (GType object_t ype, const gchar* id, const gchar* display_name, GIcon* icon_hint, gboolean collapsed); UnityCheckOptionFilter* unity_check_option_filter_construct (GType object_t ype, const gchar* id, const gchar* display_name, GIcon* icon_hint, gboolean collapsed);
GType unity_ratings_filter_get_type (void) G_GNUC_CONST; GType unity_ratings_filter_get_type (void) G_GNUC_CONST;
UnityRatingsFilter* unity_ratings_filter_new (const gchar* id, const gchar* display_name, GIcon* icon_hint, gboolean collapsed); UnityRatingsFilter* unity_ratings_filter_new (const gchar* id, const gchar* display_name, GIcon* icon_hint, gboolean collapsed);
UnityRatingsFilter* unity_ratings_filter_construct (GType object_type, cons t gchar* id, const gchar* display_name, GIcon* icon_hint, gboolean collapse d); UnityRatingsFilter* unity_ratings_filter_construct (GType object_type, cons t gchar* id, const gchar* display_name, GIcon* icon_hint, gboolean collapse d);
 End of changes. 5 change blocks. 
0 lines changed or deleted 15 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/