Added support for remote0
This commit is contained in:
124
pkg/streamdeck/types.go
Normal file
124
pkg/streamdeck/types.go
Normal file
@@ -0,0 +1,124 @@
|
||||
package streamdeck
|
||||
|
||||
import "encoding/json"
|
||||
|
||||
type evRegister struct {
|
||||
Event string `json:"event"`
|
||||
UUID string `json:"uuid"`
|
||||
}
|
||||
|
||||
// EvCoordinates is the coordinates structure from events
|
||||
type EvCoordinates struct {
|
||||
Column int `json:"column"`
|
||||
Row int `json:"row"`
|
||||
}
|
||||
|
||||
// EvWillAppearPayload is the Payload structure from the willAppear event
|
||||
type EvWillAppearPayload struct {
|
||||
Settings *json.RawMessage `json:"settings"`
|
||||
Coordinates EvCoordinates `json:"coordinates"`
|
||||
Device string `json:"device"`
|
||||
State int `json:"state"`
|
||||
IsInMultiAction bool `json:"isInMultiAction"`
|
||||
}
|
||||
|
||||
// EvWillAppear is the payload from the willAppear event
|
||||
type EvWillAppear struct {
|
||||
Action string `json:"action"`
|
||||
Event string `json:"event"`
|
||||
Context string `json:"context"`
|
||||
Device string `json:"device"`
|
||||
Payload EvWillAppearPayload `json:"payload"`
|
||||
}
|
||||
|
||||
// EvWillDisappearPayload is the Payload structure from willDisappear event
|
||||
type EvWillDisappearPayload struct {
|
||||
EvWillAppearPayload
|
||||
}
|
||||
|
||||
// EvWillDisappear is the payload from the willDisappear event
|
||||
type EvWillDisappear struct {
|
||||
EvWillAppear
|
||||
}
|
||||
|
||||
// EvApplicationPayload is the sub-strcture from the EvApplication struct
|
||||
type EvApplicationPayload struct {
|
||||
Application string `json:"application"`
|
||||
}
|
||||
|
||||
// EvApplication is the payload from the applicatioDidLaunch/Terminate events
|
||||
type EvApplication struct {
|
||||
Payload EvApplicationPayload `json:"payload"`
|
||||
}
|
||||
|
||||
// EvTitleParameters is sub-structure from EvTitleParametersDidChangePayload
|
||||
type EvTitleParameters struct {
|
||||
FontFamily string `json:"fontFamily"`
|
||||
FontSize int `json:"fontSize"`
|
||||
FontStyle string `json:"fontStyle"`
|
||||
FontUnderline bool `json:"fontUnderline"`
|
||||
ShowTitle bool `json:"showTitle"`
|
||||
TitleAlignment string `json:"titleAlignment"`
|
||||
TitleColor string `json:"titleColor"`
|
||||
}
|
||||
|
||||
// EvTitleParametersDidChangePayload is the payload structure of EvTitleParametersDidChange
|
||||
type EvTitleParametersDidChangePayload struct {
|
||||
Coordinates EvCoordinates `json:"coordinates"`
|
||||
Settings *json.RawMessage `json:"settings"`
|
||||
TitleParameters EvTitleParameters `json:"titleParameters"`
|
||||
Title string `json:"title"`
|
||||
State int `json:"state"`
|
||||
}
|
||||
|
||||
// EvTitleParametersDidChange is the payload from the titleParametersDidChange event
|
||||
type EvTitleParametersDidChange struct {
|
||||
Action string `json:"action"`
|
||||
Event string `json:"event"`
|
||||
Context string `json:"context"`
|
||||
Device string `json:"device"`
|
||||
Payload EvTitleParametersDidChangePayload `json:"payload"`
|
||||
}
|
||||
|
||||
// EvSendToPlugin is received from the Property Inspector
|
||||
type EvSendToPlugin struct {
|
||||
Action string `json:"action"`
|
||||
Event string `json:"event"`
|
||||
Context string `json:"context"`
|
||||
Payload *json.RawMessage `json:"payload"`
|
||||
}
|
||||
|
||||
type evSendToPropertyInspector struct {
|
||||
Action string `json:"action"`
|
||||
Event string `json:"event"`
|
||||
Context string `json:"context"`
|
||||
Payload interface{} `json:"payload"`
|
||||
}
|
||||
|
||||
type evSetTitlePayload struct {
|
||||
Title string `json:"title"`
|
||||
Target int `json:"target"`
|
||||
}
|
||||
|
||||
type evSetTitle struct {
|
||||
Event string `json:"event"`
|
||||
Context string `json:"context"`
|
||||
Payload evSetTitlePayload `json:"payload"`
|
||||
}
|
||||
|
||||
type evSetSettings struct {
|
||||
Event string `json:"event"`
|
||||
Context string `json:"context"`
|
||||
Payload interface{} `json:"payload"`
|
||||
}
|
||||
|
||||
type evSetImagePayload struct {
|
||||
Image string `json:"image"`
|
||||
Target int `json:"target"`
|
||||
}
|
||||
|
||||
type evSetImage struct {
|
||||
Event string `json:"event"`
|
||||
Context string `json:"context"`
|
||||
Payload evSetImagePayload `json:"payload"`
|
||||
}
|
||||
Reference in New Issue
Block a user