Example #1
0
// Show shows the Spinbox.
func (s *Spinbox) Show() {
	C.uiControlShow(s.c)
}
Example #2
0
// Show shows the Entry.
func (e *Entry) Show() {
	C.uiControlShow(e.c)
}
Example #3
0
// Show shows the Group.
func (g *Group) Show() {
	C.uiControlShow(g.c)
}
Example #4
0
// Show shows the ProgressBar.
func (p *ProgressBar) Show() {
	C.uiControlShow(p.c)
}
Example #5
0
// Show shows the Slider.
func (s *Slider) Show() {
	C.uiControlShow(s.c)
}
Example #6
0
// LibuiControlShow allows implementations of Control
// to call the libui function uiControlShow.
func LibuiControlShow(c uintptr) {
	C.uiControlShow(touiControl(c))
}
Example #7
0
// Show shows the Box.
func (b *Box) Show() {
	C.uiControlShow(b.c)
}
Example #8
0
// Show shows the DateTimePicker.
func (d *DateTimePicker) Show() {
	C.uiControlShow(d.c)
}
Example #9
0
File: area.go Project: sjn1978/ui
// Show shows the Area.
func (a *Area) Show() {
	C.uiControlShow(a.c)
}
Example #10
0
File: window.go Project: 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)
}
Example #11
0
// Show shows the Combobox.
func (c *Combobox) Show() {
	C.uiControlShow(c.co)
}
Example #12
0
// Show shows the RadioButtons.
func (r *RadioButtons) Show() {
	C.uiControlShow(r.c)
}
Example #13
0
// Show shows the Tab.
func (t *Tab) Show() {
	C.uiControlShow(t.c)
}
Example #14
0
File: label.go Project: sjn1978/ui
// Show shows the Label.
func (l *Label) Show() {
	C.uiControlShow(l.c)
}
Example #15
0
// Show shows the Button.
func (b *Button) Show() {
	C.uiControlShow(b.c)
}
Example #16
0
// Show shows the Separator.
func (s *Separator) Show() {
	C.uiControlShow(s.c)
}
Example #17
0
// Show shows the Checkbox.
func (c *Checkbox) Show() {
	C.uiControlShow(c.co)
}
Example #18
0
// Show shows the Control.
func (c *control) Show() {
	C.uiControlShow(c.c)
}