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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
|
/* gtd-notification.c
*
* Copyright (C) 2015 Georges Basile Stavracas Neto <georges.stavracas@gmail.com>
* Copyright (C) 2022 Jamie Murphy <hello@itsjamie.dev>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#define G_LOG_DOMAIN "GtdNotification"
#include "gtd-notification.h"
#include "gtd-object.h"
#include <glib/gi18n.h>
/**
* SECTION: gtd-notification
* @short_description: An auxiliary class around #AdwToast
* @title: GtdNotification
* @stability: Stable
*
* The #GtdNotification represents a notification shown at the top of
* the window. It is an auxiliary class around #AdwToast, and is used only
* to store toast data and callbacks.
*
* A notification may have a dismissal action that is called when the toast
* is dismissed, whether by user interaction or a timeout
*
* Optionally, the notification may have a secondary action
* (see gtd_notification_set_secondary_action()), shown as a button.
*
* A user should not create a UI for a #GtdNotification and should instead
* pass it to a #GtdManager, via gtd_manager_send_notification()
*
* Example:
* |[
* GtdNotification *notification;
*
* notification = gtd_notification_new ("Something happened!");
*
* gtd_notification_set_dismissal_action (notification,
* called_when_notification_is_dismissed,
* self);
*
* gtd_notification_set_secondary_action (notification,
* "Details",
* show_details,
* self);
* [...]
* ]|
*/
typedef struct
{
gchar *text;
GtdNotificationActionFunc dismissal_action;
gboolean has_dismissal_action;
gpointer dismissal_action_data;
GtdNotificationActionFunc secondary_action;
gboolean has_secondary_action;
gpointer secondary_action_data;
gchar *secondary_action_name;
} GtdNotificationPrivate;
struct _GtdNotification
{
GtdObject parent;
/*< private >*/
GtdNotificationPrivate *priv;
};
G_DEFINE_TYPE_WITH_PRIVATE (GtdNotification, gtd_notification, GTD_TYPE_OBJECT)
enum
{
PROP_0,
PROP_HAS_DISMISSAL_ACTION,
PROP_HAS_SECONDARY_ACTION,
PROP_SECONDARY_ACTION_NAME,
PROP_TEXT,
LAST_PROP
};
enum
{
EXECUTED,
NUM_SIGNALS
};
static guint signals[NUM_SIGNALS] = { 0, };
static void
gtd_notification_finalize (GObject *object)
{
GtdNotification *self = (GtdNotification *)object;
GtdNotificationPrivate *priv = gtd_notification_get_instance_private (self);
g_clear_pointer (&priv->secondary_action_name, g_free);
g_clear_pointer (&priv->text, g_free);
G_OBJECT_CLASS (gtd_notification_parent_class)->finalize (object);
}
static void
gtd_notification_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec)
{
GtdNotification *self = GTD_NOTIFICATION (object);
switch (prop_id)
{
case PROP_HAS_DISMISSAL_ACTION:
g_value_set_boolean (value, self->priv->has_dismissal_action);
break;
case PROP_HAS_SECONDARY_ACTION:
g_value_set_boolean (value, self->priv->has_secondary_action);
break;
case PROP_SECONDARY_ACTION_NAME:
g_value_set_string (value, self->priv->secondary_action_name ? self->priv->secondary_action_name : "");
break;
case PROP_TEXT:
g_value_set_string (value, gtd_notification_get_text (self));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
}
}
static void
gtd_notification_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec)
{
GtdNotification *self = GTD_NOTIFICATION (object);
switch (prop_id)
{
case PROP_SECONDARY_ACTION_NAME:
gtd_notification_set_secondary_action (self,
g_value_get_string (value),
self->priv->secondary_action,
self->priv->secondary_action_data);
break;
case PROP_TEXT:
gtd_notification_set_text (self, g_value_get_string (value));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
}
}
static void
gtd_notification_class_init (GtdNotificationClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
object_class->finalize = gtd_notification_finalize;
object_class->get_property = gtd_notification_get_property;
object_class->set_property = gtd_notification_set_property;
/**
* GtdNotification::has-dismissal-action:
*
* @TRUE if the notification has a dismissal action or @FALSE otherwise.
*/
g_object_class_install_property (
object_class,
PROP_HAS_DISMISSAL_ACTION,
g_param_spec_boolean ("has-dismissal-action",
"Whether the notification has a dismissal action",
"Whether the notification has the dismissal action.",
FALSE,
G_PARAM_READABLE | G_PARAM_EXPLICIT_NOTIFY));
/**
* GtdNotification::has-secondary-action:
*
* @TRUE if the notification has a secondary action or @FALSE otherwise. The
* secondary action is triggered only by user explicit input.
*/
g_object_class_install_property (
object_class,
PROP_HAS_SECONDARY_ACTION,
g_param_spec_boolean ("has-secondary-action",
"Whether the notification has a secondary action",
"Whether the notification has the secondary action, activated by the user",
FALSE,
G_PARAM_READABLE | G_PARAM_EXPLICIT_NOTIFY));
/**
* GtdNotification::secondary-action-name:
*
* The main text of the notification, usually a markuped text.
*/
g_object_class_install_property (
object_class,
PROP_SECONDARY_ACTION_NAME,
g_param_spec_string ("secondary-action-name",
"Text of the secondary action button",
"The text of the secondary action button",
"",
G_PARAM_READWRITE));
/**
* GtdNotification::text:
*
* The main text of the notification, usually a markuped text.
*/
g_object_class_install_property (
object_class,
PROP_TEXT,
g_param_spec_string ("text",
"Notification message",
"The main message of the notification",
"",
G_PARAM_READWRITE));
/**
* GtdNotification::executed:
*
* The ::executed signal is emitted after the primary or secondary
* #GtdNotification action is executed.
*/
signals[EXECUTED] = g_signal_new ("executed",
GTD_TYPE_NOTIFICATION,
G_SIGNAL_RUN_FIRST,
0,
NULL,
NULL,
NULL,
G_TYPE_NONE,
0);
}
static void
gtd_notification_init (GtdNotification *self)
{
self->priv = gtd_notification_get_instance_private (self);
self->priv->secondary_action_name = NULL;
self->priv->text = NULL;
}
/**
* gtd_notification_new:
* @text: (nullable): text of the notification
*
* Creates a new notification with @text.
*
* Returns: (transfer full): a new #GtdNotification
*/
GtdNotification*
gtd_notification_new (const gchar *text)
{
return g_object_new (GTD_TYPE_NOTIFICATION,
"text", text,
NULL);
}
/**
* gtd_notification_set_dismissal_action:
* @notification: a #GtdNotification
* @func: (closure user_data) (scope call) (nullable): the dismissal action function
* @user_data: data passed to @func
*
* Sets the dismissal action of @notification
*/
void
gtd_notification_set_dismissal_action (GtdNotification *notification,
GtdNotificationActionFunc func,
gpointer user_data)
{
GtdNotificationPrivate *priv;
gboolean has_action;
g_return_if_fail (GTD_IS_NOTIFICATION (notification));
priv = notification->priv;
has_action = (func != NULL);
if (has_action != priv->has_dismissal_action)
{
priv->has_dismissal_action = has_action;
priv->dismissal_action = has_action ? func : NULL;
priv->dismissal_action_data = has_action ? user_data : NULL;
g_object_notify (G_OBJECT (notification), "has-dismissal-action");
}
}
/**
* gtd_notification_set_secondary_action:
* @notification: a #GtdNotification
* @name: the name of the secondary action
* @func: (closure user_data) (scope call) (nullable): the secondary action function
* @user_data: data passed to @func
*
* Sets the secondary action of @notification, which is triggered
* only on user explicit input.
*/
void
gtd_notification_set_secondary_action (GtdNotification *notification,
const gchar *name,
GtdNotificationActionFunc func,
gpointer user_data)
{
GtdNotificationPrivate *priv;
gboolean has_action;
g_return_if_fail (GTD_IS_NOTIFICATION (notification));
priv = notification->priv;
has_action = (func != NULL);
if (has_action != priv->has_secondary_action)
{
priv->has_secondary_action = has_action;
priv->secondary_action = has_action ? func : NULL;
priv->secondary_action_data = has_action ? user_data : NULL;
if (priv->secondary_action_name != name)
{
g_clear_pointer (&priv->secondary_action_name, g_free);
priv->secondary_action_name = g_strdup (name);
g_object_notify (G_OBJECT (notification), "secondary-action-name");
}
g_object_notify (G_OBJECT (notification), "has-secondary-action");
}
}
/**
* gtd_notification_get_text:
* @notification: a #GtdNotification
*
* Gets the text of @notification.
*
* Returns: (transfer none): the text of @notification.
*/
const gchar*
gtd_notification_get_text (GtdNotification *notification)
{
g_return_val_if_fail (GTD_IS_NOTIFICATION (notification), NULL);
return notification->priv->text ? notification->priv->text : "";
}
/**
* gtd_notification_set_text:
* @notification: a #GtdNotification
* @text: the user-visible text of @notification
*
* Sets the text of @notification to @text.
*/
void
gtd_notification_set_text (GtdNotification *notification,
const gchar *text)
{
GtdNotificationPrivate *priv;
g_return_if_fail (GTD_IS_NOTIFICATION (notification));
priv = notification->priv;
if (g_strcmp0 (priv->text, text) != 0)
{
g_clear_pointer (&priv->text, g_free);
priv->text = g_strdup (text);
g_object_notify (G_OBJECT (notification), "text");
}
}
/**
* gtd_notification_execute_dismissal_action:
* @notification: a #GtdNotification
*
* Executes the dismissal action of @notification if any.
*/
void
gtd_notification_execute_dismissal_action (GtdNotification *notification)
{
GtdNotificationPrivate *priv;
g_return_if_fail (GTD_IS_NOTIFICATION (notification));
priv = notification->priv;
if (priv->dismissal_action)
priv->dismissal_action (notification, priv->dismissal_action_data);
g_signal_emit (notification, signals[EXECUTED], 0);
}
/**
* gtd_notification_execute_secondary_action:
* @notification: a #GtdNotification
*
* Executes the secondary action of @notification if any.
*/
void
gtd_notification_execute_secondary_action (GtdNotification *notification)
{
GtdNotificationPrivate *priv;
g_return_if_fail (GTD_IS_NOTIFICATION (notification));
priv = notification->priv;
if (priv->secondary_action)
{
priv->secondary_action (notification, priv->secondary_action_data);
g_signal_emit (notification, signals[EXECUTED], 0);
}
}
|