summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go18
1 files changed, 11 insertions, 7 deletions
diff --git a/structs.go b/structs.go
index e40c8a9..49d11a9 100644
--- a/structs.go
+++ b/structs.go
@@ -4,7 +4,9 @@
package main
import (
+ "go.wit.com/dev/alexflint/arg"
"go.wit.com/gui"
+ "go.wit.com/lib/fhelp"
"go.wit.com/lib/protobuf/argvpb"
)
@@ -12,11 +14,13 @@ var me *autoType
// this app's variables
type autoType struct {
- argv *argvpb.Argv // shell autocomplete
- myGui *argvpb.GuiPrep // the gui toolkit handle
- dd *gui.Node // the drives dropdown list
- parted *gui.Node // the current drive to run parted on
- currentDev *Block // the current dev entry to work on
- pb *Blocks // the block dev protobuf
- driveInfoBox *gui.Node // displays the drive info
+ argv *argvpb.Argv // more experiments for bash handling
+ pp *arg.Parser // for parsing the command line args. Yay to alexf lint!
+ myGui *fhelp.GuiPrep // for initializing the GUI toolkits
+ gui *gui.Node // the drives dropdown list
+ dd *gui.Node // the drives dropdown list
+ parted *gui.Node // the current drive to run parted on
+ currentDev *Block // the current dev entry to work on
+ pb *Blocks // the block dev protobuf
+ driveInfoBox *gui.Node // displays the drive info
}