Example #1
0
func (panel *Panel) Bottom() bool {
	return isOk(C.bottom_panel((*C.PANEL)(panel)))
}
Example #2
0
func (p *Panel) Bottom() error {
	if C.bottom_panel(p.panel) == ERR {
		return Error
	}
	return nil
}
Example #3
0
// Move the panel to the bottom of the stack.
func (p *Panel) Bottom() error {
	if C.bottom_panel(p.pan) == C.ERR {
		return errors.New("Failed to move panel to bottom of stack")
	}
	return nil
}