summaryrefslogtreecommitdiff
path: root/gui.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-28 08:40:39 -0500
committerJeff Carr <[email protected]>2025-10-28 08:40:39 -0500
commitb6d638c574088538a562950108d6727947ec3fa0 (patch)
tree19cd0d1ae9cea46fc27b4d6168b2fcab01bfaf73 /gui.go
parentd4f6e81437a21e54984adf8a5d2527a2b0808df5 (diff)
Diffstat (limited to 'gui.go')
-rw-r--r--gui.go8
1 files changed, 5 insertions, 3 deletions
diff --git a/gui.go b/gui.go
index 0d77634..a78a1a2 100644
--- a/gui.go
+++ b/gui.go
@@ -17,9 +17,9 @@ This struct can be used with the go-arg package. These
are the generic default command line arguments for the 'GUI' package
*/
type ArgsGui struct {
- GuiFhelp *GuiEmptyCmd `arg:"subcommand:guifhelp" help:"open the gui"`
- GuiPlugin string `arg:"--gui" help:"select the plugin (andlabs,gocui,etc)"`
- GuiVerbose bool `arg:"--gui-verbose" help:"enable all logging"`
+ // GuiFhelp *GuiEmptyCmd `arg:"subcommand:guifhelp" help:"open the gui"`
+ // GuiPlugin string `arg:"--gui" help:"select the plugin (andlabs,gocui,etc)"`
+ // GuiVerbose bool `arg:"--gui-verbose" help:"enable all logging"`
}
type GuiEmptyCmd struct {
@@ -49,6 +49,7 @@ func ArgToolkit() string {
}
*/
+/*
// after go-args MustParse & user configuration
// the gui package can pull out the final settings and init() the GO Plugin GUI Toolkit
func postMustParse(s string) string {
@@ -71,6 +72,7 @@ func postMustParse(s string) string {
}
return "unknown"
}
+*/
var prepGui *GuiPrep