-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathradiobuttonimpl.go
50 lines (40 loc) · 960 Bytes
/
radiobuttonimpl.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
//go:build impl
package faithtop
import (
"github.com/therecipe/qt/widgets"
)
type RadioButtonImpl struct {
*WidgetImpl
radioButton *widgets.QRadioButton
}
func init() {
newRadioButtonImpl = func() IRadioButton {
v := &RadioButtonImpl{
radioButton: widgets.NewQRadioButton(nil),
}
v.WidgetImpl = widgetImplFrom(v.radioButton.QWidget_PTR())
return v
}
}
func (r *RadioButtonImpl) Checked(b bool) IRadioButton {
r.radioButton.SetChecked(b)
return r
}
func (r *RadioButtonImpl) Text(text string) IRadioButton {
r.radioButton.SetText(text)
return r
}
func (r *RadioButtonImpl) GetText() string {
return r.radioButton.Text()
}
func (r *RadioButtonImpl) Assign(v *IRadioButton) IRadioButton {
*v = r
return r
}
func (r *RadioButtonImpl) IsChecked() bool {
return r.radioButton.IsChecked()
}
func (r *RadioButtonImpl) Group(g *IButtonGroup) IRadioButton {
(*g).(*ButtonGroupImpl).buttonGroup.AddButton(r.radioButton, 0)
return r
}