diff options
author | Ted Gould <ted@canonical.com> | 2009-02-05 18:23:06 +0100 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-02-05 18:23:06 +0100 |
commit | 246b29b42c166849534eedb087838248095e00c6 (patch) | |
tree | a0653ddbfc8ba9997d8f9d85ad18864e29d2f542 /libindicate/server.h | |
parent | e6ff0d4856b0ffe1946332cd29d3a9683397c7bc (diff) | |
parent | c18cbee8cb5197d9e2bc024e792842be6588b8da (diff) | |
download | libayatana-indicator-246b29b42c166849534eedb087838248095e00c6.tar.gz libayatana-indicator-246b29b42c166849534eedb087838248095e00c6.tar.bz2 libayatana-indicator-246b29b42c166849534eedb087838248095e00c6.zip |
releasing version 0.1~ppa28
Diffstat (limited to 'libindicate/server.h')
-rw-r--r-- | libindicate/server.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libindicate/server.h b/libindicate/server.h index eccf3c6..c2b2191 100644 --- a/libindicate/server.h +++ b/libindicate/server.h @@ -30,9 +30,10 @@ struct _IndicateServerClass { void (* indicator_added) (IndicateServer * server, guint id, gchar * type); void (* indicator_removed) (IndicateServer * server, guint id, gchar * type); void (* indicator_modified) (IndicateServer * server, guint id, gchar * property); + void (* server_show) (IndicateServer * server, gchar * type); + void (* server_hide) (IndicateServer * server, gchar * type); /* Virtual Functions */ - 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, GArray ** indicators, GError ** error); @@ -71,7 +72,6 @@ IndicateServer * indicate_server_ref_default (void); void indicate_server_set_default (IndicateServer * server); /* DBus API */ -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, GArray ** indicators, GError ** error); |