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