aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-10-19 14:11:58 -0500
committerTed Gould <ted@canonical.com>2009-10-19 14:11:58 -0500
commitbf1efc1c4c15401798a7d3a3b8ebb9533a9e79a5 (patch)
tree9f892d1a00a429e376c289fe0a0ddf1de975b14b /src
parent6da6b6b7cef68a66cfd0b382e68df462d7b4eb8d (diff)
downloadayatana-indicator-application-bf1efc1c4c15401798a7d3a3b8ebb9533a9e79a5.tar.gz
ayatana-indicator-application-bf1efc1c4c15401798a7d3a3b8ebb9533a9e79a5.tar.bz2
ayatana-indicator-application-bf1efc1c4c15401798a7d3a3b8ebb9533a9e79a5.zip
Header comments and a new signal that we'll need to deal with.
Diffstat (limited to 'src')
-rw-r--r--src/libcustomindicator/custom-indicator.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/libcustomindicator/custom-indicator.h b/src/libcustomindicator/custom-indicator.h
index 0ac8808..a311c63 100644
--- a/src/libcustomindicator/custom-indicator.h
+++ b/src/libcustomindicator/custom-indicator.h
@@ -52,12 +52,46 @@ typedef enum { /*< prefix=CUSTOM_INDICATOR_STATUS >*/
typedef struct _CustomIndicator CustomIndicator;
typedef struct _CustomIndicatorClass CustomIndicatorClass;
+/**
+ CustomIndicatorClass:
+ @parent_class: Mia familia
+ @connection_changed: Slot for #CustomIndicator::connection-changed.
+ @custom_indicator_reserved_1: Reserved for future use.
+ @custom_indicator_reserved_2: Reserved for future use.
+ @custom_indicator_reserved_3: Reserved for future use.
+ @custom_indicator_reserved_4: Reserved for future use.
+
+ The signals and external functions that make up the #CustomIndicator
+ class object.
+*/
struct _CustomIndicatorClass {
+ /* Parent */
GObjectClass parent_class;
+
+ /* Signals */
+ void (* connection_changed) (CustomIndicator * indicator,
+ gboolean connected,
+ gpointer user_data);
+
+ /* Reserved */
+ void (*custom_indicator_reserved_1)(void);
+ void (*custom_indicator_reserved_2)(void);
+ void (*custom_indicator_reserved_3)(void);
+ void (*custom_indicator_reserved_4)(void);
};
+/**
+ CustomIndicator:
+ @parent: Parent object.
+
+ A custom indicator represents the values that are needed to show a
+ unique status in the panel for an application. In general, applications
+ should try to fit in the other indicators that are available on the
+ panel before using this. But, sometimes it is necissary.
+*/
struct _CustomIndicator {
GObject parent;
+ /* None. We're a very private object. */
};
/* GObject Stuff */