Reimplementing a whole lot of things here

This commit is contained in:
2026-03-02 22:40:06 +00:00
parent fe5505435b
commit e0f21f5d2f
12 changed files with 380 additions and 251 deletions
+8 -1
View File
@@ -1,7 +1,9 @@
// Package models
package models
type Window struct {
import "esdi/cdashdisplay"
type WindowForm struct {
X uint16
Y uint16
Width uint16
@@ -13,3 +15,8 @@ type Window struct {
ShowID uint8
PreviewValue string
}
type UIWindow struct {
WID int16
Data cdashdisplay.UIWindow
}