2019-07-12 16:39:12 -06:00
|
|
|
package streamdeck
|
|
|
|
|
|
|
|
const (
|
|
|
|
DidReceiveSettings = "didReceiveSettings"
|
|
|
|
DidReceiveGlobalSettings = "didReceiveGlobalSettings"
|
|
|
|
KeyDown = "keyDown"
|
|
|
|
KeyUp = "keyUp"
|
2023-08-08 15:34:37 -06:00
|
|
|
TouchTap = "touchTap"
|
|
|
|
DialDown = "dialDown"
|
|
|
|
DialUp = "dialUp"
|
|
|
|
DialRotate = "dialRotate"
|
2019-07-12 16:39:12 -06:00
|
|
|
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"
|
2023-08-08 15:34:37 -06:00
|
|
|
SetFeedback = "setFeedback"
|
|
|
|
SetFeedbackLayout = "setFeedbackLayout"
|
2019-07-12 16:39:12 -06:00
|
|
|
ShowAlert = "showAlert"
|
|
|
|
ShowOk = "showOk"
|
|
|
|
SetState = "setState"
|
|
|
|
SwitchToProfile = "switchToProfile"
|
|
|
|
)
|
2019-07-14 14:52:11 -06:00
|
|
|
|
|
|
|
type Target int
|
|
|
|
|
|
|
|
const (
|
|
|
|
HardwareAndSoftware Target = 0
|
|
|
|
OnlyHardware Target = 1
|
|
|
|
OnlySoftware Target = 2
|
|
|
|
)
|