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


Golang Canvas.DrawRect方法代碼示例

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


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

示例1: Paint

func (t *PanelTab) Paint(c gxui.Canvas) {
	s := t.Size()
	var style Style
	switch {
	case t.IsMouseDown(gxui.MouseButtonLeft) && t.IsMouseOver():
		style = t.theme.TabPressedStyle
	case t.IsMouseOver():
		style = t.theme.TabOverStyle
	default:
		style = t.theme.TabDefaultStyle
	}
	if l := t.Label(); l != nil {
		l.SetColor(style.FontColor)
	}

	c.DrawRoundedRect(s.Rect(), 5.0, 5.0, 0.0, 0.0, style.Pen, style.Brush)

	if t.HasFocus() {
		style = t.theme.FocusedStyle
		r := math.CreateRect(1, 1, s.W-1, s.H-1)
		c.DrawRoundedRect(r, 4.0, 4.0, 0.0, 0.0, style.Pen, style.Brush)
	}

	if t.active {
		style = t.theme.TabActiveHighlightStyle
		r := math.CreateRect(1, s.H-1, s.W-1, s.H)
		c.DrawRect(r, style.Brush)
	}

	t.Button.Paint(c)
}
開發者ID:liulnn,項目名稱:gxui,代碼行數:31,代碼來源:panel_tab.go

示例2: Paint

// parts.DrawPaint overrides
func (b *SplitterBar) Paint(c gxui.Canvas) {
	r := b.outer.Size().Rect()
	c.DrawRect(r, gxui.CreateBrush(b.backgroundColor))
	if b.foregroundColor != b.backgroundColor {
		c.DrawRect(r.ContractI(1), gxui.CreateBrush(b.foregroundColor))
	}
}
開發者ID:liulnn,項目名稱:gxui,代碼行數:8,代碼來源:splitter_bar.go

示例3: PaintProgress

func (b *ProgressBar) PaintProgress(c gxui.Canvas, r math.Rect, frac float32) {
	r.Max.X = math.Lerp(r.Min.X, r.Max.X, frac)
	c.DrawRect(r, gxui.CreateBrush(gxui.Gray50))
	c.Push()
	c.AddClip(r)
	c.DrawCanvas(b.chevrons, math.Point{X: b.scroll})
	c.Pop()
}
開發者ID:linux-mac,項目名稱:gxui,代碼行數:8,代碼來源:progress_bar.go

示例4: PaintProgress

func (b *ProgressBar) PaintProgress(c gxui.Canvas, r math.Rect, frac float32) {
	r.Max.X = math.Lerp(r.Min.X, r.Max.X, frac)
	c.DrawRect(r, gxui.CreateBrush(gxui.Gray50))
}
開發者ID:langxj,項目名稱:gxui,代碼行數:4,代碼來源:progress_bar.go

示例5: plot

func plot(c gxui.Canvas, x int, y int) {
	brush := gxui.CreateBrush(gxui.White)
	c.DrawRect(math.CreateRect(x, y, x+1, y+1), brush)
}
開發者ID:stmuk,項目名稱:go-examples,代碼行數:4,代碼來源:sin_wave.go


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