electron/shell/browser/notifications/linux/libnotify_notification.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.3 KiB
C
Raw Normal View History

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.
#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
#include "library_loaders/libnotify_loader.h"
#include "shell/browser/notifications/notification.h"
2015-12-25 03:52:19 +00:00
#include "ui/base/glib/glib_signal.h"
namespace electron {
2015-12-25 03:52:19 +00:00
class LibnotifyNotification : public Notification {
public:
LibnotifyNotification(NotificationDelegate* delegate,
NotificationPresenter* presenter);
~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:
2018-04-18 01:46:27 +00:00
CHROMEG_CALLBACK_0(LibnotifyNotification,
void,
OnNotificationClosed,
2015-12-25 03:52:19 +00:00
NotifyNotification*);
2018-04-18 01:46:27 +00:00
CHROMEG_CALLBACK_1(LibnotifyNotification,
void,
OnNotificationView,
NotifyNotification*,
char*);
2015-12-25 03:52:19 +00:00
NotifyNotification* notification_ = nullptr;
2015-12-25 03:52:19 +00:00
};
} // namespace electron
2015-12-25 03:52:19 +00:00
#endif // ELECTRON_SHELL_BROWSER_NOTIFICATIONS_LINUX_LIBNOTIFY_NOTIFICATION_H_