forked from google/gxui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
viewport.go
36 lines (32 loc) · 1007 Bytes
/
viewport.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
// 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 (
"github.com/google/gxui/math"
)
type Viewport interface {
SizeDips() math.Size
SizePixels() math.Size
Title() string
SetTitle(string)
Show()
Hide()
Close()
SetCanvas(Canvas)
OnClose(func()) EventSubscription
OnResize(func()) EventSubscription
OnMouseMove(func(MouseEvent)) EventSubscription
OnMouseEnter(func(MouseEvent)) EventSubscription
OnMouseExit(func(MouseEvent)) EventSubscription
OnMouseDown(func(MouseEvent)) EventSubscription
OnMouseUp(func(MouseEvent)) EventSubscription
OnMouseScroll(func(MouseEvent)) EventSubscription
OnKeyDown(func(KeyboardEvent)) EventSubscription
OnKeyUp(func(KeyboardEvent)) EventSubscription
OnKeyRepeat(func(KeyboardEvent)) EventSubscription
OnKeyStroke(func(KeyStrokeEvent)) EventSubscription
SetContinuousRedraw(bool)
ContinuousRedraw() bool
Stats() string
}