// 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 #include #include #include "atom/browser/api/trackable_object.h" #include "atom/browser/ui/notification_observer.h" #include "native_mate/handle.h" #include "ui/gfx/image/image.h" namespace atom { namespace api { class Notification : public mate::TrackableObject, public NotifictionObserver { public: static mate::WrappableBase* New(mate::Arguments* args); static bool HasID(int id); static Notification* FromID(int id); static void BuildPrototype(v8::Isolate* isolate, v8::Local prototype); // NotificationObserver: void OnClicked() override; void OnReplied(std::string reply) override; void OnShown() override; protected: Notification(v8::Isolate* isolate, v8::Local wrapper, mate::Arguments* args); ~Notification() override; void OnInitialProps(); void Show(); // Prop Getters int GetID(); std::string GetTitle(); std::string GetBody(); bool GetSilent(); std::string GetReplyPlaceholder(); bool GetHasReply(); // Prop Setters void SetTitle(std::string new_title); void SetBody(std::string new_body); void SetSilent(bool new_silent); void SetReplyPlaceholder(std::string new_reply_placeholder); void SetHasReply(bool new_has_reply); void NotifyPropsUpdated(); private: std::string title_ = ""; std::string body_ = ""; gfx::Image icon_; bool has_icon_ = false; bool silent_ = false; std::string reply_placeholder_ = ""; bool has_reply_ = false; int id_; DISALLOW_COPY_AND_ASSIGN(Notification); }; } // namespace api } // namespace atom #endif // ATOM_BROWSER_API_ATOM_API_NOTIFICATION_H_