summaryrefslogtreecommitdiff
path: root/logsettings/structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'logsettings/structs.go')
-rw-r--r--logsettings/structs.go23
1 files changed, 23 insertions, 0 deletions
diff --git a/logsettings/structs.go b/logsettings/structs.go
new file mode 100644
index 0000000..3df504b
--- /dev/null
+++ b/logsettings/structs.go
@@ -0,0 +1,23 @@
+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
+
+ parent *gui.Node // where to draw our window
+ window *gui.Node // our window for displaying the log package settings
+
+ // Primary Directives
+ status *gadgets.OneLiner
+ summary *gadgets.OneLiner
+
+ checkbox *gadgets.LogFlag
+}