1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
/*
* Copyright (C) 2016 Canonical Ltd.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2 or version 3 of the License.
* See http://www.gnu.org/copyleft/lgpl.html the full text of the license.
*/
#include "config.h"
#include <string.h>
#include "snapd-app.h"
struct _SnapdApp
{
GObject parent_instance;
gchar *name;
};
enum
{
PROP_NAME = 1,
PROP_LAST
};
G_DEFINE_TYPE (SnapdApp, snapd_app, G_TYPE_OBJECT)
/**
* snapd_app_get_name:
* @app: a #SnapdApp.
*
* Returns: the name of this app.
*/
const gchar *
snapd_app_get_name (SnapdApp *app)
{
g_return_val_if_fail (SNAPD_IS_APP (app), NULL);
return app->name;
}
static void
snapd_app_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
{
SnapdApp *app = SNAPD_APP (object);
switch (prop_id) {
case PROP_NAME:
g_free (app->name);
app->name = g_strdup (g_value_get_string (value));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
snapd_app_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
{
SnapdApp *app = SNAPD_APP (object);
switch (prop_id) {
case PROP_NAME:
g_value_set_string (value, app->name);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
snapd_app_finalize (GObject *object)
{
SnapdApp *app = SNAPD_APP (object);
g_clear_pointer (&app->name, g_free);
}
static void
snapd_app_class_init (SnapdAppClass *klass)
{
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
gobject_class->set_property = snapd_app_set_property;
gobject_class->get_property = snapd_app_get_property;
gobject_class->finalize = snapd_app_finalize;
g_object_class_install_property (gobject_class,
PROP_NAME,
g_param_spec_string ("name",
"name",
"App name",
NULL,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
}
static void
snapd_app_init (SnapdApp *app)
{
}
|