예제 #1
0
파일: spinbox.go 프로젝트: sjn1978/ui
// Disable disables the Spinbox.
func (s *Spinbox) Disable() {
	C.uiControlDisable(s.c)
}
예제 #2
0
파일: entry.go 프로젝트: carriercomm/ui-1
// Disable disables the Entry.
func (e *Entry) Disable() {
	C.uiControlDisable(e.c)
}
예제 #3
0
파일: group.go 프로젝트: carriercomm/ui-1
// Disable disables the Group.
func (g *Group) Disable() {
	C.uiControlDisable(g.c)
}
예제 #4
0
파일: progressbar.go 프로젝트: sjn1978/ui
// Disable disables the ProgressBar.
func (p *ProgressBar) Disable() {
	C.uiControlDisable(p.c)
}
예제 #5
0
파일: slider.go 프로젝트: carriercomm/ui-1
// Disable disables the Slider.
func (s *Slider) Disable() {
	C.uiControlDisable(s.c)
}
예제 #6
0
파일: control.go 프로젝트: duckbrain/ui
// LibuiControlDisable allows implementations of Control
// to call the libui function uiControlDisable.
func LibuiControlDisable(c uintptr) {
	C.uiControlDisable(touiControl(c))
}
예제 #7
0
파일: box.go 프로젝트: carriercomm/ui-1
// Disable disables the Box.
func (b *Box) Disable() {
	C.uiControlDisable(b.c)
}
예제 #8
0
// Disable disables the DateTimePicker.
func (d *DateTimePicker) Disable() {
	C.uiControlDisable(d.c)
}
예제 #9
0
파일: area.go 프로젝트: sjn1978/ui
// Disable disables the Area.
func (a *Area) Disable() {
	C.uiControlDisable(a.c)
}
예제 #10
0
파일: window.go 프로젝트: sjn1978/ui
// Disable disables the Window.
func (w *Window) Disable() {
	C.uiControlDisable(w.c)
}
예제 #11
0
파일: combobox.go 프로젝트: sjn1978/ui
// Disable disables the Combobox.
func (c *Combobox) Disable() {
	C.uiControlDisable(c.co)
}
예제 #12
0
파일: radiobuttons.go 프로젝트: sjn1978/ui
// Disable disables the RadioButtons.
func (r *RadioButtons) Disable() {
	C.uiControlDisable(r.c)
}
예제 #13
0
파일: tab.go 프로젝트: carriercomm/ui-1
// Disable disables the Tab.
func (t *Tab) Disable() {
	C.uiControlDisable(t.c)
}
예제 #14
0
파일: label.go 프로젝트: sjn1978/ui
// Disable disables the Label.
func (l *Label) Disable() {
	C.uiControlDisable(l.c)
}
예제 #15
0
파일: button.go 프로젝트: carriercomm/ui-1
// Disable disables the Button.
func (b *Button) Disable() {
	C.uiControlDisable(b.c)
}
예제 #16
0
파일: separator.go 프로젝트: sjn1978/ui
// Disable disables the Separator.
func (s *Separator) Disable() {
	C.uiControlDisable(s.c)
}
예제 #17
0
// Disable disables the Checkbox.
func (c *Checkbox) Disable() {
	C.uiControlDisable(c.co)
}
예제 #18
0
파일: control.go 프로젝트: duckbrain/ui
// Disable disables the Control.
func (c *control) Disable() {
	C.uiControlDisable(c.c)
}