Exemplo n.º 1
0
// Hide hides the Spinbox.
func (s *Spinbox) Hide() {
	C.uiControlHide(s.c)
}
Exemplo n.º 2
0
// Hide hides the Entry.
func (e *Entry) Hide() {
	C.uiControlHide(e.c)
}
Exemplo n.º 3
0
// Hide hides the Group.
func (g *Group) Hide() {
	C.uiControlHide(g.c)
}
Exemplo n.º 4
0
// Hide hides the ProgressBar.
func (p *ProgressBar) Hide() {
	C.uiControlHide(p.c)
}
Exemplo n.º 5
0
// Hide hides the Slider.
func (s *Slider) Hide() {
	C.uiControlHide(s.c)
}
Exemplo n.º 6
0
// LibuiControlHide allows implementations of Control
// to call the libui function uiControlHide.
func LibuiControlHide(c uintptr) {
	C.uiControlHide(touiControl(c))
}
Exemplo n.º 7
0
// Hide hides the Box.
func (b *Box) Hide() {
	C.uiControlHide(b.c)
}
Exemplo n.º 8
0
// Hide hides the DateTimePicker.
func (d *DateTimePicker) Hide() {
	C.uiControlHide(d.c)
}
Exemplo n.º 9
0
Arquivo: area.go Projeto: sjn1978/ui
// Hide hides the Area.
func (a *Area) Hide() {
	C.uiControlHide(a.c)
}
Exemplo n.º 10
0
Arquivo: window.go Projeto: sjn1978/ui
// Hide hides the Window.
func (w *Window) Hide() {
	C.uiControlHide(w.c)
}
Exemplo n.º 11
0
// Hide hides the Combobox.
func (c *Combobox) Hide() {
	C.uiControlHide(c.co)
}
Exemplo n.º 12
0
// Hide hides the RadioButtons.
func (r *RadioButtons) Hide() {
	C.uiControlHide(r.c)
}
Exemplo n.º 13
0
// Hide hides the Tab.
func (t *Tab) Hide() {
	C.uiControlHide(t.c)
}
Exemplo n.º 14
0
Arquivo: label.go Projeto: sjn1978/ui
// Hide hides the Label.
func (l *Label) Hide() {
	C.uiControlHide(l.c)
}
Exemplo n.º 15
0
// Hide hides the Button.
func (b *Button) Hide() {
	C.uiControlHide(b.c)
}
Exemplo n.º 16
0
// Hide hides the Separator.
func (s *Separator) Hide() {
	C.uiControlHide(s.c)
}
Exemplo n.º 17
0
// Hide hides the Checkbox.
func (c *Checkbox) Hide() {
	C.uiControlHide(c.co)
}
Exemplo n.º 18
0
// Hide hides the Control.
func (c *control) Hide() {
	C.uiControlHide(c.c)
}