-
Notifications
You must be signed in to change notification settings - Fork 7
/
constants.go
41 lines (37 loc) · 1.4 KB
/
constants.go
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
package streamdeck
const (
DidReceiveSettings = "didReceiveSettings"
DidReceiveGlobalSettings = "didReceiveGlobalSettings"
KeyDown = "keyDown"
KeyUp = "keyUp"
WillAppear = "willAppear"
WillDisappear = "willDisappear"
TitleParametersDidChange = "titleParametersDidChange"
DeviceDidConnect = "deviceDidConnect"
DeviceDidDisconnect = "deviceDidDisconnect"
ApplicationDidLaunch = "applicationDidLaunch"
ApplicationDidTerminate = "applicationDidTerminate"
SystemDidWakeUp = "systemDidWakeUp"
PropertyInspectorDidAppear = "propertyInspectorDidAppear"
PropertyInspectorDidDisappear = "propertyInspectorDidDisappear"
SendToPlugin = "sendToPlugin"
SendToPropertyInspector = "sendToPropertyInspector"
SetSettings = "setSettings"
GetSettings = "getSettings"
SetGlobalSettings = "setGlobalSettings"
GetGlobalSettings = "getGlobalSettings"
OpenURL = "openUrl"
LogMessage = "logMessage"
SetTitle = "setTitle"
SetImage = "setImage"
ShowAlert = "showAlert"
ShowOk = "showOk"
SetState = "setState"
SwitchToProfile = "switchToProfile"
)
type Target int
const (
HardwareAndSoftware Target = 0
OnlyHardware Target = 1
OnlySoftware Target = 2
)