Files

27 lines
729 B
Go
Raw Permalink Normal View History

2023-01-18 21:42:49 +11:00
package application
type Screen struct {
2023-03-31 20:37:50 +11:00
ID string // A unique identifier for the display
Name string // The name of the display
Scale float32 // The scale factor of the display
X int // The x-coordinate of the top-left corner of the rectangle
Y int // The y-coordinate of the top-left corner of the rectangle
Size Size // The size of the display
Bounds Rect // The bounds of the display
WorkArea Rect // The work area of the display
IsPrimary bool // Whether this is the primary display
Rotation float32 // The rotation of the display
2023-01-18 21:42:49 +11:00
}
type Rect struct {
2023-03-31 20:37:50 +11:00
X int
Y int
Width int
Height int
2023-01-18 21:42:49 +11:00
}
type Size struct {
2023-03-31 20:37:50 +11:00
Width int
Height int
2023-01-18 21:42:49 +11:00
}