forked from google/gxui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
driver.go
42 lines (32 loc) · 1.39 KB
/
driver.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Copyright 2015 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package gxui
import (
"image"
"github.com/google/gxui/math"
)
type Driver interface {
// Call queues f to be run on the UI go-routine, returning before f may have
// been called. Call returns false if the driver has been terminated, in which
// case f may not be called.
Call(f func()) bool
// CallSync queues and then blocks for f to be run on the UI go-routine.
// Call returns false if the driver has been terminated, in which case f may
// not be called.
CallSync(f func()) bool
Terminate()
SetClipboard(str string)
GetClipboard() (string, error)
// CreateFont loads a font from the provided TrueType bytes.
CreateFont(data []byte, size int) (Font, error)
// CreateWindowedViewport creates a new windowed Viewport with the specified
// width and height in device independent pixels.
CreateWindowedViewport(width, height int, name string) Viewport
// CreateFullscreenViewport creates a new fullscreen Viewport with the
// specified width and height in device independent pixels. If width or
// height is 0, then the viewport adopts the current screen resolution.
CreateFullscreenViewport(width, height int, name string) Viewport
CreateCanvas(math.Size) Canvas
CreateTexture(img image.Image, pixelsPerDip float32) Texture
}