diff options
author | Ted Gould <ted@canonical.com> | 2009-10-29 10:49:12 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-10-29 10:49:12 -0500 |
commit | b60a7f11342b8711e4bea8a51cc558d30ebbb293 (patch) | |
tree | d01840ed57ed8bf75472e60608bcc2f37c2cf4a6 /libindicator/indicator-service.h | |
parent | 0af9206bc55a78a2e39ba86b07450a15ed399eee (diff) | |
download | libayatana-indicator-b60a7f11342b8711e4bea8a51cc558d30ebbb293.tar.gz libayatana-indicator-b60a7f11342b8711e4bea8a51cc558d30ebbb293.tar.bz2 libayatana-indicator-b60a7f11342b8711e4bea8a51cc558d30ebbb293.zip |
Adding basic interfaces and docs to IndicatorService
Diffstat (limited to 'libindicator/indicator-service.h')
-rw-r--r-- | libindicator/indicator-service.h | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/libindicator/indicator-service.h b/libindicator/indicator-service.h index 48f1d81..63c3f4b 100644 --- a/libindicator/indicator-service.h +++ b/libindicator/indicator-service.h @@ -13,14 +13,39 @@ G_BEGIN_DECLS #define INDICATOR_IS_SERVICE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), INDICATOR_SERVICE_TYPE)) #define INDICATOR_SERVICE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), INDICATOR_SERVICE_TYPE, IndicatorServiceClass)) +#define INDICATOR_SERVICE_SIGNAL_SHUTDOWN "shutdown" + typedef struct _IndicatorService IndicatorService; typedef struct _IndicatorServiceClass IndicatorServiceClass; +/** + IndicatorServiceClass: + @parent_class: #GObjectClass + @shutdown: Slot for IndicatorServiceClass::shutdown + @indicator_service_reserved1: Reserved for future use + @indicator_service_reserved2: Reserved for future use + @indicator_service_reserved3: Reserved for future use + @indicator_service_reserved4: Reserved for future use + +*/ struct _IndicatorServiceClass { GObjectClass parent_class; - + + /* Signals */ + void (*shutdown) (IndicatorService * service, gpointer user_data); + + /* Reserved */ + void (*indicator_service_reserved1) (void); + void (*indicator_service_reserved2) (void); + void (*indicator_service_reserved3) (void); + void (*indicator_service_reserved4) (void); }; +/** + IndicatorService: + @parent: #GObject + +*/ struct _IndicatorService { GObject parent; @@ -28,6 +53,8 @@ struct _IndicatorService { GType indicator_service_get_type (void); +IndicatorService * inidcator_service_new (gchar * name); + G_END_DECLS #endif |