summaryrefslogtreecommitdiff
path: root/control.go
diff options
context:
space:
mode:
Diffstat (limited to 'control.go')
-rw-r--r--control.go20
1 files changed, 20 insertions, 0 deletions
diff --git a/control.go b/control.go
new file mode 100644
index 0000000..0358965
--- /dev/null
+++ b/control.go
@@ -0,0 +1,20 @@
+// 30 july 2014
+
+package ui
+
+// Control represents a control.
+type Control interface {
+ setParent(p *controlParent) // controlParent defined per-platform
+ controlSizing
+}
+
+// this is the same across all platforms
+func baseallocate(c Control, x int, y int, width int, height int, d *sizing) []*allocation {
+ return []*allocation{&allocation{
+ x: x,
+ y: y,
+ width: width,
+ height: height,
+ this: c,
+ }}
+}