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