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.h | |
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.h | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/libnautilus-extension/nautilus-properties-item.h b/libnautilus-extension/nautilus-properties-item.h new file mode 100644 index 0000000..c55fb91 --- /dev/null +++ b/libnautilus-extension/nautilus-properties-item.h @@ -0,0 +1,61 @@ +/* + * Copyright (C) 2022 António Fernandes <antoniof@gnome.org> + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ + +#pragma once + +#if !defined (NAUTILUS_EXTENSION_H) && !defined (NAUTILUS_COMPILATION) +#warning "Only <nautilus-extension.h> should be included directly." +#endif + +#include <glib-object.h> + +G_BEGIN_DECLS + +#define NAUTILUS_TYPE_PROPERTIES_ITEM (nautilus_properties_item_get_type ()) + +G_DECLARE_FINAL_TYPE (NautilusPropertiesItem, + nautilus_properties_item, + NAUTILUS, PROPERTIES_ITEM, + GObject) + +/** + * SECTION:nautilus-properties-item + * @name: NautilusPropertiesItem + * @value: Properties item descriptor object + * + * #NautilusPropertiesItem is an object that describes a name & value pair in + * file properties. Extensions can provide #NautilusPropertiesItem objects in + * models provided by #NautilusPropertiesModel. + */ + +/** + * nautilus_properties_item_new: + * @name: the user-visible name for the properties item. + * @value: the user-visible value for the properties item. + * + * Returns: (transfer full): a new #NautilusPropertiesItem + */ +NautilusPropertiesItem *nautilus_properties_item_new (const char *name, + const char *value); + +/** + * nautilus_properties_item_get_name: + * @self: the properties item + * + * Returns: (transfer none): the name of this #NautilusPropertiesItem + */ +const char *nautilus_properties_item_get_name (NautilusPropertiesItem *self); + +/** + * nautilus_properties_item_get_value: + * @self: the properties item + * + * Returns: (transfer none): the value of this #NautilusPropertiesItem + */ +const char * nautilus_properties_item_get_value (NautilusPropertiesItem *self); + + +G_END_DECLS |