diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:39:48 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:39:48 +0000 |
commit | 3ade071f273aaa973e44bf95d6b1d4913a18f03b (patch) | |
tree | e2f99d267ae18427645404f215b984afbe73098d /libnautilus-extension/nautilus-properties-item.c | |
parent | Initial commit. (diff) | |
download | nautilus-3ade071f273aaa973e44bf95d6b1d4913a18f03b.tar.xz nautilus-3ade071f273aaa973e44bf95d6b1d4913a18f03b.zip |
Adding upstream version 43.2.upstream/43.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | libnautilus-extension/nautilus-properties-item.c | 149 |
1 files changed, 149 insertions, 0 deletions
diff --git a/libnautilus-extension/nautilus-properties-item.c b/libnautilus-extension/nautilus-properties-item.c new file mode 100644 index 0000000..8731274 --- /dev/null +++ b/libnautilus-extension/nautilus-properties-item.c @@ -0,0 +1,149 @@ +/* + * Copyright (C) 2022 António Fernandes <antoniof@gnome.org> + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ + +#include <config.h> +#include "nautilus-properties-item.h" + +enum +{ + PROP_0, + PROP_NAME, + PROP_VALUE, + LAST_PROP +}; + +struct _NautilusPropertiesItem +{ + GObject parent_instance; + + char *name; + char *value; +}; + +G_DEFINE_TYPE (NautilusPropertiesItem, nautilus_properties_item, G_TYPE_OBJECT) + +NautilusPropertiesItem * +nautilus_properties_item_new (const char *name, + const char *value) +{ + g_return_val_if_fail (name != NULL, NULL); + g_return_val_if_fail (name != NULL, NULL); + + return g_object_new (NAUTILUS_TYPE_PROPERTIES_ITEM, + "name", name, + "value", value, + NULL); +} + +static void +nautilus_properties_item_get_property (GObject *object, + guint param_id, + GValue *value, + GParamSpec *pspec) +{ + NautilusPropertiesItem *self = NAUTILUS_PROPERTIES_ITEM (object); + + switch (param_id) + { + case PROP_NAME: + { + g_value_set_string (value, self->name); + } + break; + + case PROP_VALUE: + { + g_value_set_string (value, self->value); + } + break; + + default: + { + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec); + } + break; + } +} + +static void +nautilus_properties_item_set_property (GObject *object, + guint param_id, + const GValue *value, + GParamSpec *pspec) +{ + NautilusPropertiesItem *self = NAUTILUS_PROPERTIES_ITEM (object); + + switch (param_id) + { + case PROP_NAME: + { + g_free (self->name); + self->name = g_value_dup_string (value); + } + break; + + case PROP_VALUE: + { + g_free (self->value); + self->value = g_value_dup_string (value); + } + break; + + default: + { + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec); + } + break; + } +} + +static void +nautilus_properties_item_finalize (GObject *object) +{ + NautilusPropertiesItem *self = NAUTILUS_PROPERTIES_ITEM (object); + + g_free (self->name); + g_free (self->value); + + G_OBJECT_CLASS (nautilus_properties_item_parent_class)->finalize (object); +} + +static void +nautilus_properties_item_init (NautilusPropertiesItem *self) +{ +} + +static void +nautilus_properties_item_class_init (NautilusPropertiesItemClass *class) +{ + GParamSpec *pspec; + + G_OBJECT_CLASS (class)->finalize = nautilus_properties_item_finalize; + G_OBJECT_CLASS (class)->get_property = nautilus_properties_item_get_property; + G_OBJECT_CLASS (class)->set_property = nautilus_properties_item_set_property; + + pspec = g_param_spec_string ("name", "", "", + NULL, + G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); + g_object_class_install_property (G_OBJECT_CLASS (class), PROP_NAME, pspec); + + pspec = g_param_spec_string ("value", "", "", + NULL, + G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); + g_object_class_install_property (G_OBJECT_CLASS (class), PROP_VALUE, pspec); +} + +const char * +nautilus_properties_item_get_name (NautilusPropertiesItem *self) +{ + return self->name; +} + +const char * +nautilus_properties_item_get_value (NautilusPropertiesItem *self) +{ + return self->value; +} |