2015-12-24 22:06:41 +08: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 08:34:31 +01:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_NOTIFICATIONS_NOTIFICATION_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_NOTIFICATIONS_NOTIFICATION_H_
|
2015-12-24 22:06:41 +08:00
|
|
|
|
2017-05-18 15:06:57 -07:00
|
|
|
#include <string>
|
2017-06-23 20:39:42 +10:00
|
|
|
#include <vector>
|
2017-05-18 15:06:57 -07:00
|
|
|
|
2023-05-11 16:07:39 -04:00
|
|
|
#include "base/memory/raw_ptr.h"
|
2015-12-24 22:06:41 +08:00
|
|
|
#include "base/memory/weak_ptr.h"
|
2017-06-24 21:03:27 +10:00
|
|
|
#include "third_party/skia/include/core/SkBitmap.h"
|
|
|
|
#include "url/gurl.h"
|
2015-12-24 22:06:41 +08:00
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
namespace electron {
|
2015-12-24 22:06:41 +08:00
|
|
|
|
2015-12-25 10:16:07 +08:00
|
|
|
class NotificationDelegate;
|
|
|
|
class NotificationPresenter;
|
|
|
|
|
2017-06-23 20:39:42 +10:00
|
|
|
struct NotificationAction {
|
2021-03-16 12:18:45 -04:00
|
|
|
std::u16string type;
|
|
|
|
std::u16string text;
|
2017-06-23 20:39:42 +10:00
|
|
|
};
|
|
|
|
|
2017-06-24 21:03:27 +10:00
|
|
|
struct NotificationOptions {
|
2021-03-16 12:18:45 -04:00
|
|
|
std::u16string title;
|
|
|
|
std::u16string subtitle;
|
|
|
|
std::u16string msg;
|
2017-06-24 21:03:27 +10:00
|
|
|
std::string tag;
|
2018-01-22 10:48:12 -08:00
|
|
|
bool silent;
|
2017-06-24 21:03:27 +10:00
|
|
|
GURL icon_url;
|
|
|
|
SkBitmap icon;
|
|
|
|
bool has_reply;
|
2021-03-16 12:18:45 -04:00
|
|
|
std::u16string timeout_type;
|
|
|
|
std::u16string reply_placeholder;
|
|
|
|
std::u16string sound;
|
|
|
|
std::u16string urgency; // Linux
|
2017-06-24 21:03:27 +10:00
|
|
|
std::vector<NotificationAction> actions;
|
2021-03-16 12:18:45 -04:00
|
|
|
std::u16string close_button_text;
|
|
|
|
std::u16string toast_xml;
|
2018-04-17 16:37:22 -07:00
|
|
|
|
|
|
|
NotificationOptions();
|
|
|
|
~NotificationOptions();
|
2017-06-24 21:03:27 +10:00
|
|
|
};
|
|
|
|
|
2015-12-24 22:06:41 +08:00
|
|
|
class Notification {
|
|
|
|
public:
|
2017-05-31 16:17:29 +09:00
|
|
|
virtual ~Notification();
|
|
|
|
|
2015-12-25 10:16:07 +08:00
|
|
|
// Shows the notification.
|
2017-06-24 21:03:27 +10:00
|
|
|
virtual void Show(const NotificationOptions& options) = 0;
|
2023-10-18 01:33:00 +02:00
|
|
|
|
|
|
|
// Dismisses the notification. On some platforms this will result in full
|
|
|
|
// removal and destruction of the notification, but if the initial dismissal
|
|
|
|
// does not fully get rid of the notification it will be destroyed in Remove.
|
2015-12-25 10:16:07 +08:00
|
|
|
virtual void Dismiss() = 0;
|
2015-12-24 22:06:41 +08:00
|
|
|
|
2023-10-18 01:33:00 +02:00
|
|
|
// Removes the notification if it was not fully removed during dismissal,
|
|
|
|
// as can happen on some platforms including Windows.
|
|
|
|
virtual void Remove();
|
|
|
|
|
2016-04-15 16:14:13 +09:00
|
|
|
// Should be called by derived classes.
|
2020-09-01 18:02:47 -07:00
|
|
|
void NotificationClicked();
|
2023-10-18 01:33:00 +02:00
|
|
|
void NotificationDismissed(bool should_destroy = true);
|
2020-09-29 12:20:10 -07:00
|
|
|
void NotificationFailed(const std::string& error = "");
|
2016-04-15 16:14:13 +09:00
|
|
|
|
2016-10-25 19:02:06 +05:30
|
|
|
// delete this.
|
|
|
|
void Destroy();
|
|
|
|
|
2015-12-24 22:06:41 +08:00
|
|
|
base::WeakPtr<Notification> GetWeakPtr() {
|
|
|
|
return weak_factory_.GetWeakPtr();
|
|
|
|
}
|
|
|
|
|
2017-05-31 16:17:29 +09:00
|
|
|
void set_delegate(NotificationDelegate* delegate) { delegate_ = delegate; }
|
2018-04-09 00:54:08 +05:30
|
|
|
void set_notification_id(const std::string& id) { notification_id_ = id; }
|
2023-10-18 01:33:00 +02:00
|
|
|
void set_is_dismissed(bool dismissed) { is_dismissed_ = dismissed; }
|
2018-04-09 00:54:08 +05:30
|
|
|
|
2015-12-25 10:16:07 +08:00
|
|
|
NotificationDelegate* delegate() const { return delegate_; }
|
|
|
|
NotificationPresenter* presenter() const { return presenter_; }
|
2018-04-09 00:54:08 +05:30
|
|
|
const std::string& notification_id() const { return notification_id_; }
|
2023-10-18 01:33:00 +02:00
|
|
|
bool is_dismissed() const { return is_dismissed_; }
|
2015-12-25 10:16:07 +08:00
|
|
|
|
2021-11-03 12:41:45 +01:00
|
|
|
// disable copy
|
|
|
|
Notification(const Notification&) = delete;
|
|
|
|
Notification& operator=(const Notification&) = delete;
|
|
|
|
|
2015-12-24 22:06:41 +08:00
|
|
|
protected:
|
2015-12-25 10:16:07 +08:00
|
|
|
Notification(NotificationDelegate* delegate,
|
|
|
|
NotificationPresenter* presenter);
|
2017-04-05 13:27:46 +02:00
|
|
|
|
2015-12-24 22:06:41 +08:00
|
|
|
private:
|
2023-05-11 16:07:39 -04:00
|
|
|
raw_ptr<NotificationDelegate> delegate_;
|
|
|
|
raw_ptr<NotificationPresenter> presenter_;
|
2018-04-09 00:54:08 +05:30
|
|
|
std::string notification_id_;
|
2023-10-18 01:33:00 +02:00
|
|
|
bool is_dismissed_ = false;
|
2015-12-25 10:16:07 +08:00
|
|
|
|
2021-01-26 19:16:21 +01:00
|
|
|
base::WeakPtrFactory<Notification> weak_factory_{this};
|
2015-12-24 22:06:41 +08:00
|
|
|
};
|
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
} // namespace electron
|
2015-12-24 22:06:41 +08:00
|
|
|
|
2021-11-22 08:34:31 +01:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_NOTIFICATIONS_NOTIFICATION_H_
|