electron/brightray/browser/mac/cocoa_notification.h

48 lines
1.3 KiB
C
Raw Normal View History

2015-12-24 21:55:18 +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.
#ifndef BRIGHTRAY_BROWSER_MAC_COCOA_NOTIFICATION_H_
#define BRIGHTRAY_BROWSER_MAC_COCOA_NOTIFICATION_H_
2015-12-24 21:55:18 +08:00
#import <Foundation/Foundation.h>
#include <string>
2015-12-24 21:55:18 +08:00
#include "base/mac/scoped_nsobject.h"
#include "brightray/browser/notification.h"
2015-12-24 21:55:18 +08:00
namespace brightray {
2015-12-24 22:06:41 +08:00
class CocoaNotification : public Notification {
2015-12-24 21:55:18 +08:00
public:
CocoaNotification(NotificationDelegate* delegate,
NotificationPresenter* presenter);
2015-12-24 21:55:18 +08:00
~CocoaNotification();
2015-12-25 11:05:48 +08:00
// Notification:
void Show(const base::string16& title,
const base::string16& msg,
2016-04-13 05:31:56 +02:00
const std::string& tag,
2015-12-25 11:05:48 +08:00
const GURL& icon_url,
const SkBitmap& icon,
2017-05-30 19:06:51 +10:00
bool silent,
2017-05-30 20:27:24 +10:00
const bool has_reply,
2017-05-30 20:29:27 +10:00
const base::string16& reply_placeholder) override;
void Dismiss() override;
2015-12-24 21:55:18 +08:00
void NotificationDisplayed();
2017-05-31 16:17:29 +09:00
void NotificationReplied(const std::string& reply);
2015-12-24 21:55:18 +08:00
NSUserNotification* notification() const { return notification_; }
2015-12-24 21:55:18 +08:00
private:
2015-12-24 21:55:18 +08:00
base::scoped_nsobject<NSUserNotification> notification_;
DISALLOW_COPY_AND_ASSIGN(CocoaNotification);
};
} // namespace brightray
#endif // BRIGHTRAY_BROWSER_MAC_COCOA_NOTIFICATION_H_