diff options
author | Ted Gould <ted@canonical.com> | 2009-01-29 13:39:31 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-01-29 13:39:31 -0600 |
commit | 17bc0dab5a61d41e1a57755f7b2d1cdbe79e90da (patch) | |
tree | 76b90fa38c10ef625c86d2bf88bc10dd2014ccae /libindicate/server.h | |
parent | b6c14253a035bdf06b1b84a1a6ccd04e87ae23b5 (diff) | |
parent | de80300e02efb93d3cf4bd06733dd8c691451de6 (diff) | |
download | libayatana-indicator-17bc0dab5a61d41e1a57755f7b2d1cdbe79e90da.tar.gz libayatana-indicator-17bc0dab5a61d41e1a57755f7b2d1cdbe79e90da.tar.bz2 libayatana-indicator-17bc0dab5a61d41e1a57755f7b2d1cdbe79e90da.zip |
* Fixing the handling of named DBus connections
* Moving most of the data in the objects to private sections
* Making the signal names defines for easier usage
* Having property changes actually work now.
Diffstat (limited to 'libindicate/server.h')
-rw-r--r-- | libindicate/server.h | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/libindicate/server.h b/libindicate/server.h index bc4522d..482fb9a 100644 --- a/libindicate/server.h +++ b/libindicate/server.h @@ -5,6 +5,8 @@ #include <glib.h> #include <glib-object.h> +#include "indicator.h" + G_BEGIN_DECLS /* Boilerplate */ @@ -16,19 +18,8 @@ G_BEGIN_DECLS #define INDICATE_SERVER_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS((object), INDICATE_TYPE_SERVER, IndicateServerClass)) typedef struct _IndicateServer IndicateServer; - -#include "indicator.h" - struct _IndicateServer { GObject parent; - - 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; }; typedef struct _IndicateServerClass IndicateServerClass; |