-
Notifications
You must be signed in to change notification settings - Fork 34
/
CSNotifications.m
81 lines (57 loc) · 4.23 KB
/
CSNotifications.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
//
// CSNotifications.m
// CocoaSplit
//
// Created by Zakk on 9/7/14.
// Copyright (c) 2014 Zakk. All rights reserved.
//
NSString *const CSNotificationLaunchCompleted = @"CSNotificationLaunchCompleted";
NSString *const CSNotificationLayoutAdded = @"CSNotificationLayoutAdded";
NSString *const CSNotificationLayoutDeleted = @"CSNotificationLayoutDeleted";
NSString *const CSNotificationLayoutSaved = @"CSNotificationLayoutSaved";
NSString *const CSNotificationLayoutCanvasChanged = @"CSNotificationLayoutCanvasChanged";
NSString *const CSNotificationLayoutFramerateChanged = @"CSNotificationLayoutFramerateChanged";
NSString *const CSNotificationLayoutInLiveChanged = @"CSNotificationLayoutInLiveChanged";
NSString *const CSNotificationLayoutInStagingChanged = @"CSNotificationLayoutInStagingChanged";
NSString *const CSNotificationStreamStarted = @"CSNotificationStreamStarted";
NSString *const CSNotificationStreamStopped = @"CSNotificationStreamStopped";
NSString *const CSNotificationMainRecordingStarted = @"CSNotificationMainRecordingStarted";
NSString *const CSNotificationMainRecordingStopped = @"CSNotificationMainRecordingStopped";
NSString *const CSNotificationOutputAdded = @"CSNotificationOutputAdded";
NSString *const CSNotificationOutputDeleted = @"CSNotificationOutputDeleted";
NSString *const CSNotificationOutputErrored = @"CSNotificationOutputErrored";
NSString *const CSNotificationOutputStarted = @"CSNotificationOutputStarted";
NSString *const CSNotificationOutputRestarted = @"CSNotificationOutputRestarted";
NSString *const CSNotificationOutputSetActive = @"CSNotificationOutputSetActive";
NSString *const CSNotificationOutputSetInactive = @"CSNotificationOutputSetInactive";
NSString *const CSNotificationOutputReconfigured = @"CSNotificationOutputReconfigured";
NSString *const CSNotificationOutputStopped = @"CSNotificationOutputStopped";
NSString *const CSNotificationCompressorAdded = @"CSNotificationCompressorAdded";
NSString *const CSNotificationCompressorDeleted = @"CSNotificationCompressorDeleted";
NSString *const CSNotificationCompressorRenamed = @"CSNotificationCompressorRenamed";
NSString *const CSNotificationCompressorReconfigured = @"CSNotificationCompressorReconfigured";
NSString *const CSNotificationInputAdded = @"CSNotificationInputAdded";
NSString *const CSNotificationInputDeleted = @"CSNotificationInputDeleted";
NSString *const CSNotificationInputSelected = @"CSNotificationInputSelected";
NSString *const CSNotificationInputAttached = @"CSNotificationInputAttached";
NSString *const CSNotificationInputDetached = @"CSNotificationInputDetached";
NSString *const CSNotificationLayoutModeChanged = @"CSNotificationLayoutModeChanged";
NSString *const CSNotificationThemeChanged = @"CSNotificationThemeChanged";
NSString *const CSNotificationStatisticsUpdate = @"CSNotificationStatisticsUpdate";
NSString *const CSNotificationAudioStatisticsUpdate = @"CSNotificationAudioStatisticsUpdate";
NSString *const CSNotificationAudioAdded = @"CSNotificationAudioAdded";
NSString *const CSNotificationAudioRemoved = @"CSNotificationAudioRemoved";
NSString *const CSNotificationAudioEnabled = @"CSNotificationAudioEnabled";
NSString *const CSNotificationAudioDisabled = @"CSNotificationAudioDisabled";
NSString *const CSNotificationAudioMuted = @"CSNotificationAudioMuted";
NSString *const CSNotificationAudioUnmuted = @"CSNotificationAudioUnmuted";
NSString *const CSNotificationTransitionAdded = @"CSNotificationTransitionAdded";
NSString *const CSNotificationTransitionRemoved = @"CSNotificationTransitionRemoved";
NSString *const CSNotificationTransitionStateChanged = @"CSNotificationTransitionStateChanged";
NSString *const CSNotificationUseTransitionsChanged = @"CSNotificationUseTransitionsChanged";
NSString *const CSNotificationAudioTrackCreated = @"CSNotificationAudioTrackCreated";
NSString *const CSNotificationAudioTrackDeleted = @"CSNotificationAudioTrackDeleted";
NSString *const CSNotificationAudioTrackInputAdded = @"CSNotificationAudioTrackInputAdded";
NSString *const CSNotificationAudioTrackInputDeleted = @"CSNotificationAudioTrackInputDeleted";
NSString *const CSNotificationAudioTrackOutputAttached = @"CSNotificationAudioTrackOutputAttached";
NSString *const CSNotificationAudioTrackOutputDetached = @"CSNotificationAudioTrackOutputDetached";