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