summaryrefslogtreecommitdiff
path: root/smartwindow/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-21 00:15:20 -0600
committerJeff Carr <[email protected]>2024-01-21 00:15:20 -0600
commitfdc01e28d9f45e923bdbc783f957e5b87f108659 (patch)
treee5ff92b4cbeb21d7c57eec0cf4cc8aa71d622ee3 /smartwindow/structs.go
parent495a08eddaef290dd4a6f63a543cf31ef26522f5 (diff)
name changes in the gui package
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'smartwindow/structs.go')
-rw-r--r--smartwindow/structs.go21
1 files changed, 0 insertions, 21 deletions
diff --git a/smartwindow/structs.go b/smartwindow/structs.go
deleted file mode 100644
index ac0bea7..0000000
--- a/smartwindow/structs.go
+++ /dev/null
@@ -1,21 +0,0 @@
-package smartwindow
-
-import (
- "go.wit.com/gui/gui"
-)
-
-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 *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
-}