Added SetPos to pixelgl.Window

This commit is contained in:
Sander Schobers 2017-10-27 20:28:28 +02:00
parent 78a2373870
commit 48e37828c8
1 changed files with 11 additions and 0 deletions

View File

@ -233,6 +233,17 @@ func (w *Window) SetBounds(bounds pixel.Rect) {
})
}
// SetPos sets the position, in screen coordinates, of the upper-left corner
// of the client area of the window. Position can be fractional, but the actual position
// of the window will be rounded to integers.
//
// If it is a full screen window, this function does nothing.
func (w *Window) SetPos(pos pixel.Vec) {
mainthread.Call(func() {
left, top := int(pos.X), int(pos.Y)
w.window.SetPos(left, top)
})
}
// Bounds returns the current bounds of the Window.
func (w *Window) Bounds() pixel.Rect {
return w.bounds