forked from google/gxui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
window.go
71 lines (55 loc) · 2.05 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// 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)
// Fullscreen returns true if the window is currently full-screen.
Fullscreen() bool
// SetFullscreen makes the window either full-screen or windowed.
SetFullscreen(bool)
Show()
Hide()
Close()
// Focus returns the child Focusable control.
Focus() Focusable
// SetFocus gives the specified control Focus, returning true on success or
// false if the control cannot be given focus.
SetFocus(Control) bool
// BackgroundBrush returns the brush used to draw the window background.
BackgroundBrush() Brush
// SetBackgroundBrush sets the brush used to draw the window background.
SetBackgroundBrush(Brush)
// BorderPen returns the pen used to draw the window border.
BorderPen() Pen
// SetBorderPen sets the pen used to draw the window border.
SetBorderPen(Pen)
Click(MouseEvent)
DoubleClick(MouseEvent)
KeyPress(KeyboardEvent)
KeyStroke(KeyStrokeEvent)
// Events
OnClose(func()) EventSubscription
OnResize(func()) EventSubscription
OnClick(func(MouseEvent)) EventSubscription
OnDoubleClick(func(MouseEvent)) 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
}