diff options
author | Ted Gould <ted@canonical.com> | 2009-01-14 10:26:09 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-01-14 10:26:09 -0600 |
commit | 89bf87a36bb6e71b205d1d447d75dc0727065ff0 (patch) | |
tree | 25bc2e9aa7b2f2dc18e9df8cdf9d9e0a97e05026 /libindicate/server.h | |
parent | 71820cb18ffb779c39e15e758515c6bcad8ac455 (diff) | |
parent | c14592279f3feaad53e397155ecc515e5623d940 (diff) | |
download | libayatana-indicator-89bf87a36bb6e71b205d1d447d75dc0727065ff0.tar.gz libayatana-indicator-89bf87a36bb6e71b205d1d447d75dc0727065ff0.tar.bz2 libayatana-indicator-89bf87a36bb6e71b205d1d447d75dc0727065ff0.zip |
Merging in code from yesterday. Got many of the functions working with
real IDs and making lists. The basis for all the properties stuff is there
but it still needs a touch of fleshing out. Also a new test for debugging.
Diffstat (limited to 'libindicate/server.h')
-rw-r--r-- | libindicate/server.h | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/libindicate/server.h b/libindicate/server.h index ef00846..75a1ffb 100644 --- a/libindicate/server.h +++ b/libindicate/server.h @@ -24,6 +24,8 @@ struct _IndicateServer { gchar * path; GSList * indicators; + gboolean visible; + guint current_id; // TODO: Should have a more robust way to track this, but this'll work for now guint num_hidden; @@ -42,12 +44,13 @@ struct _IndicateServerClass { gboolean (*get_desktop) (IndicateServer * server, gchar ** desktop_path, GError **error); gboolean (*get_indicator_count) (IndicateServer * server, guint * count, GError **error); gboolean (*get_indicator_count_by_type) (IndicateServer * server, gchar * type, guint * count, GError **error); - gboolean (*get_indicator_list) (IndicateServer * server, guint ** indicators, GError ** error); + gboolean (*get_indicator_list) (IndicateServer * server, GArray ** indicators, GError ** error); gboolean (*get_indicator_list_by_type) (IndicateServer * server, gchar * type, guint ** indicators, GError ** error); gboolean (*get_indicator_property) (IndicateServer * server, guint id, gchar * property, gchar ** value, GError **error); - gboolean (*get_indicator_property_group) (IndicateServer * server, guint id, gchar ** properties, gchar *** value, GError **error); - gboolean (*get_indicator_properties) (IndicateServer * server, guint id, gchar *** properties, GError **error); + gboolean (*get_indicator_property_group) (IndicateServer * server, guint id, GPtrArray * properties, GPtrArray ** value, GError **error); + gboolean (*get_indicator_properties) (IndicateServer * server, guint id, GPtrArray ** properties, GError **error); gboolean (*show_indicator_to_user) (IndicateServer * server, guint id, GError ** error); + guint (*get_next_id) (IndicateServer * server); }; GType indicate_server_get_type (void) G_GNUC_CONST; @@ -69,6 +72,7 @@ void indicate_server_set_desktop_file (const gchar * path); void indicate_server_show (IndicateServer * server); void indicate_server_hide (IndicateServer * server); +guint indicate_server_get_next_id (IndicateServer * server); void indicate_server_add_indicator (IndicateServer * server, IndicateIndicator * indicator); void indicate_server_remove_indicator (IndicateServer * server, IndicateIndicator * indicator); @@ -79,11 +83,11 @@ void indicate_server_set_default (IndicateServer * server); gboolean indicate_server_get_desktop (IndicateServer * server, gchar ** desktop_path, GError **error); gboolean indicate_server_get_indicator_count (IndicateServer * server, guint * count, GError **error); gboolean indicate_server_get_indicator_count_by_type (IndicateServer * server, gchar * type, guint * count, GError **error); -gboolean indicate_server_get_indicator_list (IndicateServer * server, guint ** indicators, GError ** error); +gboolean indicate_server_get_indicator_list (IndicateServer * server, GArray ** indicators, GError ** error); gboolean indicate_server_get_indicator_list_by_type (IndicateServer * server, gchar * type, guint ** indicators, GError ** error); gboolean indicate_server_get_indicator_property (IndicateServer * server, guint id, gchar * property, gchar ** value, GError **error); -gboolean indicate_server_get_indicator_property_group (IndicateServer * server, guint id, gchar ** properties, gchar *** value, GError **error); -gboolean indicate_server_get_indicator_properties (IndicateServer * server, guint id, gchar *** properties, GError **error); +gboolean indicate_server_get_indicator_property_group (IndicateServer * server, guint id, GPtrArray * properties, GPtrArray ** value, GError **error); +gboolean indicate_server_get_indicator_properties (IndicateServer * server, guint id, GPtrArray ** properties, GError **error); gboolean indicate_server_show_indicator_to_user (IndicateServer * server, guint id, GError ** error); G_END_DECLS |