コード例 #1
0
ファイル: panels.go プロジェクト: ChimeraCoder/gocurse
func (panel *Panel) Bottom() bool {
	return isOk(C.bottom_panel((*C.PANEL)(panel)))
}
コード例 #2
0
ファイル: panel.go プロジェクト: zozor/gocurse
func (p *Panel) Bottom() error {
	if C.bottom_panel(p.panel) == ERR {
		return Error
	}
	return nil
}
コード例 #3
0
ファイル: panel.go プロジェクト: trotha01/goncurses
// 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
}