summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-15 15:17:51 -0600
committerJeff Carr <[email protected]>2024-01-15 15:17:51 -0600
commit88fbc620e597108759c9929d263d57c4b7ee6b0b (patch)
tree84eed9c295bf8387f8ce1d018ab719081c4c65f7 /structs.go
initial repo
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go22
1 files changed, 22 insertions, 0 deletions
diff --git a/structs.go b/structs.go
new file mode 100644
index 0000000..0637ac4
--- /dev/null
+++ b/structs.go
@@ -0,0 +1,22 @@
+package logsettings
+
+import (
+ "go.wit.com/gui/gui"
+ "go.wit.com/gui/gadgets"
+)
+
+var myLogGui *LogSettings
+
+type LogSettings struct {
+ ready bool
+ hidden bool
+ err error
+
+ groups map[string]*flagGroup
+
+ parent *gui.Node // where to draw our window
+ win *gadgets.BasicWindow // our window for displaying the log package settings
+
+ buttonG *gui.Node // the group of buttons
+ flagG *gui.Node // the group of all the flag checkbox widgets
+}