本文整理汇总了Golang中github.com/BurntSushi/xgbutil/xgraphics.New函数的典型用法代码示例。如果您正苦于以下问题:Golang New函数的具体用法?Golang New怎么用?Golang New使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了New函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Golang代码示例。
示例1: Init
func (ct *CommandTray) Init() {
var err error
ct.img = xgraphics.New(ct.X, image.Rect(0, 0, ct.Width, ct.Height))
ct.pu_img = xgraphics.New(ct.X, image.Rect(0, 0, ct.Width, ct.Height*10))
ct.window, err = xwindow.Create(ct.X, ct.Parent.Id)
utils.FailMeMaybe(err)
utils.FailMeMaybe(ct.img.XSurfaceSet(ct.window.Id))
ct.window.Move(ct.Position, 0)
ct.window.Resize(ct.Width, ct.Height)
ct.window.Map()
}
开发者ID:AmandaCameron,项目名称:gobar,代码行数:15,代码来源:commandtray.go
示例2: DrawText
// DrawText is a convenience function that will create a new image, render
// the provided text to it, paint the image to the provided window, and resize
// the window to fit the text snugly.
//
// An error can occur when rendering the text to an image.
func DrawText(win *xwindow.Window, font *truetype.Font, size float64,
fontClr, bgClr render.Color, text string) error {
// BUG(burntsushi): If `text` is zero-length, very bad things happen.
if len(text) == 0 {
text = " "
}
// Over estimate the extents.
ew, eh := xgraphics.Extents(font, size, text)
// Create an image using the over estimated extents.
img := xgraphics.New(win.X, image.Rect(0, 0, ew, eh))
xgraphics.BlendBgColor(img, bgClr.ImageColor())
// Now draw the text, grab the (x, y) position advanced by the text, and
// check for an error in rendering.
_, _, err := img.Text(0, 0, fontClr.ImageColor(), size, font, text)
if err != nil {
return err
}
// Resize the window to the geometry determined by (x, y).
win.Resize(ew, eh)
// Now draw the image to the window and destroy it.
img.XSurfaceSet(win.Id)
// subimg := img.SubImage(image.Rect(0, 0, ew, eh))
img.XDraw()
img.XPaint(win.Id)
img.Destroy()
return nil
}
开发者ID:flying99999,项目名称:wingo,代码行数:39,代码来源:render.go
示例3: New
// New allocates and initializes a new DockApp. NewDockApp does not initialize
// the window contents and does not map the window to the display screen. The
// window is mapped to the screen when the Main method is called on the
// returned DockApp.
func New(x *xgbutil.XUtil, rect image.Rectangle) (*DockApp, error) {
win, err := xwindow.Generate(x)
if err != nil {
log.Fatalf("generate window: %v", err)
}
win.Create(x.RootWin(), 0, 0, rect.Size().X, rect.Size().Y, 0)
// Set WM hints so that Openbox puts the window into the dock.
hints := &icccm.Hints{
Flags: icccm.HintState | icccm.HintIconWindow,
InitialState: icccm.StateWithdrawn,
IconWindow: win.Id,
WindowGroup: win.Id,
}
err = icccm.WmHintsSet(x, win.Id, hints)
if err != nil {
win.Destroy()
return nil, fmt.Errorf("wm hints: %v", err)
}
img := xgraphics.New(x, rect)
err = img.XSurfaceSet(win.Id)
if err != nil {
img.Destroy()
win.Destroy()
return nil, fmt.Errorf("xsurface set: %v", err)
}
app := &DockApp{
x: x,
img: img,
win: win,
}
return app, nil
}
开发者ID:bmatsuo,项目名称:dockapp-go,代码行数:37,代码来源:dockapp.go
示例4: DrawText
// DrawText is a convenience function that will create a new image, render
// the provided text to it, paint the image to the provided window, and resize
// the window to fit the text snugly.
//
// An error can occur when rendering the text to an image.
func DrawText(win *xwindow.Window, font *truetype.Font, size float64,
fontClr, bgClr color.RGBA, text string) error {
// Over estimate the extents.
ew, eh := xgraphics.TextMaxExtents(font, size, text)
eh += misc.TextBreathe // <-- this is the bug
// Create an image using the over estimated extents.
img := xgraphics.New(win.X, image.Rect(0, 0, ew, eh))
xgraphics.BlendBgColor(img, bgClr)
// Now draw the text, grab the (x, y) position advanced by the text, and
// check for an error in rendering.
x, y, err := img.Text(0, 0, fontClr, size, font, text)
if err != nil {
return err
}
// Resize the window to the geometry determined by (x, y).
w, h := x, y+misc.TextBreathe // <-- also part of the bug
win.Resize(w, h)
// Now draw the image to the window and destroy it.
img.XSurfaceSet(win.Id)
subimg := img.SubImage(image.Rect(0, 0, w, h))
subimg.XDraw()
subimg.XPaint(win.Id)
img.Destroy()
return nil
}
开发者ID:dlintw,项目名称:wingo,代码行数:36,代码来源:render.go
示例5: NewInput
// NewInput constructs Input values. It needs an X connection, a parent window,
// the width of the input box, and theme information related for the font
// and background. Padding separating the text and the edges of the window
// may also be specified.
//
// While NewInput returns an *Input, a Input value also has an xwindow.Window
// value embedded into it. Thus, an Input can also be treated as a normal
// window on which you can assign callbacks, close, destroy, etc.
//
// As with all windows, the Input window should be destroyed when it is no
// longer in used.
func NewInput(X *xgbutil.XUtil, parent xproto.Window, width int, padding int,
font *truetype.Font, fontSize float64,
fontColor, bgColor render.Color) *Input {
_, height := xgraphics.TextMaxExtents(font, fontSize, "M")
height += misc.TextBreathe
width, height = width+2*padding, height+2*padding
img := xgraphics.New(X, image.Rect(0, 0, width, height))
win := xwindow.Must(xwindow.Create(X, parent))
win.Listen(xproto.EventMaskKeyPress)
win.Resize(width, height)
ti := &Input{
Window: win,
img: img,
Text: make([]rune, 0, 50),
font: font,
fontSize: fontSize,
fontColor: fontColor,
bgColor: bgColor,
padding: padding,
}
ti.Render()
return ti
}
开发者ID:dlintw,项目名称:wingo,代码行数:39,代码来源:input.go
示例6: NewImage
// NewImage returns a new image canvas
// that draws to the given image. The
// minimum point of the given image
// should probably be 0,0.
func NewImage(img draw.Image, name string) (*Canvas, error) {
w := float64(img.Bounds().Max.X - img.Bounds().Min.X)
h := float64(img.Bounds().Max.Y - img.Bounds().Min.Y)
X, err := xgbutil.NewConn()
if err != nil {
return nil, err
}
keybind.Initialize(X)
ximg := xgraphics.New(X, image.Rect(0, 0, int(w), int(h)))
err = ximg.CreatePixmap()
if err != nil {
return nil, err
}
painter := NewPainter(ximg)
gc := draw2d.NewGraphicContextWithPainter(ximg, painter)
gc.SetDPI(dpi)
gc.Scale(1, -1)
gc.Translate(0, -h)
wid := ximg.XShowExtra(name, true)
go func() {
xevent.Main(X)
}()
c := &Canvas{
Canvas: vgimg.NewWith(vgimg.UseImageWithContext(img, gc)),
x: X,
ximg: ximg,
wid: wid,
}
vg.Initialize(c)
return c, nil
}
开发者ID:nolenroyalty,项目名称:bangarang,代码行数:38,代码来源:canvas.go
示例7: NewDisplay
func NewDisplay(width, height, border, heading int, name string) (*Display, error) {
d := new(Display)
d.w = float64(width)
d.h = float64(height)
d.bord = float64(border)
d.head = float64(heading)
X, err := xgbutil.NewConn()
if err != nil {
return nil, err
}
keybind.Initialize(X)
d.ximg = xgraphics.New(X, image.Rect(
0,
0,
border*2+width,
border*2+heading+height))
err = d.ximg.CreatePixmap()
if err != nil {
return nil, err
}
painter := NewXimgPainter(d.ximg)
d.gc = draw2d.NewGraphicContextWithPainter(d.ximg, painter)
d.gc.Save()
d.gc.SetStrokeColor(color.White)
d.gc.SetFillColor(color.White)
d.gc.Clear()
d.wid = d.ximg.XShowExtra(name, true)
d.x = X
go func() {
xevent.Main(X)
}()
return d, nil
}
开发者ID:stanim,项目名称:display,代码行数:33,代码来源:display.go
示例8: main
func main() {
X, err := xgbutil.NewConn()
if err != nil {
log.Fatal(err)
}
// Load some font. You may need to change the path depending upon your
// system configuration.
fontReader, err := os.Open(fontPath)
if err != nil {
log.Fatal(err)
}
// Now parse the font.
font, err := xgraphics.ParseFont(fontReader)
if err != nil {
log.Fatal(err)
}
// Create some canvas.
ximg := xgraphics.New(X, image.Rect(0, 0, canvasWidth, canvasHeight))
ximg.For(func(x, y int) xgraphics.BGRA {
return bg
})
// Now write the text.
_, _, err = ximg.Text(10, 10, fg, size, font, msg)
if err != nil {
log.Fatal(err)
}
// Compute extents of first line of text.
_, firsth := xgraphics.Extents(font, size, msg)
// Now show the image in its own window.
win := ximg.XShowExtra("Drawing text using xgraphics", true)
// Now draw some more text below the above and demonstrate how to update
// only the region we've updated.
_, _, err = ximg.Text(10, 10+firsth, fg, size, font, "Some more text.")
if err != nil {
log.Fatal(err)
}
// Now compute extents of the second line of text, so we know which region
// to update.
secw, sech := xgraphics.Extents(font, size, "Some more text.")
// Now repaint on the region that we drew text on. Then update the screen.
bounds := image.Rect(10, 10+firsth, 10+secw, 10+firsth+sech)
ximg.SubImage(bounds).XDraw()
ximg.XPaint(win.Id)
// All we really need to do is block, which could be achieved using
// 'select{}'. Invoking the main event loop however, will emit error
// message if anything went seriously wrong above.
xevent.Main(X)
}
开发者ID:sbinet,项目名称:xgbutil,代码行数:58,代码来源:main.go
示例9: NewSolid
func NewSolid(X *xgbutil.XUtil, bgColor Color, width, height int) *Image {
img := New(xgraphics.New(X, image.Rect(0, 0, width, height)))
r, g, b := bgColor.RGB8()
img.ForExp(func(x, y int) (uint8, uint8, uint8, uint8) {
return r, g, b, 0xff
})
return img
}
开发者ID:flying99999,项目名称:wingo,代码行数:9,代码来源:render.go
示例10: NewGUI
func NewGUI(board *Board) *GUI {
gui := new(GUI)
X, _ := xgbutil.NewConn()
gui.canvas = xgraphics.New(X, image.Rect(0, 0, board.Width(), board.Height()))
gui.queue = make(map[Pos]bool, board.Width()*board.Height())
gui.win = gui.canvas.XShow()
gui.board = board
board.onUpdate = func(p Pos) { gui.Update(p) }
gui.StartLoop()
return gui
}
开发者ID:KaptajnKold,项目名称:antwar,代码行数:11,代码来源:screen.go
示例11: NewWindow
func NewWindow(width, height int) (w *Window, err error) {
w = new(Window)
w.width, w.height = width, height
w.xu, err = xgbutil.NewConn()
if err != nil {
return
}
w.conn = w.xu.Conn()
screen := w.xu.Screen()
w.win, err = xwindow.Generate(w.xu)
if err != nil {
return
}
err = w.win.CreateChecked(screen.Root, 600, 500, width, height, 0)
if err != nil {
return
}
w.win.Listen(AllEventsMask)
err = icccm.WmProtocolsSet(w.xu, w.win.Id, []string{"WM_DELETE_WINDOW"})
if err != nil {
fmt.Println(err)
err = nil
}
w.bufferLck = &sync.Mutex{}
w.buffer = xgraphics.New(w.xu, image.Rect(0, 0, width, height))
w.buffer.XSurfaceSet(w.win.Id)
keyMap, modMap := keybind.MapsGet(w.xu)
keybind.KeyMapSet(w.xu, keyMap)
keybind.ModMapSet(w.xu, modMap)
w.events = make(chan interface{})
w.SetIcon(Gordon)
w.SetIconName("Go")
go w.handleEvents()
return
}
开发者ID:nickoneill,项目名称:go.wde,代码行数:48,代码来源:xgb.go
示例12: NewBackground
// NewBackground creates an xgraphics.Image which spans the entire screen,
// initialized to black.
func NewBackground(X *xgbutil.XUtil) (*xgraphics.Image, error) {
res, err := randr.GetScreenResources(X.Conn(), X.RootWin()).Reply()
if err != nil {
return nil, err
}
var bgRect image.Rectangle
for _, output := range res.Outputs {
r, err := util.OutputRect(X, output)
// NOTE: It doesn't really matter if this returns a Zero Rectangle.
if err != nil {
return nil, err
}
bgRect = bgRect.Union(r)
}
return xgraphics.New(X, bgRect), nil
}
开发者ID:proxypoke,项目名称:chiwa,代码行数:18,代码来源:background.go
示例13: Init
func (c *Clock) Init() {
var err error
c.img = xgraphics.New(c.X, image.Rect(0, 0, c.Width, c.Height))
c.window, err = xwindow.Create(c.X, c.Parent.Id)
utils.FailMeMaybe(err)
c.window.Resize(c.Width, c.Height)
c.window.Move(c.Position, 0)
c.img.XSurfaceSet(c.window.Id)
c.window.Map()
c.Draw()
go c.tickTock()
}
开发者ID:AmandaCameron,项目名称:gobar,代码行数:16,代码来源:clock.go
示例14: main
func main() {
runtime.GOMAXPROCS(64)
X, err := xgbutil.NewConn()
if err != nil {
log.Fatal(err)
}
keybind.Initialize(X)
font := loadFont("/usr/share/fonts/truetype/freefont/FreeMono.ttf")
font.Color = xgraphics.BGRA{B: 0x00, G: 0xff, R: 0x00, A: 0xff}
font.Size = 12.0
ximage := xgraphics.New(X, image.Rect(0, 0, 300, 300))
ximage.CreatePixmap()
window, obscured := makeWindow(ximage)
battery := batteryItem(font, 10, ximage, window)
cpu := cpuItem(font, 30, ximage, window)
memory := memoryItem(font, 50, ximage, window)
before, after, quit := xevent.MainPing(X)
loop:
for {
select {
case <-before:
<-after
case <-quit:
break loop
case text := <-battery.Text:
if *obscured {
continue loop
}
battery.update(text)
case text := <-cpu.Text:
if *obscured {
continue loop
}
cpu.update(text)
case text := <-memory.Text:
if *obscured {
continue loop
}
memory.update(text)
}
}
}
开发者ID:pointlander,项目名称:csm,代码行数:47,代码来源:csm.go
示例15: Init
func (sb *StatusBar) Init() {
sb.img = xgraphics.New(sb.X, image.Rect(0, 0, sb.Width, sb.Height))
var err error
sb.window, err = xwindow.Create(sb.X, sb.Parent.Id)
utils.FailMeMaybe(err)
sb.window.Move(sb.Position, 0)
sb.window.Resize(sb.Width, sb.Height)
sb.window.Map()
sb.img.XSurfaceSet(sb.window.Id)
utils.FailMeMaybe(sb.initTray())
sb.Draw()
}
开发者ID:AmandaCameron,项目名称:gobar,代码行数:17,代码来源:statbar.go
示例16: NewBorder
func NewBorder(X *xgbutil.XUtil, borderType int, borderColor,
bgColor Color, width, height, gradientType, gradientDir int) *Image {
img := New(xgraphics.New(X, image.Rect(0, 0, width, height)))
// bgClr could be a gradient!
if bgColor.IsGradient() {
img.Gradient(gradientType, gradientDir, bgColor)
} else {
r, g, b := bgColor.RGB8()
img.ForExp(func(x, y int) (uint8, uint8, uint8, uint8) {
return r, g, b, 0xff
})
}
img.ThinBorder(borderType, borderColor)
return img
}
开发者ID:flying99999,项目名称:wingo,代码行数:18,代码来源:render.go
示例17: NewCorner
func NewCorner(X *xgbutil.XUtil, borderType int, borderColor,
bgColor Color, width, height, diagonal int) *Image {
// If bgColor isn't a gradient, then we can cheat
if !bgColor.IsGradient() {
return NewBorder(X, borderType, borderColor, bgColor,
width, height, 0, 0)
}
img := New(xgraphics.New(X, image.Rect(0, 0, width, height)))
// aliases for convenience
vert, horz := GradientVert, GradientHorz
reg, rev := GradientRegular, GradientReverse
// for Top Left to Bottom Right diagonals
belowTLDiag := func(x, y int) bool { return y > x }
aboveTLDiag := func(x, y int) bool { return y <= x }
// for Bottom Left to Top Right diagonals
belowBLDiag := func(x, y int) bool { return y > (width - x) }
aboveBLDiag := func(x, y int) bool { return y <= (width - x) }
switch diagonal {
case DiagBottomLeft:
img.GradientFunc(horz, reg, bgColor, aboveBLDiag)
img.GradientFunc(vert, rev, bgColor, belowBLDiag)
case DiagTopRight:
img.GradientFunc(vert, reg, bgColor, aboveBLDiag)
img.GradientFunc(horz, rev, bgColor, belowBLDiag)
case DiagBottomRight:
img.GradientFunc(horz, rev, bgColor, aboveTLDiag)
img.GradientFunc(vert, rev, bgColor, belowTLDiag)
default: // DiagTopLeft:
img.GradientFunc(vert, reg, bgColor, aboveTLDiag)
img.GradientFunc(horz, reg, bgColor, belowTLDiag)
}
img.ThinBorder(borderType, borderColor)
return img
}
开发者ID:flying99999,项目名称:wingo,代码行数:41,代码来源:render.go
示例18: NewImage
// NewImage returns a new image canvas
// that draws to the given image. The
// minimum point of the given image
// should probably be 0,0.
func NewImage(img draw.Image, name string) (*XImgCanvas, error) {
w := float64(img.Bounds().Max.X - img.Bounds().Min.X)
h := float64(img.Bounds().Max.Y - img.Bounds().Min.Y)
X, err := xgbutil.NewConn()
if err != nil {
return nil, err
}
keybind.Initialize(X)
ximg := xgraphics.New(X, image.Rect(0, 0, int(w), int(h)))
err = ximg.CreatePixmap()
if err != nil {
return nil, err
}
painter := NewXimgPainter(ximg)
gc := draw2d.NewGraphicContextWithPainter(ximg, painter)
gc.SetDPI(dpi)
gc.Scale(1, -1)
gc.Translate(0, -h)
wid := ximg.XShowExtra(name, true)
go func() {
xevent.Main(X)
}()
c := &XImgCanvas{
gc: gc,
w: vg.Inches(w / dpi),
h: vg.Inches(h / dpi),
color: []color.Color{color.Black},
x: X,
ximg: ximg,
wid: wid,
}
vg.Initialize(c)
return c, nil
}
开发者ID:stanim,项目名称:vgximg,代码行数:41,代码来源:vgximg.go
示例19: paintGradient
// paintGradient creates a new xgraphics.Image value and draws a gradient
// starting at color 'start' and ending at color 'end'.
//
// Since xgraphics.Image values use pixmaps and pixmaps cannot be resized,
// a new pixmap must be allocated for each resize event.
func paintGradient(X *xgbutil.XUtil, wid xproto.Window, width, height int,
start, end color.RGBA) {
ximg := xgraphics.New(X, image.Rect(0, 0, width, height))
// Now calculate the increment step between each RGB channel in
// the start and end colors.
rinc := (0xff * (int(end.R) - int(start.R))) / width
ginc := (0xff * (int(end.G) - int(start.G))) / width
binc := (0xff * (int(end.B) - int(start.B))) / width
// Now apply the increment to each "column" in the image.
// Using 'ForExp' allows us to bypass the creation of a color.BGRA value
// for each pixel in the image.
ximg.ForExp(func(x, y int) (uint8, uint8, uint8, uint8) {
return uint8(int(start.B) + (binc*x)/0xff),
uint8(int(start.G) + (ginc*x)/0xff),
uint8(int(start.R) + (rinc*x)/0xff),
0xff
})
// Set the surface to paint on for ximg.
// (This simply sets the background pixmap of the window to the pixmap
// used by ximg.)
ximg.XSurfaceSet(wid)
// XDraw will draw the contents of ximg to its corresponding pixmap.
ximg.XDraw()
// XPaint will "clear" the window provided so that it shows the updated
// pixmap.
ximg.XPaint(wid)
// Since we will not reuse ximg, we must destroy its pixmap.
ximg.Destroy()
}
开发者ID:auroralaboratories,项目名称:corona-api,代码行数:41,代码来源:main.go
示例20: Init
func (t *Tracker) Init() {
var err error
t.img = xgraphics.New(t.X, image.Rect(0, 0, t.Size, t.Size))
t.window, err = xwindow.Create(t.X, t.Parent.Id)
utils.FailMeMaybe(err)
t.window.Resize(t.Size, t.Size)
t.window.Move(t.Position, 0)
t.img.XSurfaceSet(t.window.Id)
t.window.Map()
t.stopMe = true
l := startup.Listener{
X: t.X,
Callbacks: t,
}
l.Initialize()
t.Draw()
}
开发者ID:AmandaCameron,项目名称:gobar,代码行数:24,代码来源:tracker.go
注:本文中的github.com/BurntSushi/xgbutil/xgraphics.New函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论