-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathwindow.go
224 lines (178 loc) · 4.14 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
package mobile
import (
"fyne.io/fyne/v2"
"fyne.io/fyne/v2/container"
"fyne.io/fyne/v2/internal/cache"
"fyne.io/fyne/v2/internal/driver/common"
"fyne.io/fyne/v2/layout"
"fyne.io/fyne/v2/theme"
"fyne.io/fyne/v2/widget"
)
type window struct {
common.Window
title string
visible bool
onClosed func()
onCloseIntercepted func()
isChild bool
clipboard fyne.Clipboard
canvas *canvas
icon fyne.Resource
menu *fyne.MainMenu
handle uintptr // the window handle - currently just Android
}
func (w *window) Title() string {
return w.title
}
func (w *window) SetTitle(title string) {
w.title = title
}
func (w *window) FullScreen() bool {
return true
}
func (w *window) SetFullScreen(bool) {
// no-op
}
func (w *window) Resize(size fyne.Size) {
w.Canvas().(*canvas).Resize(size)
}
func (w *window) RequestFocus() {
// no-op - we cannot change which window is focused
}
func (w *window) FixedSize() bool {
return true
}
func (w *window) SetFixedSize(bool) {
// no-op - all windows are fixed size
}
func (w *window) CenterOnScreen() {
// no-op
}
func (w *window) Padded() bool {
return w.canvas.padded
}
func (w *window) SetPadded(padded bool) {
w.canvas.padded = padded
}
func (w *window) Icon() fyne.Resource {
if w.icon == nil {
return fyne.CurrentApp().Icon()
}
return w.icon
}
func (w *window) SetIcon(icon fyne.Resource) {
w.icon = icon
}
func (w *window) SetMaster() {
// no-op on mobile
}
func (w *window) MainMenu() *fyne.MainMenu {
return w.menu
}
func (w *window) SetMainMenu(menu *fyne.MainMenu) {
w.menu = menu
}
func (w *window) SetOnClosed(callback func()) {
w.onClosed = callback
}
func (w *window) SetCloseIntercept(callback func()) {
w.onCloseIntercepted = callback
}
func (w *window) SetOnDropped(dropped func(fyne.Position, []fyne.URI)) {
// not implemented yet
}
func (w *window) Show() {
menu := fyne.CurrentApp().Driver().(*driver).findMenu(w)
menuButton := w.newMenuButton(menu)
if menu == nil {
menuButton.Hide()
}
if w.isChild {
exit := widget.NewButtonWithIcon("", theme.CancelIcon(), func() {
w.tryClose()
})
title := widget.NewLabel(w.title)
title.Alignment = fyne.TextAlignCenter
w.canvas.setWindowHead(container.NewHBox(menuButton,
layout.NewSpacer(), title, layout.NewSpacer(), exit))
w.canvas.Resize(w.canvas.size)
} else {
w.canvas.setWindowHead(container.NewHBox(menuButton))
}
w.visible = true
if w.Content() != nil {
w.Content().Refresh()
w.Content().Show()
}
}
func (w *window) Hide() {
w.visible = false
if w.Content() != nil {
w.Content().Hide()
}
}
func (w *window) tryClose() {
if w.onCloseIntercepted != nil {
w.QueueEvent(w.onCloseIntercepted)
return
}
w.Close()
}
func (w *window) Close() {
d := fyne.CurrentApp().Driver().(*driver)
pos := -1
for i, win := range d.windows {
if win == w {
pos = i
}
}
if pos != -1 {
d.windows = append(d.windows[:pos], d.windows[pos+1:]...)
}
cache.RangeTexturesFor(w.canvas, w.canvas.Painter().Free)
w.canvas.WalkTrees(nil, func(node *common.RenderCacheNode, _ fyne.Position) {
if wid, ok := node.Obj().(fyne.Widget); ok {
cache.DestroyRenderer(wid)
}
})
w.QueueEvent(func() {
cache.CleanCanvas(w.canvas)
})
// Call this in a go routine, because this function could be called
// inside a button which callback would be queued in this event queue
// and it will lead to a deadlock if this is performed in the same go
// routine.
go w.DestroyEventQueue()
if w.onClosed != nil {
w.onClosed()
}
}
func (w *window) ShowAndRun() {
w.Show()
fyne.CurrentApp().Run()
}
func (w *window) Content() fyne.CanvasObject {
return w.canvas.Content()
}
func (w *window) SetContent(content fyne.CanvasObject) {
w.canvas.SetContent(content)
}
func (w *window) Canvas() fyne.Canvas {
return w.canvas
}
func (w *window) Clipboard() fyne.Clipboard {
if w.clipboard == nil {
w.clipboard = &mobileClipboard{}
}
return w.clipboard
}
func (w *window) RunWithContext(f func()) {
// ctx, _ = e.DrawContext.(gl.Context)
f()
}
func (w *window) RescaleContext() {
// TODO
}
func (w *window) Context() any {
return fyne.CurrentApp().Driver().(*driver).glctx
}