-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathPHEventConstants.h
20 lines (15 loc) · 1.01 KB
/
PHEventConstants.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
* Phoenix is released under the MIT License. Refer to https://github.com/kasper/phoenix/blob/master/LICENSE.md
*/
@import Foundation;
#pragma mark - Event Notifications
static NSString* const PHEventDidLaunchNotification = @"PHEventDidLaunchNotification";
static NSString* const PHEventWillTerminateNotification = @"PHEventWillTerminateNotification";
#pragma mark - Mouse Notifications
static NSString* const PHMouseDidMoveNotification = @"PHMouseDidMoveNotification";
static NSString* const PHMouseDidLeftClickNotification = @"PHMouseDidLeftClickNotification";
static NSString* const PHMouseDidRightClickNotification = @"PHMouseDidRightClickNotification";
static NSString* const PHMouseDidOtherClickNotification = @"PHMouseDidOtherClickNotification";
static NSString* const PHMouseDidLeftDragNotification = @"PHMouseDidLeftDragNotification";
static NSString* const PHMouseDidRightDragNotification = @"PHMouseDidRightDragNotification";
static NSString* const PHMouseDidOtherDragNotification = @"PHMouseDidOtherDragNotification";