當前位置: 首頁>>代碼示例>>Golang>>正文


Golang Gui.View方法代碼示例

本文整理匯總了Golang中github.com/grafov/gocui.Gui.View方法的典型用法代碼示例。如果您正苦於以下問題:Golang Gui.View方法的具體用法?Golang Gui.View怎麽用?Golang Gui.View使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/grafov/gocui.Gui的用法示例。


在下文中一共展示了Gui.View方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: addSource

func addSource(g *gocui.Gui, p *gocui.View) error {
	v, _ := g.View("addSource")
	v.Editable = true
	if v.Visible() {
		v.Hide()
	} else {
		v.Unhide()
	}
	return nil
}
開發者ID:gophergala2016,項目名稱:dbcom,代碼行數:10,代碼來源:actions.go

示例2: cursorDownInEditor

// cursorDownEditor enlarge sql view when a new line added
func cursorDownInEditor(g *gocui.Gui, v *gocui.View) error {
	x, y := v.Cursor()
	_, sizeY := v.Size()
	if y >= sizeY-1 {
		if splitY == minSplit {
			return nil
		}
		splitY--
		l, _ := g.View("log")
		l.Resize(0, -1)
		v.Resize(0, 1)
		v.SetOrigin(0, 0)
		v.SetCursor(x, y+1)
	}
	return nil
}
開發者ID:gophergala2016,項目名稱:dbcom,代碼行數:17,代碼來源:actions.go

示例3: execQuery

func execQuery(g *gocui.Gui, v *gocui.View) error {
	dbc := db.Use("test")
	query := strings.TrimSpace(v.Buffer())
	v.Reset()
	fmt.Fprint(v, query)
	widtgh, height := v.Size()
	if height > v.LinesCount() {
		v.SetSize(widtgh, v.LinesCount())
		_, maxY := g.Size()
		splitY = maxY - v.LinesCount() - 3
	}
	v.SetCursor(0, 0)
	if len(query) == 0 {
		return nil
	}

	log, _ := g.View("log")
	rows, err := dbc.Queryx(query)
	if err != nil {
		fmt.Fprintln(log, err)
		return nil
	}

	fmt.Fprintln(log, "\n", query)
	logWidth, _ := log.Size()
	log.Write(bytes.Repeat([]byte("─"), logWidth))
	for rows.Next() {
		log.Write([]byte("\n"))
		cols, err := rows.SliceScan()
		if err != nil {
			fmt.Fprintln(log, err)
			err = nil
			break
		}
		for _, col := range cols {
			if col != nil {
				log.Write(col.([]byte))
				log.Write([]byte("\t"))
			}
		}
	}
	log.Write([]byte("\n"))
	log.Write(bytes.Repeat([]byte("─"), logWidth))

	return err
}
開發者ID:grafov,項目名稱:dbcom,代碼行數:46,代碼來源:actions.go

示例4: switchPanels

func switchPanels(g *gocui.Gui, v *gocui.View) error {
	lp, _ := g.View("lpanel")
	rp, _ := g.View("rpanel")
	if twoPanelsVisible {
		lp.Hide()
		rp.Hide()
		g.SetCurrentView("sql")
		g.ShowCursor = true
		twoPanelsVisible = false
	} else {
		lp.Unhide()
		rp.Unhide()
		g.SetCurrentView("lpanel")
		g.ShowCursor = false
		twoPanelsVisible = true
	}
	return nil
}
開發者ID:gophergala2016,項目名稱:dbcom,代碼行數:18,代碼來源:actions.go


注:本文中的github.com/grafov/gocui.Gui.View方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。