aboutsummaryrefslogtreecommitdiff
path: root/libindicator
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-10-29 20:12:44 -0500
committerTed Gould <ted@canonical.com>2009-10-29 20:12:44 -0500
commit12fbcd5566d35303777958048c069d0e8e775b3f (patch)
tree86928f5445a9eafb8417972646b83ac5ca551ebc /libindicator
parent9af4097a1f0df273ca8891e3ef6ec579e5032060 (diff)
downloadlibayatana-indicator-12fbcd5566d35303777958048c069d0e8e775b3f.tar.gz
libayatana-indicator-12fbcd5566d35303777958048c069d0e8e775b3f.tar.bz2
libayatana-indicator-12fbcd5566d35303777958048c069d0e8e775b3f.zip
Properties functions.
Diffstat (limited to 'libindicator')
-rw-r--r--libindicator/indicator-service-manager.c76
1 files changed, 76 insertions, 0 deletions
diff --git a/libindicator/indicator-service-manager.c b/libindicator/indicator-service-manager.c
index dbf96b1..1b169cd 100644
--- a/libindicator/indicator-service-manager.c
+++ b/libindicator/indicator-service-manager.c
@@ -39,6 +39,11 @@ static void indicator_service_manager_init (IndicatorServiceManager *self)
static void indicator_service_manager_dispose (GObject *object);
static void indicator_service_manager_finalize (GObject *object);
+/* Prototypes */
+static void set_property (GObject * object, guint prop_id, const GValue * value, GParamSpec * pspec);
+static void get_property (GObject * object, guint prop_id, GValue * value, GParamSpec * pspec);
+static void start_service (IndicatorServiceManager * service);
+
G_DEFINE_TYPE (IndicatorServiceManager, indicator_service_manager, G_TYPE_OBJECT);
static void
@@ -51,6 +56,10 @@ indicator_service_manager_class_init (IndicatorServiceManagerClass *klass)
object_class->dispose = indicator_service_manager_dispose;
object_class->finalize = indicator_service_manager_finalize;
+ /* Property funcs */
+ object_class->set_property = set_property;
+ object_class->get_property = get_property;
+
/**
IndicatorServiceManager::connecton-change:
@arg0: The #IndicatorServiceManager object
@@ -101,6 +110,73 @@ indicator_service_manager_finalize (GObject *object)
return;
}
+static void
+set_property (GObject * object, guint prop_id, const GValue * value, GParamSpec * pspec)
+{
+ IndicatorServiceManager * self = INDICATOR_SERVICE_MANAGER(object);
+ g_return_if_fail(self != NULL);
+
+ IndicatorServiceManagerPrivate * priv = INDICATOR_SERVICE_MANAGER_GET_PRIVATE(self);
+ g_return_if_fail(priv != NULL);
+
+ switch (prop_id) {
+ /* *********************** */
+ case PROP_NAME:
+ if (G_VALUE_HOLDS_STRING(value)) {
+ if (priv->name != NULL) {
+ g_error("Name can not be set twice!");
+ return;
+ }
+ priv->name = g_value_dup_string(value);
+ start_service(self);
+ } else {
+ g_warning("Name is a string bud.");
+ }
+ break;
+ /* *********************** */
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+ break;
+ }
+
+ return;
+}
+
+static void
+get_property (GObject * object, guint prop_id, GValue * value, GParamSpec * pspec)
+{
+ IndicatorServiceManager * self = INDICATOR_SERVICE_MANAGER(object);
+ g_return_if_fail(self != NULL);
+
+ IndicatorServiceManagerPrivate * priv = INDICATOR_SERVICE_MANAGER_GET_PRIVATE(self);
+ g_return_if_fail(priv != NULL);
+
+ switch (prop_id) {
+ /* *********************** */
+ case PROP_NAME:
+ if (G_VALUE_HOLDS_STRING(value)) {
+ g_value_set_string(value, priv->name);
+ } else {
+ g_warning("Name is a string bud.");
+ }
+ break;
+ /* *********************** */
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+ break;
+ }
+
+ return;
+}
+
+static void
+start_service (IndicatorServiceManager * service)
+{
+
+
+ return;
+}
+
/* API */
IndicatorServiceManager *
indicator_service_manager_new (gchar * dbus_name)