diff options
| author | Jeff Carr <[email protected]> | 2024-01-07 10:38:17 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-07 10:38:17 -0600 |
| commit | ef6eb7a96aa4aee7c16ba5e7320bde4ffd79acc0 (patch) | |
| tree | bba27c349418d5d799d86fdbadcf275327e08c26 /smartwindow/structs.go | |
| parent | 259b4bdb408fd234cf1c76f94463a85d87fdadb6 (diff) | |
error window v0.1
error box starts doing something
start a window for errors to fix
more status cleanups & housecleaning
Signed-off-by: Jeff Carr <[email protected]>
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'smartwindow/structs.go')
| -rw-r--r-- | smartwindow/structs.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/smartwindow/structs.go b/smartwindow/structs.go index d70ea3c..ac0bea7 100644 --- a/smartwindow/structs.go +++ b/smartwindow/structs.go @@ -2,19 +2,19 @@ package smartwindow import ( "go.wit.com/gui/gui" - "go.wit.com/gui/gadgets" ) type SmartWindow struct { ready bool // track if the window is ready hidden bool // track if the window is hidden from the toolkits changed bool // track if something changed in the window + vertical bool title string // what the user sees as the name name string // the programatic name aka: "CALANDAR" parent *gui.Node // where to place the window if you try to draw it - window *gadgets.BasicWindow // the underlying BasicWindow + window *gui.Node // the underlying window box *gui.Node // the box inside the window // get this from BasicWindow() ? populate func(*SmartWindow) // the function to generate the widgets |
