summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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