mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-26 08:56:22 +00:00
Init and uninit libnotify
This commit is contained in:
@@ -145,6 +145,11 @@ gui_refresh(void)
|
|||||||
void
|
void
|
||||||
gui_close(void)
|
gui_close(void)
|
||||||
{
|
{
|
||||||
|
#ifdef HAVE_LIBNOTIFY
|
||||||
|
if (notify_is_initted()) {
|
||||||
|
notify_uninit();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
endwin();
|
endwin();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -290,17 +295,24 @@ static void
|
|||||||
_win_notify(const char * const message, int timeout,
|
_win_notify(const char * const message, int timeout,
|
||||||
const char * const category)
|
const char * const category)
|
||||||
{
|
{
|
||||||
notify_init("Profanity");
|
gboolean notify_initted = notify_is_initted();
|
||||||
|
|
||||||
// create a new notification
|
|
||||||
NotifyNotification *notification;
|
|
||||||
notification = notify_notification_new("Profanity", message, NULL);
|
|
||||||
notify_notification_set_timeout(notification, timeout);
|
|
||||||
notify_notification_set_category(notification, category);
|
|
||||||
notify_notification_set_urgency(notification, NOTIFY_URGENCY_NORMAL);
|
|
||||||
|
|
||||||
GError *error = NULL;
|
if (!notify_initted) {
|
||||||
notify_notification_show(notification, &error);
|
notify_initted = notify_init("Profanity");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (notify_initted) {
|
||||||
|
NotifyNotification *notification;
|
||||||
|
notification = notify_notification_new("Profanity", message, NULL);
|
||||||
|
notify_notification_set_timeout(notification, timeout);
|
||||||
|
notify_notification_set_category(notification, category);
|
||||||
|
notify_notification_set_urgency(notification, NOTIFY_URGENCY_NORMAL);
|
||||||
|
|
||||||
|
GError *error = NULL;
|
||||||
|
notify_notification_show(notification, &error);
|
||||||
|
} else {
|
||||||
|
log_error("Libnotify initialisation error.");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|||||||
Reference in New Issue
Block a user