Changed manual sysData construction to use a helper function instead.
This commit is contained in:
parent
9a4e7bf5eb
commit
8407bfb0cb
|
@ -19,11 +19,7 @@ type Button struct {
|
||||||
// NewButton creates a new button with the specified text.
|
// NewButton creates a new button with the specified text.
|
||||||
func NewButton(text string) (b *Button) {
|
func NewButton(text string) (b *Button) {
|
||||||
return &Button{
|
return &Button{
|
||||||
sysData: &sysData{
|
sysData: mksysdata(c_button),
|
||||||
cSysData: cSysData{
|
|
||||||
ctype: c_button,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
initText: text,
|
initText: text,
|
||||||
Clicked: make(chan struct{}),
|
Clicked: make(chan struct{}),
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,11 +20,7 @@ type Checkbox struct {
|
||||||
// NewCheckbox creates a new checkbox with the specified text.
|
// NewCheckbox creates a new checkbox with the specified text.
|
||||||
func NewCheckbox(text string) (c *Checkbox) {
|
func NewCheckbox(text string) (c *Checkbox) {
|
||||||
return &Checkbox{
|
return &Checkbox{
|
||||||
sysData: &sysData{
|
sysData: mksysdata(c_checkbox),
|
||||||
cSysData: cSysData{
|
|
||||||
ctype: c_checkbox,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
initText: text,
|
initText: text,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -36,3 +36,11 @@ const (
|
||||||
c_checkbox
|
c_checkbox
|
||||||
nctypes
|
nctypes
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func mksysdata(ctype int) *sysData {
|
||||||
|
return &sysData{
|
||||||
|
cSysData: cSysData{
|
||||||
|
ctype: ctype,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -25,11 +25,7 @@ type Window struct {
|
||||||
// NewWindow creates a new window with the given title and size. The window is not constructed at the OS level until a call to Open().
|
// NewWindow creates a new window with the given title and size. The window is not constructed at the OS level until a call to Open().
|
||||||
func NewWindow(title string, width int, height int) *Window {
|
func NewWindow(title string, width int, height int) *Window {
|
||||||
return &Window{
|
return &Window{
|
||||||
sysData: &sysData{
|
sysData: mksysdata(c_window),
|
||||||
cSysData: cSysData{
|
|
||||||
ctype: c_window,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
initTitle: title,
|
initTitle: title,
|
||||||
initWidth: width,
|
initWidth: width,
|
||||||
initHeight: height,
|
initHeight: height,
|
||||||
|
|
Loading…
Reference in New Issue