summaryrefslogtreecommitdiff
path: root/newctrl/control.go
diff options
context:
space:
mode:
Diffstat (limited to 'newctrl/control.go')
-rw-r--r--newctrl/control.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/newctrl/control.go b/newctrl/control.go
index 1f08ce2..3a03a54 100644
--- a/newctrl/control.go
+++ b/newctrl/control.go
@@ -5,10 +5,9 @@ package ui
// Control represents a control.
type Control interface {
setParent(p *controlParent) // controlParent defined per-platform
-// nChildren() int // TODO
preferredSize(d *sizing) (width, height int)
resize(x int, y int, width int, height int, d *sizing)
- nTabStops() int
+ nTabStops() int // used by the Windows backend
}
type controlbase struct {