This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
tomo-old/backends/x/window.go

315 lines
7.8 KiB
Go
Raw Normal View History

2023-01-09 06:03:19 +00:00
package x
import "image"
import "github.com/jezek/xgb/xproto"
import "github.com/jezek/xgbutil/ewmh"
import "github.com/jezek/xgbutil/icccm"
import "github.com/jezek/xgbutil/xevent"
import "github.com/jezek/xgbutil/xwindow"
import "github.com/jezek/xgbutil/xgraphics"
import "git.tebibyte.media/sashakoshka/tomo"
type Window struct {
backend *Backend
xWindow *xwindow.Window
xCanvas *xgraphics.Image
2023-01-31 21:13:20 +00:00
canvas tomo.BasicCanvas
child tomo.Element
onClose func ()
2023-01-09 06:03:19 +00:00
skipChildDrawCallback bool
metrics struct {
width int
height int
}
}
func (backend *Backend) NewWindow (
width, height int,
) (
output tomo.Window,
err error,
) {
if backend == nil { panic("nil backend") }
window := &Window { backend: backend }
window.xWindow, err = xwindow.Generate(backend.connection)
if err != nil { return }
window.xWindow.Create (
backend.connection.RootWin(),
0, 0, width, height, 0)
err = window.xWindow.Listen (
2023-01-26 07:08:07 +00:00
xproto.EventMaskExposure,
2023-01-09 06:03:19 +00:00
xproto.EventMaskStructureNotify,
xproto.EventMaskPointerMotion,
xproto.EventMaskKeyPress,
xproto.EventMaskKeyRelease,
xproto.EventMaskButtonPress,
xproto.EventMaskButtonRelease)
if err != nil { return }
window.xWindow.WMGracefulClose (func (xWindow *xwindow.Window) {
window.Close()
})
2023-01-26 07:08:07 +00:00
xevent.ExposeFun(window.handleExpose).
Connect(backend.connection, window.xWindow.Id)
2023-01-09 06:03:19 +00:00
xevent.ConfigureNotifyFun(window.handleConfigureNotify).
Connect(backend.connection, window.xWindow.Id)
xevent.KeyPressFun(window.handleKeyPress).
Connect(backend.connection, window.xWindow.Id)
xevent.KeyReleaseFun(window.handleKeyRelease).
Connect(backend.connection, window.xWindow.Id)
xevent.ButtonPressFun(window.handleButtonPress).
Connect(backend.connection, window.xWindow.Id)
xevent.ButtonReleaseFun(window.handleButtonRelease).
Connect(backend.connection, window.xWindow.Id)
xevent.MotionNotifyFun(window.handleMotionNotify).
Connect(backend.connection, window.xWindow.Id)
window.metrics.width = width
window.metrics.height = height
window.childMinimumSizeChangeCallback(8, 8)
window.reallocateCanvas()
backend.windows[window.xWindow.Id] = window
output = window
return
}
func (window *Window) Adopt (child tomo.Element) {
2023-01-19 20:02:56 +00:00
// disown previous child
2023-01-09 06:03:19 +00:00
if window.child != nil {
2023-01-19 20:02:56 +00:00
window.child.OnDamage(nil)
window.child.OnMinimumSizeChange(nil)
}
if previousChild, ok := window.child.(tomo.Flexible); ok {
previousChild.OnFlexibleHeightChange(nil)
}
2023-01-30 22:01:47 +00:00
if previousChild, ok := window.child.(tomo.Focusable); ok {
previousChild.OnFocusRequest(nil)
previousChild.OnFocusMotionRequest(nil)
if previousChild.Focused() {
previousChild.HandleUnfocus()
2023-01-15 17:23:13 +00:00
}
2023-01-09 06:03:19 +00:00
}
2023-01-19 20:02:56 +00:00
// adopt new child
2023-01-09 06:03:19 +00:00
window.child = child
2023-01-19 20:02:56 +00:00
if newChild, ok := child.(tomo.Flexible); ok {
newChild.OnFlexibleHeightChange(window.resizeChildToFit)
}
2023-01-30 22:01:47 +00:00
if newChild, ok := child.(tomo.Focusable); ok {
newChild.OnFocusRequest(window.childSelectionRequestCallback)
2023-01-19 20:02:56 +00:00
}
2023-01-09 06:03:19 +00:00
if child != nil {
2023-01-19 20:02:56 +00:00
child.OnDamage(window.childDrawCallback)
child.OnMinimumSizeChange (func () {
window.childMinimumSizeChangeCallback (
child.MinimumSize())
})
2023-01-09 06:03:19 +00:00
window.resizeChildToFit()
2023-01-19 20:02:56 +00:00
window.childMinimumSizeChangeCallback(child.MinimumSize())
2023-01-26 07:08:07 +00:00
window.redrawChildEntirely()
2023-01-09 06:03:19 +00:00
}
}
func (window *Window) Child () (child tomo.Element) {
child = window.child
return
}
func (window *Window) SetTitle (title string) {
ewmh.WmNameSet (
window.backend.connection,
window.xWindow.Id,
title)
}
func (window *Window) SetIcon (sizes []image.Image) {
wmIcons := []ewmh.WmIcon { }
for _, icon := range sizes {
width := icon.Bounds().Max.X
height := icon.Bounds().Max.Y
wmIcon := ewmh.WmIcon {
Width: uint(width),
Height: uint(height),
Data: make ([]uint, width * height),
}
// manually convert image data beacuse of course we have to do
// this
index := 0
for y := 0; y < height; y ++ {
for x := 0; x < width; x ++ {
r, g, b, a := icon.At(x, y).RGBA()
r >>= 8
g >>= 8
b >>= 8
a >>= 8
wmIcon.Data[index] =
(uint(a) << 24) |
(uint(r) << 16) |
(uint(g) << 8) |
(uint(b) << 0)
index ++
}}
wmIcons = append(wmIcons, wmIcon)
}
ewmh.WmIconSet (
window.backend.connection,
window.xWindow.Id,
wmIcons)
}
func (window *Window) Show () {
if window.child == nil {
window.xCanvas.For (func (x, y int) xgraphics.BGRA {
return xgraphics.BGRA { }
})
window.pushRegion(window.xCanvas.Bounds())
}
window.xWindow.Map()
}
func (window *Window) Hide () {
window.xWindow.Unmap()
}
func (window *Window) Close () {
delete(window.backend.windows, window.xWindow.Id)
if window.onClose != nil { window.onClose() }
xevent.Detach(window.xWindow.X, window.xWindow.Id)
window.xWindow.Destroy()
}
func (window *Window) OnClose (callback func ()) {
window.onClose = callback
}
func (window *Window) reallocateCanvas () {
2023-01-31 21:13:20 +00:00
window.canvas = tomo.NewBasicCanvas (
window.metrics.width,
window.metrics.height)
2023-01-09 06:03:19 +00:00
if window.xCanvas != nil {
window.xCanvas.Destroy()
}
window.xCanvas = xgraphics.New (
window.backend.connection,
image.Rect (
0, 0,
window.metrics.width,
window.metrics.height))
2023-01-26 07:08:07 +00:00
window.xCanvas.CreatePixmap()
2023-01-09 06:03:19 +00:00
}
func (window *Window) redrawChildEntirely () {
window.pushRegion(window.paste(window.child))
2023-01-31 21:13:20 +00:00
2023-01-09 06:03:19 +00:00
}
func (window *Window) resizeChildToFit () {
window.skipChildDrawCallback = true
2023-01-17 03:27:17 +00:00
if child, ok := window.child.(tomo.Flexible); ok {
2023-01-19 20:02:56 +00:00
minimumHeight := child.FlexibleHeightFor(window.metrics.width)
minimumWidth, _ := child.MinimumSize()
icccm.WmNormalHintsSet (
window.backend.connection,
window.xWindow.Id,
&icccm.NormalHints {
Flags: icccm.SizeHintPMinSize,
MinWidth: uint(minimumWidth),
MinHeight: uint(minimumHeight),
})
if window.metrics.height >= minimumHeight &&
window.metrics.width >= minimumWidth {
2023-01-31 21:13:20 +00:00
window.child.DrawTo(window.canvas)
}
2023-01-15 17:23:13 +00:00
} else {
2023-01-31 21:13:20 +00:00
window.child.DrawTo(window.canvas)
2023-01-15 17:23:13 +00:00
}
2023-01-09 06:03:19 +00:00
window.skipChildDrawCallback = false
}
func (window *Window) childDrawCallback (region tomo.Canvas) {
2023-01-09 06:03:19 +00:00
if window.skipChildDrawCallback { return }
window.pushRegion(window.paste(region))
}
2023-01-09 06:03:19 +00:00
func (window *Window) paste (canvas tomo.Canvas) (updatedRegion image.Rectangle) {
data, stride := canvas.Buffer()
bounds := canvas.Bounds().Intersect(window.xCanvas.Bounds())
2023-01-09 06:03:19 +00:00
for x := bounds.Min.X; x < bounds.Max.X; x ++ {
for y := bounds.Min.Y; y < bounds.Max.Y; y ++ {
rgba := data[x + y * stride]
index := x * 4 + y * window.xCanvas.Stride
window.xCanvas.Pix[index + 0] = rgba.B
window.xCanvas.Pix[index + 1] = rgba.G
window.xCanvas.Pix[index + 2] = rgba.R
window.xCanvas.Pix[index + 3] = rgba.A
2023-01-09 06:03:19 +00:00
}}
return bounds
2023-01-09 06:03:19 +00:00
}
func (window *Window) childMinimumSizeChangeCallback (width, height int) {
icccm.WmNormalHintsSet (
window.backend.connection,
window.xWindow.Id,
&icccm.NormalHints {
Flags: icccm.SizeHintPMinSize,
MinWidth: uint(width),
MinHeight: uint(height),
})
newWidth := window.metrics.width
newHeight := window.metrics.height
if newWidth < width { newWidth = width }
if newHeight < height { newHeight = height }
if newWidth != window.metrics.width ||
newHeight != window.metrics.height {
window.xWindow.Resize(newWidth, newHeight)
}
}
2023-01-12 03:30:14 +00:00
func (window *Window) childSelectionRequestCallback () (granted bool) {
2023-01-30 22:01:47 +00:00
if child, ok := window.child.(tomo.Focusable); ok {
child.HandleFocus(tomo.KeynavDirectionNeutral)
2023-01-15 17:23:13 +00:00
}
2023-01-12 03:30:14 +00:00
return true
2023-01-09 20:14:36 +00:00
}
func (window *Window) childSelectionMotionRequestCallback (
2023-01-30 22:01:47 +00:00
direction tomo.KeynavDirection,
) (
granted bool,
) {
2023-01-30 22:01:47 +00:00
if child, ok := window.child.(tomo.Focusable); ok {
if !child.HandleFocus(direction) {
child.HandleUnfocus()
}
return true
}
return true
}
2023-01-09 06:03:19 +00:00
func (window *Window) pushRegion (region image.Rectangle) {
if window.xCanvas == nil { panic("whoopsie!!!!!!!!!!!!!!") }
image, ok := window.xCanvas.SubImage(region).(*xgraphics.Image)
if ok {
image.XDraw()
2023-01-26 07:08:07 +00:00
image.XExpPaint (
window.xWindow.Id,
image.Bounds().Min.X,
image.Bounds().Min.Y)
2023-01-09 06:03:19 +00:00
}
}