-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccount-edit-context.c
245 lines (212 loc) · 5.75 KB
/
account-edit-context.c
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
/*
* account-edit-context.c
*
* Copyright (C) 2022 Ivaylo Dimitrov <ivo.g.dimitrov.75@gmail.com>
*
* 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.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library. If not, see <https://www.gnu.org/licenses/>.
*
*/
/**
* SECTION:account-edit-context
* @short_description: context data and methods for account editing.
*
* An #AccountEditContext is an object created by the #AccountPlugin for editing
* or creating an #AccountItem. The base class only provides methods for getting
* the context data, so account plugins should provide a subclass of it
* implementing also some interface for performing the actual editing (such as
* the #AccountWizardContext interface, which is currently the only one
* available).
*/
#include "config.h"
#include "account-edit-context.h"
struct _AccountEditContextPrivate
{
AccountItem *account;
AccountPlugin *plugin;
gboolean editing;
};
typedef struct _AccountEditContextPrivate AccountEditContextPrivate;
#define PRIVATE(ctx) \
((AccountEditContextPrivate *) \
account_edit_context_get_instance_private((AccountEditContext *)(ctx)))
G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE(
AccountEditContext,
account_edit_context,
G_TYPE_OBJECT
)
enum
{
PROP_ACCOUNT = 1,
PROP_PLUGIN,
PROP_EDITING
};
static void
account_edit_context_finalize(GObject *object)
{
G_OBJECT_CLASS(account_edit_context_parent_class)->finalize(object);
}
static void
account_edit_context_dispose(GObject *object)
{
AccountEditContextPrivate *priv = PRIVATE(object);
if (priv->account)
{
g_object_unref(priv->account);
priv->account = NULL;
}
if (priv->plugin)
{
g_object_unref(priv->plugin);
priv->plugin = NULL;
}
G_OBJECT_CLASS(account_edit_context_parent_class)->dispose(object);
}
static void
account_edit_context_set_property(GObject *object, guint property_id,
const GValue *value, GParamSpec *pspec)
{
AccountEditContextPrivate *priv;
g_return_if_fail(ACCOUNT_IS_EDIT_CONTEXT(object));
priv = PRIVATE(object);
switch (property_id)
{
case PROP_PLUGIN:
{
priv->plugin = g_value_dup_object(value);
break;
}
case PROP_EDITING:
{
priv->editing = g_value_get_boolean(value);
break;
}
case PROP_ACCOUNT:
{
priv->account = g_value_dup_object(value);
break;
}
default:
{
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, property_id, pspec);
break;
}
}
}
static void
account_edit_context_get_property(GObject *object, guint property_id,
GValue *value, GParamSpec *pspec)
{
AccountEditContextPrivate *priv;
g_return_if_fail(ACCOUNT_IS_EDIT_CONTEXT(object));
priv = PRIVATE(object);
switch (property_id)
{
case PROP_PLUGIN:
{
g_value_set_object(value, priv->plugin);
break;
}
case PROP_EDITING:
{
g_value_set_boolean(value, priv->editing);
break;
}
case PROP_ACCOUNT:
{
g_value_set_object(value, priv->account);
break;
}
default:
{
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, property_id, pspec);
break;
}
}
}
static void
account_edit_context_class_init(AccountEditContextClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS(klass);
object_class->finalize = account_edit_context_finalize;
object_class->dispose = account_edit_context_dispose;
object_class->set_property = account_edit_context_set_property;
object_class->get_property = account_edit_context_get_property;
g_object_class_install_property(
object_class, PROP_ACCOUNT,
g_param_spec_object(
"account",
"Account",
"Account item",
ACCOUNT_TYPE_ITEM,
G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE));
g_object_class_install_property(
object_class, PROP_PLUGIN,
g_param_spec_object(
"plugin",
"Plugin",
"Account plugin",
ACCOUNT_TYPE_PLUGIN,
G_PARAM_CONSTRUCT_ONLY|G_PARAM_READWRITE));
g_object_class_install_property(
object_class, PROP_EDITING,
g_param_spec_boolean(
"editing",
"Editing",
"Editing an existing account",
FALSE,
G_PARAM_CONSTRUCT_ONLY|G_PARAM_READWRITE));
}
static void
account_edit_context_init(AccountEditContext *ctx)
{}
/**
* account_edit_context_get_account
* @context: the #AccountEditContext.
*
* Gets the account item bound to this context.
*
* Returns:(transfer none): the #AccountItem
*/
AccountItem *
account_edit_context_get_account(AccountEditContext *context)
{
g_return_val_if_fail(ACCOUNT_IS_EDIT_CONTEXT(context), NULL);
return PRIVATE(context)->account;
}
/**
* account_edit_context_get_plugin
* @context: the #AccountEditContext.
*
* Gets the account plugin bound to this context.
*
* Returns:(transfer none): the #AccountPlugin
*/
AccountPlugin *
account_edit_context_get_plugin(AccountEditContext *context)
{
g_return_val_if_fail(ACCOUNT_IS_EDIT_CONTEXT(context), NULL);
return PRIVATE(context)->plugin;
}
/**
* account_edit_context_get_editing
* @context: the #AccountEditContext.
*
* Returns: %TRUE if the account is an existing account being edited; %FALSE in
* case it is a newly created one.
*/
gboolean
account_edit_context_get_editing(AccountEditContext *context)
{
g_return_val_if_fail(ACCOUNT_IS_EDIT_CONTEXT(context), FALSE);
return PRIVATE(context)->editing;
}