summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go68
1 files changed, 34 insertions, 34 deletions
diff --git a/structs.go b/structs.go
index 76cbc0c..e30c133 100644
--- a/structs.go
+++ b/structs.go
@@ -2,62 +2,62 @@ package repostatus
import (
"go.wit.com/gui/gui"
- "go.wit.com/gui/gadgets"
+ "go.wit.com/lib/gadgets"
)
type RepoStatus struct {
- ready bool
- hidden bool
- changed bool
+ ready bool
+ hidden bool
+ changed bool
- repopath string
+ repopath string
lasttagrev string
- tags map[string]string
+ tags map[string]string
- parent *gui.Node
+ parent *gui.Node
- window *gadgets.BasicWindow
+ window *gadgets.BasicWindow
// group *gui.Node
// grid *gui.Node
-// status *gadgets.OneLiner
- dirtyLabel *gadgets.OneLiner
- path *gadgets.OneLiner
+ // status *gadgets.OneLiner
+ dirtyLabel *gadgets.OneLiner
+ path *gadgets.OneLiner
- currentBranch *gadgets.OneLiner
- currentVersion *gadgets.OneLiner
- tagsDrop *gadgets.BasicDropdown
+ currentBranch *gadgets.OneLiner
+ currentVersion *gadgets.OneLiner
+ tagsDrop *gadgets.BasicDropdown
- lasttag *gadgets.OneLiner
- masterBranchVersion *gadgets.OneLiner
- develBranchVersion *gadgets.OneLiner
- userBranchVersion *gadgets.OneLiner
+ lasttag *gadgets.OneLiner
+ masterBranchVersion *gadgets.OneLiner
+ develBranchVersion *gadgets.OneLiner
+ userBranchVersion *gadgets.OneLiner
- develMerge *gui.Node
- releaseVersion *gui.Node
+ develMerge *gui.Node
+ releaseVersion *gui.Node
-// vgroup *gui.Node
- minor *gadgets.BasicCombobox
- major *gadgets.BasicCombobox
- revision *gadgets.BasicCombobox
+ // vgroup *gui.Node
+ minor *gadgets.BasicCombobox
+ major *gadgets.BasicCombobox
+ revision *gadgets.BasicCombobox
- versionMessage *gadgets.BasicEntry
- versionCmds [][]string
+ versionMessage *gadgets.BasicEntry
+ versionCmds [][]string
versionCmdOutput *gadgets.OneLiner
- newversion *gui.Node
+ newversion *gui.Node
gitBranchesGroup *gui.Node
- gitStatusGroup *gui.Node
+ gitStatusGroup *gui.Node
gitCommandsGroup *gui.Node
- masterDrop *gadgets.BasicDropdown
- develDrop *gadgets.BasicDropdown
- userDrop *gadgets.BasicDropdown
+ masterDrop *gadgets.BasicDropdown
+ develDrop *gadgets.BasicDropdown
+ userDrop *gadgets.BasicDropdown
- showBranchesButton *gui.Node
+ showBranchesButton *gui.Node
checkBranchesButton *gui.Node
- speed *gadgets.OneLiner
- speedActual *gadgets.OneLiner
+ speed *gadgets.OneLiner
+ speedActual *gadgets.OneLiner
}