summaryrefslogtreecommitdiff
path: root/doGui.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-11 15:23:17 -0500
committerJeff Carr <[email protected]>2025-09-11 15:23:17 -0500
commitec661807da8b201cd51e544aee59e8de21aeb0df (patch)
treee8c8878705d0d5c4051f99878d43f29b2da28ecc /doGui.go
parent127f36ca1f82ca9c1945e08802a49e4f9e30d2b7 (diff)
switch over to using gitpb.Repo directly
Diffstat (limited to 'doGui.go')
-rw-r--r--doGui.go34
1 files changed, 15 insertions, 19 deletions
diff --git a/doGui.go b/doGui.go
index 38973a5..cc89f15 100644
--- a/doGui.go
+++ b/doGui.go
@@ -5,27 +5,23 @@ package main
// An app to submit patches for the 30 GO GUI repos
-import (
- "os"
-
- "go.wit.com/gui"
- "go.wit.com/lib/gadgets"
- "go.wit.com/log"
-)
-
func doGui() {
- win := gadgets.NewGenericWindow("testing", "Current Conversations")
- win.Custom = func() {
- log.Warn("MAIN WINDOW CLOSE")
- gui.StandardExit()
- os.Exit(0)
- }
+ win := makebasicWindow()
+ win.Show()
+ /*
+ win := gadgets.NewGenericWindow("testing", "Current Conversations")
+ win.Custom = func() {
+ log.Warn("MAIN WINDOW CLOSE")
+ gui.StandardExit()
+ os.Exit(0)
+ }
- grid := win.Group.RawGrid()
+ grid := win.Group.RawGrid()
- grid.NewLabel("label worked")
- grid.NextRow()
+ grid.NewLabel("label worked")
+ grid.NextRow()
- grid.NewButton("more", func() {
- })
+ grid.NewButton("more", func() {
+ })
+ */
}