aboutsummaryrefslogtreecommitdiffstats
path: root/layout/doc.go
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2026-02-09 22:00:33 -0500
committerSam Anthony <sam@samanthony.xyz>2026-02-09 22:00:33 -0500
commit8f28d1044fb83153fde4505421b75072930d6fb9 (patch)
treeec39000ed901dc959626fc09d8e270268c6b3d03 /layout/doc.go
parent5fde17eafa11bf397bbf1f18864b8ee26d9a701d (diff)
downloadgui-8f28d1044fb83153fde4505421b75072930d6fb9.zip
layout: add background color option
Diffstat (limited to 'layout/doc.go')
-rw-r--r--layout/doc.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/layout/doc.go b/layout/doc.go
deleted file mode 100644
index bae4673..0000000
--- a/layout/doc.go
+++ /dev/null
@@ -1,15 +0,0 @@
-/*
-Package layout provides means of partitioning screen space.
-
-A layout exists in a parent Env, and has one or more child Envs. It
-acts as a multiplexer for the children. The parent Env may be a window,
-another layout, or whatever... Several layers of layouts can be composed.
-
-A layout allocates screen area to its children by intercepting Resize
-events from the parent Env. Upon reception by the layout, a Resize event
-is transformed for each child, and forwarded to them.
-
-Draw calls from the children are intercepted and translated onto their
-respective areas before being forwarded to the parent Env.
-*/
-package layout