This repository has been archived on 2024-06-03. You can view files and clone it, but cannot push or open issues or pull requests.
x/system.go

124 lines
2.3 KiB
Go
Raw Normal View History

2023-07-02 06:52:14 +00:00
package x
2023-07-04 04:04:00 +00:00
import "image"
2023-07-02 06:52:14 +00:00
import "git.tebibyte.media/tomo/tomo"
2023-07-04 04:04:00 +00:00
import "git.tebibyte.media/tomo/tomo/canvas"
type boxSet map[anyBox] struct { }
func (set boxSet) Empty () bool {
return set == nil || len(set) == 0
}
func (set boxSet) Has (box anyBox) bool {
if set == nil { return false }
_, ok := set[box]
return ok
}
func (set *boxSet) Add (box anyBox) {
if *set == nil {
*set = make(boxSet)
}
(*set)[box] = struct { } { }
}
func (set *boxSet) Pop () anyBox {
for box := range *set {
delete(*set, box)
return box
}
return nil
}
type parent interface {
window () *window
canvas () canvas.Canvas
}
2023-07-02 06:52:14 +00:00
type anyBox interface {
tomo.Box
2023-07-04 04:04:00 +00:00
doDraw ()
doLayout ()
setParent (parent)
recursiveRedo ()
2023-07-02 06:52:14 +00:00
}
2023-07-05 07:25:50 +00:00
func assertAnyBox (unknown tomo.Box) anyBox {
if box, ok := unknown.(anyBox); ok {
return box
} else {
panic("foregin box implementation, i did not make this!")
}
}
2023-07-02 06:52:14 +00:00
func (window *window) SetRoot (root tomo.Object) {
2023-07-05 04:44:56 +00:00
if window.root != nil {
window.root.setParent(nil)
}
if root == nil {
window.root = nil
} else {
2023-07-05 07:25:50 +00:00
box := assertAnyBox(root.Box())
2023-07-05 04:44:56 +00:00
box.setParent(window)
window.invalidateLayout(box)
window.root = box
}
2023-07-02 06:52:14 +00:00
}
2023-07-04 04:04:00 +00:00
func (window *window) window () *window {
return window
}
func (window *window) canvas () canvas.Canvas {
return window.xCanvas
}
func (window *window) invalidateDraw (box anyBox) {
window.needDraw.Add(box)
}
func (window *window) invalidateLayout (box anyBox) {
window.needLayout.Add(box)
window.invalidateDraw(box)
}
func (window *window) focus (box anyBox) {
if window.focused == box { return }
window.invalidateDraw(window.focused)
window.focused = box
window.invalidateDraw(box)
}
func (window *window) afterEvent () {
2023-07-05 04:44:56 +00:00
if window.xCanvas == nil { return }
2023-07-04 04:04:00 +00:00
if window.needRedo {
2023-07-05 04:44:56 +00:00
// set child bounds
childBounds := window.metrics.bounds
childBounds = childBounds.Sub(childBounds.Min)
window.root.SetBounds(childBounds)
// full relayout/redraw
2023-07-04 04:04:00 +00:00
if window.root != nil {
window.root.recursiveRedo()
}
2023-07-05 04:44:56 +00:00
window.pushAll()
window.needRedo = false
2023-07-04 04:04:00 +00:00
return
}
for len(window.needLayout) > 0 {
window.needLayout.Pop().doLayout()
}
var toPush image.Rectangle
for len(window.needDraw) > 0 {
box := window.needDraw.Pop()
box.doDraw()
toPush = toPush.Union(box.Bounds())
}
2023-07-05 04:44:56 +00:00
if !toPush.Empty() {
window.pushRegion(toPush)
}
2023-07-02 06:52:14 +00:00
}