summaryrefslogtreecommitdiff
path: root/toolkit/andlabs/delete.go
blob: dc28371e708c8f317ac4be7f95e7f75a57829bc6 (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
package main

// if you include more than just this import
// then your plugin might be doing something un-ideal (just a guess from 2023/02/27)
import "git.wit.org/wit/gui/toolkit"

// delete the child widget from the parent
// p = parent, c = child
func destroy(pId int, cId int) {
	log(true, "delete()", pId, cId)

	pt := andlabs[pId]
	ct := andlabs[cId]
	if (ct == nil) {
		log(true, "delete FAILED (ct = mapToolkit[c] == nil) for c", pId, cId)
		// this pukes out a whole universe of shit
		// listMap()
		return
	}

	switch ct.WidgetType {
	case toolkit.Button:
		log(true, "Should delete Button here:", ct.Name)
		log(true, "Parent:")
		pt.Dump(true)
		log(true, "Child:")
		ct.Dump(true)
		if (pt.uiBox == nil) {
			log(true, "Don't know how to destroy this")
		} else {
			log(true, "Fuck it, destroy the whole box", pt.Name)
			// pt.uiBox.Destroy() // You have a bug: You cannot destroy a uiControl while it still has a parent.
			pt.uiBox.SetPadded(false)
			pt.uiBox.Delete(4)
			ct.uiButton.Disable()
			// ct.uiButton.Hide()
			ct.uiButton.Destroy()
		}

	case toolkit.Window:
		log(true, "Should delete Window here:", ct.Name)
	default:
		log(true, "Don't know how to delete pt =", pt.WidgetType, pt.Name, pt.uiButton)
		log(true, "Don't know how to delete ct =", ct.WidgetType, ct.Name, ct.uiButton)
		log(true, "Parent:")
		pt.Dump(true)
		log(true, "Child:")
		ct.Dump(true)
		log(true, "Fuckit, let's destroy a button")
		if (ct.uiButton != nil) {
			pt.uiBox.Delete(4)
			ct.uiButton.Destroy()
		}
	}
}