summaryrefslogtreecommitdiff
path: root/newctrl/control.go
blob: 3a03a54814f13825628ad5845902177c1324b434 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// 30 july 2014

package ui

// Control represents a control.
type Control interface {
	setParent(p *controlParent) // controlParent defined per-platform
	preferredSize(d *sizing) (width, height int)
	resize(x int, y int, width int, height int, d *sizing)
	nTabStops() int		// used by the Windows backend
}

type controlbase struct {
	fsetParent			func(p *controlParent)
	fpreferredSize		func(d *sizing) (width, height int)
	fresize			func(x int, y int, width int, height int, d *sizing)
	fnTabStops		func() int
}

func (c *controlbase) setParent(p *controlParent) {
	c.fsetParent(p)
}

func (c *controlbase) preferredSize(d *sizing) (width, height int) {
	return c.fpreferredSize(d)
}

func (c *controlbase) resize(x int, y int, width int, height int, d *sizing) {
	c.fresize(x, y, width, height, d)
}

func (c *controlbase) nTabStops() int {
	return c.fnTabStops()
}