2024-01-13 23:27:46 -06:00
|
|
|
package main
|
|
|
|
|
2024-01-18 00:58:14 -06:00
|
|
|
import (
|
2024-01-18 05:03:04 -06:00
|
|
|
"go.wit.com/gui"
|
2024-01-18 00:58:14 -06:00
|
|
|
"go.wit.com/lib/gadgets"
|
2024-01-13 23:27:46 -06:00
|
|
|
)
|
|
|
|
|
2024-02-21 08:32:59 -06:00
|
|
|
var me *mainType
|
2024-01-16 04:46:17 -06:00
|
|
|
|
2024-02-21 08:32:59 -06:00
|
|
|
func (b *mainType) Disable() {
|
2024-02-13 16:18:37 -06:00
|
|
|
b.mainbox.Disable()
|
|
|
|
}
|
|
|
|
|
2024-02-21 08:32:59 -06:00
|
|
|
func (b *mainType) Enable() {
|
2024-02-13 16:18:37 -06:00
|
|
|
b.mainbox.Enable()
|
|
|
|
}
|
|
|
|
|
2024-02-11 20:24:40 -06:00
|
|
|
// this app's variables
|
2024-02-21 08:32:59 -06:00
|
|
|
type mainType struct {
|
2024-02-17 08:38:44 -06:00
|
|
|
myGui *gui.Node
|
2024-01-16 11:56:55 -06:00
|
|
|
|
2024-02-21 08:32:59 -06:00
|
|
|
mainWindow *gadgets.BasicWindow
|
2024-02-17 08:38:44 -06:00
|
|
|
|
2024-02-13 16:18:37 -06:00
|
|
|
// the main box. enable/disable this
|
|
|
|
mainbox *gui.Node
|
2024-01-20 18:45:55 -06:00
|
|
|
|
2024-02-13 09:18:04 -06:00
|
|
|
// the window from the /lib/gui/gowit package
|
|
|
|
lw *gadgets.BasicWindow
|
|
|
|
|
2024-02-17 08:38:44 -06:00
|
|
|
// our view of the repositories
|
2024-02-17 14:20:37 -06:00
|
|
|
repos *repoWindow
|
2024-02-11 20:24:40 -06:00
|
|
|
|
2024-02-21 08:32:59 -06:00
|
|
|
// #### Sorting options for the repolist
|
2024-01-25 13:09:33 -06:00
|
|
|
autoHidePerfect *gui.Node
|
|
|
|
autoHideReadOnly *gui.Node
|
2024-01-16 04:46:17 -06:00
|
|
|
|
2024-01-23 11:22:33 -06:00
|
|
|
// checkbox for --dry-run
|
|
|
|
autoDryRun *gui.Node
|
2024-01-26 02:04:19 -06:00
|
|
|
|
2024-02-16 17:55:53 -06:00
|
|
|
// checkbox to enable intermittent scanning
|
|
|
|
// if checked, it will check all your repos for changes
|
|
|
|
autoScanReposCB *gui.Node
|
2024-01-23 11:22:33 -06:00
|
|
|
|
2024-01-26 14:21:05 -06:00
|
|
|
// what is being used as your home dir
|
|
|
|
userHomePwd *gadgets.OneLiner
|
|
|
|
|
|
|
|
// what is being used as ~/go/src
|
|
|
|
goSrcPwd *gadgets.OneLiner
|
|
|
|
|
2024-02-13 12:54:32 -06:00
|
|
|
// displays a summary of all the repos
|
|
|
|
// has total dirty, total read-only
|
|
|
|
// total patches, etc
|
2024-02-13 13:50:19 -06:00
|
|
|
summary *patchSummary
|
2024-02-16 17:55:53 -06:00
|
|
|
|
|
|
|
// when switch to user or devel branches, autocreate them
|
|
|
|
autoCreateBranches *gui.Node
|
|
|
|
|
|
|
|
// these hold the branches that the user can switch all
|
|
|
|
// the repositories to them
|
2024-02-16 20:37:23 -06:00
|
|
|
newBranch *gui.Node
|
2024-02-16 17:55:53 -06:00
|
|
|
setBranchB *gui.Node
|
2024-01-16 04:46:17 -06:00
|
|
|
}
|