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.
|
|
|
|
|
2017-05-18 22:05:25 +00:00
|
|
|
#ifndef BRIGHTRAY_BROWSER_LINUX_LIBNOTIFY_NOTIFICATION_H_
|
|
|
|
#define BRIGHTRAY_BROWSER_LINUX_LIBNOTIFY_NOTIFICATION_H_
|
2015-12-25 03:52:19 +00:00
|
|
|
|
2017-05-18 22:06:57 +00:00
|
|
|
#include <string>
|
2017-06-23 10:39:42 +00:00
|
|
|
#include <vector>
|
2017-05-18 22:06:57 +00:00
|
|
|
|
2017-05-18 22:58:12 +00:00
|
|
|
#include "brightray/browser/linux/libnotify_loader.h"
|
|
|
|
#include "brightray/browser/notification.h"
|
2015-12-25 03:52:19 +00:00
|
|
|
#include "ui/base/glib/glib_signal.h"
|
|
|
|
|
|
|
|
namespace brightray {
|
|
|
|
|
|
|
|
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:
|
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_;
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(LibnotifyNotification);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace brightray
|
|
|
|
|
2017-05-18 22:05:25 +00:00
|
|
|
#endif // BRIGHTRAY_BROWSER_LINUX_LIBNOTIFY_NOTIFICATION_H_
|