diff options
| author | Jeff Carr <[email protected]> | 2024-01-04 12:23:36 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-04 12:23:36 -0600 |
| commit | 51929bdde255954318eb7c41fae97f620a613f78 (patch) | |
| tree | 4326b70a4de46092a1ce32a72c5dde19414e8e2d /logsettings/structs.go | |
| parent | 57b8fdc0602db13683979c161665044f38c2003c (diff) | |
working log window
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'logsettings/structs.go')
| -rw-r--r-- | logsettings/structs.go | 23 |
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 +} |
