electron/atom/browser/api/atom_api_notification.h

84 lines
2.3 KiB
C
Raw Normal View History

// Copyright (c) 2014 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_NOTIFICATION_H_
#define ATOM_BROWSER_API_ATOM_API_NOTIFICATION_H_
#include <memory>
#include <string>
#include <vector>
#include "atom/browser/api/trackable_object.h"
2017-04-23 22:14:35 +00:00
#include "base/strings/utf_string_conversions.h"
2017-05-29 11:18:18 +00:00
#include "brightray/browser/notification.h"
2017-05-30 09:06:51 +00:00
#include "brightray/browser/notification_delegate.h"
2017-05-29 11:18:18 +00:00
#include "brightray/browser/notification_presenter.h"
#include "native_mate/handle.h"
#include "ui/gfx/image/image.h"
namespace atom {
namespace api {
class Notification : public mate::TrackableObject<Notification>,
2017-05-30 09:06:51 +00:00
public brightray::NotificationDelegate {
public:
static mate::WrappableBase* New(mate::Arguments* args);
2017-05-30 10:27:24 +00:00
static bool IsSupported();
static void BuildPrototype(v8::Isolate* isolate,
v8::Local<v8::FunctionTemplate> prototype);
2017-05-30 09:06:51 +00:00
// NotificationDelegate:
void NotificationClick() override;
void NotificationReplied(const std::string reply) override;
void NotificationDisplayed() override;
void NotificationDestroyed() override;
void NotificationClosed() override;
protected:
2017-04-24 03:07:42 +00:00
Notification(v8::Isolate* isolate,
v8::Local<v8::Object> wrapper,
mate::Arguments* args);
~Notification() override;
void OnInitialProps();
void Show();
// Prop Getters
base::string16 GetTitle();
base::string16 GetBody();
bool GetSilent();
base::string16 GetReplyPlaceholder();
bool GetHasReply();
// Prop Setters
2017-05-30 09:06:51 +00:00
void SetTitle(const base::string16& new_title);
void SetBody(const base::string16& new_body);
void SetSilent(bool new_silent);
2017-05-30 09:06:51 +00:00
void SetReplyPlaceholder(const base::string16& new_reply_placeholder);
void SetHasReply(bool new_has_reply);
private:
2017-05-30 09:06:51 +00:00
base::string16 title_;
base::string16 body_;
gfx::Image icon_;
2017-05-30 09:06:51 +00:00
base::string16 icon_path_;
bool has_icon_ = false;
bool silent_ = false;
2017-05-30 09:06:51 +00:00
base::string16 reply_placeholder_;
bool has_reply_ = false;
2017-05-29 11:18:18 +00:00
brightray::NotificationPresenter* presenter_;
2017-05-30 09:06:51 +00:00
base::WeakPtr<brightray::Notification> notification_;
DISALLOW_COPY_AND_ASSIGN(Notification);
};
} // namespace api
} // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_NOTIFICATION_H_