summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2019-05-25 01:36:36 -0700
committerJeff Carr <[email protected]>2019-05-25 01:36:36 -0700
commit3b096d81453417a656167d5cce37f045d0c92cb8 (patch)
treeb339acf057ca3639deb2b5c26e913661253bf773 /structs.go
parent19e73d6678385f1aef0b4544a39e9ee6f8d7884d (diff)
work on fixing 'add account'
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/structs.go b/structs.go
index e3c353e..bf9c860 100644
--- a/structs.go
+++ b/structs.go
@@ -20,6 +20,10 @@ type GuiTabStructure struct {
firstBox *ui.Box
tabOffset int
+ EntryNick *ui.Entry
+ EntryUser *ui.Entry
+ EntryPass *ui.Entry
+
// this means only one table per tab
mh *TableData
@@ -101,6 +105,7 @@ type ButtonMap struct {
Account *pb.Config_Account
VM *pb.Event_VM
Action string // what type of button
+ aTab *GuiTabStructure
custom func (*ButtonMap)
}