forked from google/gxui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwindow.go
47 lines (38 loc) · 1.26 KB
/
window.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
43
44
45
46
47
// 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
type Window interface {
Container
Viewport() Viewport
Title() string
SetTitle(string)
// Scale returns the display scaling for this window.
// A scale of 1 is unscaled, 2 is twice the regular scaling.
Scale() float32
// SetScale alters the display scaling for this window.
// A scale of 1 is unscaled, 2 is twice the regular scaling.
SetScale(float32)
Show()
Hide()
Close()
Focus() Focusable
SetFocus(Control) bool
Click(MouseEvent)
DoubleClick(MouseEvent)
KeyPress(KeyboardEvent)
KeyStroke(KeyStrokeEvent)
// Events
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
}