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