2015-12-25 03:52:19 +00:00
|
|
|
// Copyright (c) 2015 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_NOTIFICATIONS_LINUX_LIBNOTIFY_NOTIFICATION_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_NOTIFICATIONS_LINUX_LIBNOTIFY_NOTIFICATION_H_
|
2015-12-25 03:52:19 +00:00
|
|
|
|
2023-05-11 20:07:39 +00:00
|
|
|
#include "base/memory/raw_ptr_exclusion.h"
|
2018-11-10 19:21:40 +00:00
|
|
|
#include "library_loaders/libnotify_loader.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/notifications/notification.h"
|
2023-10-05 23:59:39 +00:00
|
|
|
#include "ui/base/glib/scoped_gsignal.h"
|
2015-12-25 03:52:19 +00:00
|
|
|
|
2018-10-17 18:01:11 +00:00
|
|
|
namespace electron {
|
2015-12-25 03:52:19 +00:00
|
|
|
|
|
|
|
class LibnotifyNotification : public Notification {
|
|
|
|
public:
|
|
|
|
LibnotifyNotification(NotificationDelegate* delegate,
|
|
|
|
NotificationPresenter* presenter);
|
2018-04-17 23:03:51 +00:00
|
|
|
~LibnotifyNotification() override;
|
2015-12-25 03:52:19 +00:00
|
|
|
|
|
|
|
static bool Initialize();
|
|
|
|
|
|
|
|
// Notification:
|
2017-06-24 11:03:27 +00:00
|
|
|
void Show(const NotificationOptions& options) override;
|
2015-12-25 03:52:19 +00:00
|
|
|
void Dismiss() override;
|
|
|
|
|
|
|
|
private:
|
2023-10-05 23:59:39 +00:00
|
|
|
void OnNotificationClosed(NotifyNotification* notification);
|
|
|
|
static void OnNotificationView(NotifyNotification* notification,
|
|
|
|
char* action,
|
|
|
|
gpointer user_data);
|
2015-12-25 03:52:19 +00:00
|
|
|
|
2023-05-11 20:07:39 +00:00
|
|
|
RAW_PTR_EXCLUSION NotifyNotification* notification_ = nullptr;
|
2023-10-05 23:59:39 +00:00
|
|
|
|
|
|
|
ScopedGSignal signal_;
|
2024-03-27 09:53:23 +00:00
|
|
|
bool on_dismissing_ = false;
|
2015-12-25 03:52:19 +00:00
|
|
|
};
|
|
|
|
|
2018-10-17 18:01:11 +00:00
|
|
|
} // namespace electron
|
2015-12-25 03:52:19 +00:00
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_NOTIFICATIONS_LINUX_LIBNOTIFY_NOTIFICATION_H_
|