electron/brightray/browser/mac/cocoa_notification.h

49 lines
1.3 KiB
C
Raw Normal View History

2015-12-24 13:55:18 +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.
#ifndef BRIGHTRAY_BROWSER_MAC_COCOA_NOTIFICATION_H_
#define BRIGHTRAY_BROWSER_MAC_COCOA_NOTIFICATION_H_
2015-12-24 13:55:18 +00:00
#import <Foundation/Foundation.h>
#include <string>
#include <vector>
#include <map>
2015-12-24 13:55:18 +00:00
#include "base/mac/scoped_nsobject.h"
#include "brightray/browser/notification.h"
2015-12-24 13:55:18 +00:00
namespace brightray {
2015-12-24 14:06:41 +00:00
class CocoaNotification : public Notification {
2015-12-24 13:55:18 +00:00
public:
CocoaNotification(NotificationDelegate* delegate,
NotificationPresenter* presenter);
2015-12-24 13:55:18 +00:00
~CocoaNotification();
2015-12-25 03:05:48 +00:00
// Notification:
2017-06-24 11:03:27 +00:00
void Show(const NotificationOptions& options) override;
void Dismiss() override;
2015-12-24 13:55:18 +00:00
void NotificationDisplayed();
2017-05-31 07:17:29 +00:00
void NotificationReplied(const std::string& reply);
void NotificationButtonClicked();
void NotificationAdditionalActionClicked(NSUserNotificationAction* action);
2015-12-24 13:55:18 +00:00
NSUserNotification* notification() const { return notification_; }
2015-12-24 13:55:18 +00:00
private:
void LogAction(const char* action);
2015-12-24 13:55:18 +00:00
base::scoped_nsobject<NSUserNotification> notification_;
std::map<std::string, unsigned> additional_action_indices_;
unsigned action_index_;
2015-12-24 13:55:18 +00:00
DISALLOW_COPY_AND_ASSIGN(CocoaNotification);
};
} // namespace brightray
#endif // BRIGHTRAY_BROWSER_MAC_COCOA_NOTIFICATION_H_