34 lines
1.3 KiB
Go
34 lines
1.3 KiB
Go
|
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"
|
||
|
)
|