repostatus/structs.go

72 lines
1.4 KiB
Go
Raw Normal View History

2024-01-09 15:34:53 -06:00
package repostatus
import (
"go.wit.com/gui"
"go.wit.com/lib/gadgets"
2024-01-09 15:34:53 -06:00
)
type RepoStatus struct {
ready bool
hidden bool
changed bool
2024-01-09 15:34:53 -06:00
// lasttagrev string
tags map[string]string
2024-01-09 15:34:53 -06:00
parent *gui.Node
2024-01-09 15:34:53 -06:00
window *gadgets.BasicWindow
2024-01-09 15:34:53 -06:00
dirtyLabel *gadgets.OneLiner
readOnly *gadgets.OneLiner
goSumStatus *gadgets.OneLiner
path *gadgets.OneLiner
goSrcPath *gadgets.OneLiner
realPath *gadgets.OneLiner
2024-01-09 15:34:53 -06:00
currentBranch *gadgets.OneLiner
currentVersion *gadgets.OneLiner
tagsDrop *gadgets.BasicDropdown
2024-01-09 15:34:53 -06:00
lasttag *gadgets.OneLiner
masterBranchVersion *gadgets.OneLiner
develBranchVersion *gadgets.OneLiner
userBranchVersion *gadgets.OneLiner
2024-01-09 15:34:53 -06:00
mainWorkingName *gadgets.OneLiner
develWorkingName *gadgets.OneLiner
userWorkingName *gadgets.OneLiner
develMerge *gui.Node
releaseVersion *gui.Node
// vgroup *gui.Node
minor *gadgets.BasicCombobox
major *gadgets.BasicCombobox
revision *gadgets.BasicCombobox
versionMessage *gadgets.BasicEntry
versionCmds [][]string
versionCmdOutput *gadgets.OneLiner
newversion *gui.Node
gitBranchesGroup *gui.Node
gitStatusGroup *gui.Node
gitCommandsGroup *gui.Node
// masterDrop *gadgets.BasicDropdown
// develDrop *gadgets.BasicDropdown
// userDrop *gadgets.BasicDropdown
showBranchesButton *gui.Node
2024-01-13 20:30:33 -06:00
checkBranchesButton *gui.Node
speed *gadgets.OneLiner
speedActual *gadgets.OneLiner
gitConfig *GitConfig
goConfig GoConfig
2024-01-09 15:34:53 -06:00
}