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.
|
|
|
|
|
2018-10-17 18:01:11 +00:00
|
|
|
#ifndef ATOM_BROWSER_NOTIFICATIONS_MAC_COCOA_NOTIFICATION_H_
|
|
|
|
#define ATOM_BROWSER_NOTIFICATIONS_MAC_COCOA_NOTIFICATION_H_
|
2015-12-24 13:55:18 +00:00
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
2018-01-16 05:07:27 +00:00
|
|
|
#include <map>
|
2017-05-18 22:06:57 +00:00
|
|
|
#include <string>
|
2017-06-23 10:39:42 +00:00
|
|
|
#include <vector>
|
2017-05-18 22:06:57 +00:00
|
|
|
|
2018-10-17 18:01:11 +00:00
|
|
|
#include "atom/browser/notifications/notification.h"
|
2015-12-24 13:55:18 +00:00
|
|
|
#include "base/mac/scoped_nsobject.h"
|
|
|
|
|
2018-10-17 18:01:11 +00:00
|
|
|
namespace atom {
|
2015-12-24 13:55:18 +00:00
|
|
|
|
2015-12-24 14:06:41 +00:00
|
|
|
class CocoaNotification : public Notification {
|
2015-12-24 13:55:18 +00:00
|
|
|
public:
|
2015-12-25 02:16:07 +00:00
|
|
|
CocoaNotification(NotificationDelegate* delegate,
|
|
|
|
NotificationPresenter* presenter);
|
2018-04-17 23:03:51 +00:00
|
|
|
~CocoaNotification() override;
|
2015-12-24 13:55:18 +00:00
|
|
|
|
2015-12-25 03:05:48 +00:00
|
|
|
// Notification:
|
2017-06-24 11:03:27 +00:00
|
|
|
void Show(const NotificationOptions& options) override;
|
2015-12-25 02:16:07 +00:00
|
|
|
void Dismiss() override;
|
2015-12-24 13:55:18 +00:00
|
|
|
|
2016-04-15 07:14:13 +00:00
|
|
|
void NotificationDisplayed();
|
2017-05-31 07:17:29 +00:00
|
|
|
void NotificationReplied(const std::string& reply);
|
2018-01-17 03:07:54 +00:00
|
|
|
void NotificationActivated();
|
2018-06-20 12:27:55 +00:00
|
|
|
void NotificationActivated(NSUserNotificationAction* action)
|
2018-09-19 11:10:26 +00:00
|
|
|
API_AVAILABLE(macosx(10.10));
|
2018-08-13 11:09:25 +00:00
|
|
|
void NotificationDismissed();
|
2015-12-24 13:55:18 +00:00
|
|
|
|
2015-12-25 02:16:07 +00:00
|
|
|
NSUserNotification* notification() const { return notification_; }
|
2015-12-24 13:55:18 +00:00
|
|
|
|
2015-12-25 02:16:07 +00:00
|
|
|
private:
|
2017-12-13 00:09:11 +00:00
|
|
|
void LogAction(const char* action);
|
|
|
|
|
2015-12-24 13:55:18 +00:00
|
|
|
base::scoped_nsobject<NSUserNotification> notification_;
|
2018-01-16 04:50:03 +00:00
|
|
|
std::map<std::string, unsigned> additional_action_indices_;
|
|
|
|
unsigned action_index_;
|
2015-12-24 13:55:18 +00:00
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(CocoaNotification);
|
|
|
|
};
|
|
|
|
|
2018-10-17 18:01:11 +00:00
|
|
|
} // namespace atom
|
2015-12-24 13:55:18 +00:00
|
|
|
|
2018-10-17 18:01:11 +00:00
|
|
|
#endif // ATOM_BROWSER_NOTIFICATIONS_MAC_COCOA_NOTIFICATION_H_
|