-
Notifications
You must be signed in to change notification settings - Fork 648
/
group.go
80 lines (67 loc) · 1.77 KB
/
group.go
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// 12 december 2015
package ui
import (
"unsafe"
)
// #include "pkgui.h"
import "C"
// Group is a Control that holds another Control and wraps it around
// a labelled box (though some systems make this box invisible).
// You can use this to group related controls together.
type Group struct {
ControlBase
g *C.uiGroup
child Control
}
// NewGroup creates a new Group.
func NewGroup(title string) *Group {
g := new(Group)
ctitle := C.CString(title)
g.g = C.uiNewGroup(ctitle)
freestr(ctitle)
g.ControlBase = NewControlBase(g, uintptr(unsafe.Pointer(g.g)))
return g
}
// Destroy destroys the Group. If the Group has a child,
// Destroy calls Destroy on that as well.
func (g *Group) Destroy() {
if g.child != nil {
c := g.child
g.SetChild(nil)
c.Destroy()
}
g.ControlBase.Destroy()
}
// Title returns the Group's title.
func (g *Group) Title() string {
ctitle := C.uiGroupTitle(g.g)
title := C.GoString(ctitle)
C.uiFreeText(ctitle)
return title
}
// SetTitle sets the Group's title to title.
func (g *Group) SetTitle(title string) {
ctitle := C.CString(title)
C.uiGroupSetTitle(g.g, ctitle)
freestr(ctitle)
}
// SetChild sets the Group's child to child. If child is nil, the Group
// will not have a child.
func (g *Group) SetChild(child Control) {
g.child = child
c := (*C.uiControl)(nil)
if g.child != nil {
c = touiControl(g.child.LibuiControl())
}
C.uiGroupSetChild(g.g, c)
}
// Margined returns whether the Group has margins around its child.
func (g *Group) Margined() bool {
return tobool(C.uiGroupMargined(g.g))
}
// SetMargined controls whether the Group has margins around its
// child. The size of the margins are determined by the OS and its
// best practices.
func (g *Group) SetMargined(margined bool) {
C.uiGroupSetMargined(g.g, frombool(margined))
}