summaryrefslogtreecommitdiff
path: root/debugWidget.go
blob: 7b32f960cc180c485ae9080b618b16e48522d249 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
package gui

import (
	"strconv"
	"git.wit.org/wit/gui/toolkit"
)


// global var for checking to see if this
// window/tab for debugging a widget exists
// check the binary tree instead (?) for a window called "Widgets" (bad idea)
var bugWidget *Node

// the widget all these actions are run against
var activeWidget *Node
// the label where the user can see which widget is active
var activeLabel *Node
var activeLabelType *Node

// tmp junk
var debugGrid *Node
var debugGridLabel *Node
var debugWidgetBut1, debugWidgetBut2 *Node

func setActiveWidget(w *Node) {
	if (w == nil) {
		log(debugError, "setActiveWidget() was sent nil !!!")
		return
	}
	activeWidget = w
	log(true, "The Widget is set to", w.id, w.Name)
	if (activeLabel == nil) {
		// the debug window doesn't exist yet so you can't display the change
		// TODO: make a fake binary tree for this(?)
		return
	}
	title := "ID =" + strconv.Itoa(w.id) + " " + w.widget.Name
	activeLabel.SetText(title)
	activeLabelType.SetText("widget.Type = " + w.widget.Type.String())

	// temporary stuff
	if (w.widget.Type == toolkit.Window) {
		debugWidgetBut1.widget.Action = "Enable"
		send(debugWidgetBut1.parent, debugWidgetBut1)
		debugWidgetBut2.widget.Action = "Enable"
		send(debugWidgetBut2.parent, debugWidgetBut2)
	} else {
		debugWidgetBut1.widget.Action = "Disable"
		send(debugWidgetBut1.parent, debugWidgetBut1)
		debugWidgetBut2.widget.Action = "Disable"
		send(debugWidgetBut2.parent, debugWidgetBut2)
	}
	return
}

func DebugWidgetWindow(w *Node) {
	if (bugWidget != nil) {
		// this window was already created. Just change the widget we are working against
		setActiveWidget(w)
		return
	}

	// Either:
	// make a new window
	// make a new tab in the existing window
	if (makeTabs) {
		Config.Title = "Widgets"
		Config.Width = 300
		Config.Height = 400
		bugWidget = NewWindow()
		bugWidget.Custom = bugWidget.StandardClose
	} else {
		bugWidget = bugWin.NewTab("Widgets")
	}

	g := bugWidget.NewGroup("widget:")

	activeLabel = g.NewLabel("undef")
	activeLabelType = g.NewLabel("undef")

	// common things that should work against each widget
	g = bugWidget.NewGroup("common things")
	g.NewButton("Disable()", func () {
		activeWidget.widget.Action = "Disable"
		send(activeWidget.parent, activeWidget)
	})
	g.NewButton("Enable()", func () {
		activeWidget.widget.Action = "Enable"
		send(activeWidget.parent, activeWidget)
	})
	g.NewButton("Show()", func () {
		activeWidget.widget.Action = "Show"
		send(activeWidget.parent, activeWidget)
	})
	g.NewButton("Hide()", func () {
		activeWidget.widget.Action = "Hide"
		send(activeWidget.parent, activeWidget)
	})
	g.NewButton("Delete()", func () {
		Delete(activeWidget)
	})
	g.NewButton("Dump()", func () {
		g := debugGui
		d := debugDump
		debugGui = true
		debugDump = true
		activeWidget.Dump()
		debugGui = g
		debugDump = d
	})

	newG := bugWidget.NewGroup("add things")
	newG.debugAddWidgetButtons()

	g = bugWidget.NewGroup("change things")
	g.NewButton("SetMargin(true)", func () {
		activeWidget.widget.Action = "SetMargin"
		activeWidget.widget.B = true
		send(activeWidget.parent, activeWidget)
	})
	g.NewButton("SetMargin(false)", func () {
		activeWidget.widget.Action = "SetMargin"
		activeWidget.widget.B = false
		send(activeWidget.parent, activeWidget)
	})
	g.NewButton("Value()", func () {
		log("activeWidget.B =", activeWidget.widget.B)
		log("activeWidget.I =", activeWidget.widget.I)
		log("activeWidget.S =", activeWidget.widget.S)
	})
	g.NewButton("Set(true)", func () {
		activeWidget.widget.Action = "Set"
		activeWidget.widget.B = true
		send(activeWidget.parent, activeWidget)
	})
	g.NewButton("Set(false)", func () {
		activeWidget.widget.Action = "Set"
		activeWidget.widget.B = false
		send(activeWidget.parent, activeWidget)
	})
	g.NewButton("Set(20)", func () {
		activeWidget.widget.Action = "Set"
		activeWidget.widget.B = true
		activeWidget.widget.I = 20
		activeWidget.widget.S = "20"
		send(activeWidget.parent, activeWidget)
	})
	g.NewButton("SetText('foo')", func () {
		activeWidget.widget.Action = "Set"
		activeWidget.widget.S = "foo"
		send(activeWidget.parent, activeWidget)
	})
	g.NewButton("Delete()", func () {
		activeWidget.widget.Action = "Delete"
		send(activeWidget.parent, activeWidget)
	})
	debugWidgetBut1 = g.NewButton("SetRaw(true)", func () {
		activeWidget.widget.Action = "SetRaw"
		activeWidget.widget.B = true
		send(activeWidget.parent, activeWidget)
	})
	debugWidgetBut2 = g.NewButton("SetRaw(false)", func () {
		activeWidget.widget.Action = "SetRaw"
		activeWidget.widget.B = false
		send(activeWidget.parent, activeWidget)
	})

	g = bugWidget.NewGroup("not working?")
	g.NewButton("Add('foo')", func () {
		activeWidget.widget.Action = "Add"
		activeWidget.widget.S = "foo"
		send(activeWidget.parent, activeWidget)
	})
	g.NewButton("Add button to (1,1)", func () {
		activeWidget.widget.Action = "AddGrid"
		activeWidget.widget.B = false
		send(activeWidget, debugGridLabel)
		// debugGrid = gShoactiveWidget.NewGrid("tmp grid", 2, 3)
	})

	if (activeWidget == nil) {
		setActiveWidget(Config.master)
	}
}

func (n *Node) debugAddWidgetButtons() {
	n.NewButton("Button", func () {
		a := activeWidget.NewButton("myButton", nil)
		a.Custom = func () {
			log("this code is more better", a.widget.B, "id=", a.id)
		}
	})
	n.NewButton("Checkbox", func () {
		a := activeWidget.NewCheckbox("myCheckbox")
		a.Custom = func () {
			log("custom checkox func a=", a.widget.B, "id=", a.id)
		}
	})
	n.NewButton("Label", func () {
		activeWidget.NewLabel("mylabel")
	})
	n.NewButton("Textbox", func () {
		a := activeWidget.NewTextbox("mytext")
		a.Custom = func () {
			log("custom TextBox() a =", a.widget.S, "id=", a.id)
		}
	})
	n.NewButton("Slider", func () {
		a := activeWidget.NewSlider("tmp slider", 10, 55)
		a.Custom = func () {
			log("custom slider() a =", a.widget.I, "id=", a.id)
		}
	})
	n.NewButton("Spinner", func () {
		a := activeWidget.NewSpinner("tmp spinner", 6, 32)
		a.Custom = func () {
			log("custom spinner() a =", a.widget.I, "id=", a.id)
		}
	})
	n.NewButton("Dropdown", func () {
		a := activeWidget.NewDropdown("tmp dropdown")
		a.AddDropdownName("this is better than tcl/tk")
		a.AddDropdownName("make something for tim")
		a.AddDropdownName("for qflow")
		a.Add("and for riscv")
		a.Custom = func () {
			log("custom dropdown() a =", a.widget.Name, a.widget.S, "id=", a.id)
		}
	})
	n.NewButton("Combobox", func () {
		a := activeWidget.NewCombobox("tmp combobox")
		a.Add("mirrors.wit.com")
		a.Add("go.wit.org")
		a.Custom = func () {
			log("custom combobox() a =", a.widget.Name, a.widget.S, "id=", a.id)
		}
	})
	n.NewButton("Grid", func () {
		// Grid numbering by (X,Y)
		// -----------------------------
		// -- (1,1) -- (2,1) -- (3,1) --
		// -- (1,2) -- (2,1) -- (3,1) --
		// -----------------------------

		// SetDebug(true)
		debugGrid = activeWidget.NewGrid("tmp grid", 2, 3)
		debugGridLabel = debugGrid.NewLabel("mirrors.wit.com")
		// SetDebug(false)
		DebugWidgetWindow(debugGrid)
	})
	n.NewButton("Image", func () {
		activeWidget.NewImage("image")
	})
	n.NewButton("Tab", func () {
		activeWidget.NewTab("myTab")
	})
	n.NewButton("Group", func () {
		a := activeWidget.NewGroup("myGroup")
		a.Custom = func () {
			log("this code is more better", a.widget.B, "id=", a.id)
		}
	})
	n.NewButton("Box(horizontal)", func () {
		a := activeWidget.NewBox("hBox", true)
		a.Custom = func () {
			log("this code is more better", a.widget.B, "id=", a.id)
		}
	})
	n.NewButton("Box(vertical)", func () {
		a := activeWidget.NewBox("vBox", true)
		a.Custom = func () {
			log("this code is more better", a.widget.B, "id=", a.id)
		}
	})
}