summaryrefslogtreecommitdiff
path: root/windowRepoProblems.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-21 09:13:54 -0600
committerJeff Carr <[email protected]>2025-02-21 09:13:54 -0600
commitb672943d0eefa1b676b90c960e343afce956eee2 (patch)
treef1cb78b5ab73924c2b072abd86ae1d501685a71c /windowRepoProblems.go
parenta5222d38948c079b6b5c2fd51eb198578225837a (diff)
make a problems window
Diffstat (limited to 'windowRepoProblems.go')
-rw-r--r--windowRepoProblems.go103
1 files changed, 103 insertions, 0 deletions
diff --git a/windowRepoProblems.go b/windowRepoProblems.go
new file mode 100644
index 0000000..012e0f2
--- /dev/null
+++ b/windowRepoProblems.go
@@ -0,0 +1,103 @@
+// Copyright 2017-2025 WIT.COM Inc. All rights reserved.
+// Use of this source code is governed by the GPL 3.0
+
+package main
+
+import (
+ "sync"
+
+ "go.wit.com/lib/gadgets"
+ "go.wit.com/lib/protobuf/forgepb"
+ "go.wit.com/log"
+
+ "go.wit.com/gui"
+)
+
+type repoProblemsWindow struct {
+ once sync.Once // only init() the window once
+ win *gadgets.BasicWindow // the patches window
+ stack *gui.Node // the top box set as vertical
+ shelf *gui.Node // the first box in the stack, set as horizontal
+ grid *gui.Node // the list of available patches
+ // summary *patchSummary // summary of current patches
+ setgrid *gui.Node // the list of each patchset
+ pset *forgepb.Patchset // the patchset in question
+}
+
+// todo: autogenerate these or make them standared 'gui' package functions
+// make this an go interface somehow
+
+// is the window hidden right now?
+func (w *repoProblemsWindow) Hidden() bool {
+ return w.win.Hidden()
+}
+
+// switches between the window being visable or hidden on the desktop
+func (w *repoProblemsWindow) Toggle() {
+ if w.Hidden() {
+ w.Show()
+ } else {
+ w.Hide()
+ }
+}
+
+// hides the window completely
+func (w *repoProblemsWindow) Show() {
+ w.win.Show()
+}
+
+func (w *repoProblemsWindow) Hide() {
+ w.win.Hide()
+}
+
+// should be the first box/widget in the window
+// greys out the window to the user
+func (w *repoProblemsWindow) Disable() {
+ w.stack.Disable()
+}
+
+func (w *repoProblemsWindow) Enable() {
+ w.stack.Enable()
+}
+
+// you can only have one of these
+func makeRepoProblemsWindow() *repoProblemsWindow {
+ pw := new(repoProblemsWindow)
+
+ // sync.Once()
+ pw.win = gadgets.RawBasicWindow("Potential Repo Problems")
+ pw.win.Make()
+
+ pw.stack = pw.win.Box().NewBox("bw vbox", false)
+ pw.win.Custom = func() {
+ // sets the hidden flag to false so Toggle() works
+ pw.win.Hide()
+ }
+ pw.stack.NewGroup("things")
+
+ grid := pw.stack.RawGrid()
+
+ grid.NewButton("devel is behind master", func() {
+ log.Info("not done yet")
+ })
+
+ grid.NewButton("user branch is remote", func() {
+ log.Info("not done yet")
+ })
+
+ grid.NewButton("unknown branches", func() {
+ log.Info("not done yet")
+ })
+ grid.NextRow()
+
+ grid.NewButton("remote devel != local devel", func() {
+ log.Info("not done yet")
+ })
+
+ grid.NewButton("remote master != local master", func() {
+ log.Info("not done yet")
+ })
+ grid.NextRow()
+
+ return pw
+}