summaryrefslogtreecommitdiff
path: root/structs.go
blob: 22915e8c1123fd7fb92005136de521e5f9e3aae3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package repostatus

import (
	"go.wit.com/gui/gui"
	"go.wit.com/gui/gadgets"
)

type RepoStatus struct {
	ready	bool
	hidden	bool
	changed	bool

	repopath string
	lasttagrev string
	tags map[string]string

	parent	*gui.Node

	window	*gadgets.BasicWindow
	group	*gui.Node
	grid	*gui.Node

//	status		*gadgets.OneLiner
	dirtyLabel	*gadgets.OneLiner
	path		*gadgets.OneLiner

	currentBranch	*gadgets.OneLiner
	currentVersion	*gadgets.OneLiner
	tagsDrop	*gui.Node

	lasttag		*gadgets.OneLiner
	masterBranch	*gadgets.OneLiner
	develBranch	*gadgets.OneLiner
	jcarrBranch	*gadgets.OneLiner

	develMerge	*gui.Node
	releaseVersion	*gui.Node

	vgroup	*gui.Node
	minor *gadgets.BasicCombobox
	major *gadgets.BasicCombobox
	revision *gadgets.BasicCombobox

	a int
	b int
	c int

	speed		*gadgets.OneLiner
	speedActual	*gadgets.OneLiner
}