-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGamewindowSplitView.qml
More file actions
429 lines (370 loc) · 13 KB
/
GamewindowSplitView.qml
File metadata and controls
429 lines (370 loc) · 13 KB
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import qmlcomponents
Item {
id: splitView
signal layoutChanged()
default property alias content: childrenPlaceholder.children
property int upperPaneMinimumHeight: 0
property int lowerPaneMinimumHeight: 0
property int upperPaneUserSetHeight: upperPane.height
property int lowerPaneUserSetHeight: lowerPane.height
property int scaleInPercent: 100
property var resizingBehaviour: TibiaEnums.PreferMapWindow
property var upperPaneResizeCallback: null
readonly property int splitterHeight: 7
readonly property bool hoveringOverSplitter: splitter.hovering
property bool isResizing: false
property int splitterMouseXPosition: 0
Item {
id: childrenPlaceholder
Component.onCompleted: () => {
if (children.length == 2) {
let currentChildren = [children[0], children[1]];
currentChildren[0].parent = upperPane;
currentChildren[0].anchors.fill = upperPane;
currentChildren[1].parent = lowerPane;
currentChildren[1].anchors.fill = lowerPane;
} else {
console.log("GamewindowSplitView only works with exactly two children");
}
}
}
function clamp(value, min, max) {
return Math.min(Math.max(value, min), max);
}
function onParentResize() {
const MINIMUM_SPLIT_VIEW_COLUMN_HEIGHT = lowerPane.minimumHeight + splitView.splitterHeight + upperPane.minimumHeight;
const NEW_SPLIT_VIEW_COLUMN_HEIGHT = Math.max(splitView.height, MINIMUM_SPLIT_VIEW_COLUMN_HEIGHT);
splitViewColumn.height = NEW_SPLIT_VIEW_COLUMN_HEIGHT;
correctLayout();
}
function requestUpperPaneHeight(requestedHeight) {
let newUpperPaneHeight = requestedHeight;
if (splitView.upperPaneResizeCallback) {
newUpperPaneHeight = splitView.upperPaneResizeCallback(requestedHeight);
newUpperPaneHeight = splitView.upperPaneResizeCallback(splitView.clamp(newUpperPaneHeight, upperPane.minimumHeight, splitViewColumn.height - (splitView.splitterHeight + lowerPane.minimumHeight) ));
}
return newUpperPaneHeight;
}
function sliderPositionChanged(heightDifference, startUpperPaneHeight, startLowerPaneHeight) {
upperPaneUserSetHeight = requestUpperPaneHeight(startUpperPaneHeight - heightDifference);
lowerPaneUserSetHeight = startLowerPaneHeight + heightDifference;
splitView.correctLayout();
splitView.layoutChanged();
}
function correctLayout() {
const NEW_SPLIT_VIEW_COLUMN_AVAILABLE_HEIGHT = splitViewColumn.height - splitter.height;
switch (splitView.resizingBehaviour) {
case TibiaEnums.PreferBoth: {
const RATIO = upperPaneUserSetHeight / (upperPaneUserSetHeight + lowerPaneUserSetHeight);
upperPane.requestedHeight = requestUpperPaneHeight(parseInt(NEW_SPLIT_VIEW_COLUMN_AVAILABLE_HEIGHT * RATIO));
break;
}
case TibiaEnums.PreferMapWindow: {
upperPane.requestedHeight = requestUpperPaneHeight(NEW_SPLIT_VIEW_COLUMN_AVAILABLE_HEIGHT - lowerPaneUserSetHeight);
break;
}
case TibiaEnums.PreferChat: {
upperPane.requestedHeight = requestUpperPaneHeight(upperPaneUserSetHeight);
break;
}
default: {
// in case its set to an invalid enum value
splitView.resizingBehaviour = TibiaEnums.PreferChat
break;
}
}
lowerPane.requestedHeight = NEW_SPLIT_VIEW_COLUMN_AVAILABLE_HEIGHT - upperPane.requestedHeight;
upperPane.confirmRequestedHeight();
lowerPane.confirmRequestedHeight();
}
onResizingBehaviourChanged: {
upperPaneUserSetHeight = upperPane.height;
lowerPaneUserSetHeight = lowerPane.height;
correctLayout();
splitView.layoutChanged();
}
onWidthChanged: {
onParentResize();
}
onHeightChanged: {
onParentResize();
}
ColumnLayout {
id: splitViewColumn
spacing: 0
anchors.left: parent.left
anchors.right: parent.right
height: 200
Item {
id: upperPane
property int requestedHeight: 0
property int minimumHeight: upperPaneMinimumHeight
function confirmRequestedHeight() {
Layout.preferredHeight = requestedHeight;
}
Layout.fillWidth: true
}
BorderImage {
id: splitter
property bool hovering: false
Layout.preferredHeight: splitView.splitterHeight
Layout.fillWidth: true
source: "/images/divider-horizontal.png"
horizontalTileMode: BorderImage.Repeat
smooth: false
MouseArea {
property real startY: 0
property int startUpperPaneHeight: 0
property int startLowerPaneHeight: 0
anchors.fill: parent
hoverEnabled: true
acceptedButtons: Qt.LeftButton
onPressed: (mouseEvent) => {
if (mouseEvent.button == Qt.LeftButton) {
startY = mapToGlobal(mouseEvent.x, mouseEvent.y).y;
startUpperPaneHeight = upperPane.height;
startLowerPaneHeight = lowerPane.height;
isResizing = true;
}
}
onPositionChanged: (mouseEvent) => {
if (isResizing) {
let heightDifference = startY - mapToGlobal(mouseEvent.x, mouseEvent.y).y;
splitView.sliderPositionChanged(heightDifference, startUpperPaneHeight, startLowerPaneHeight);
}
splitterMouseXPosition = mouseEvent.x;
}
onEntered: {
if(tibiaMouseCursorController != null) {
splitter.hovering = true;
tibiaMouseCursorController.setResizeVertical(true);
}
}
onExited: {
if(tibiaMouseCursorController != null && !pressed) {
splitter.hovering = false;
tibiaMouseCursorController.setResizeVertical(false);
}
}
onReleased: {
if (isResizing) {
isResizing = false;
isResizing = false;
}
if (!containsMouse) {
splitter.hovering = false;
if(tibiaMouseCursorController != null) {
tibiaMouseCursorController.setResizeVertical(false);
}
}
}
}
}
Item {
id: lowerPane
property int requestedHeight: 0
property int minimumHeight: lowerPaneMinimumHeight
function confirmRequestedHeight() {
Layout.preferredHeight = requestedHeight;
}
Layout.fillWidth: true
}
}
Loader {
id: resizeModeButtonLoader
readonly property bool hoveringOverResizeModeButton: item != null ? item.hoveringOverButtons : false
readonly property alias hoveringOverSplitter: splitView.hoveringOverSplitter
readonly property alias isResizing: splitView.isResizing
Timer {
id: shouldHideTimer
interval: 500
onTriggered: {
resizeModeButtonLoader.checkIfResizeModeButtonShouldHide();
}
}
function checkIfResizeModeButtonShouldBeShown() {
if (item == null) {
let newShouldBeShown = isResizing || hoveringOverResizeModeButton;
if (newShouldBeShown) {
sourceComponent = resizeModeButtonComponent
}
}
}
function checkIfResizeModeButtonShouldHide() {
if (item != null) {
let newShouldBeShown = isResizing || hoveringOverResizeModeButton || hoveringOverSplitter;
if (newShouldBeShown == false) {
sourceComponent = undefined;
}
}
}
onHoveringOverResizeModeButtonChanged: {
shouldHideTimer.start();
}
onHoveringOverSplitterChanged: {
shouldHideTimer.start();
}
onIsResizingChanged: {
resizeModeButtonLoader.checkIfResizeModeButtonShouldBeShown();
}
y: {
let newSplitterY = 0;
if (item) {
newSplitterY = splitter.y - item.zoomFactorWrapperHeight;
}
return newSplitterY;
}
x: {
let itemWidth = item != null ? item.width : 0
return Math.min(splitView.width - itemWidth, Math.max(0, splitterMouseXPosition - itemWidth / 2));
}
}
Component {
id: resizeModeButtonComponent
Item {
id: resizeModeButtonWrapper
property bool hoveringOverButtons: false
readonly property alias zoomFactorWrapperHeight: zoomFactorWrapper.height
width: resizeModeButtonColumnLayout.width
height: resizeModeButtonColumnLayout.height
Component.onCompleted: onResizingBehaviourChanged()
function applyNewResizingBehaviour(newResizingBehaviour) {
if (newResizingBehaviour != splitView.resizingBehaviour) {
splitView.resizingBehaviour = newResizingBehaviour;
}
}
function onResizingBehaviourChanged() {
switch (splitView.resizingBehaviour) {
case TibiaEnums.PreferBoth: {
resizeModeButton.resizeButtonIconUrl = "/images/icon-resize-mapwindow-and-chat.png"
break;
}
case TibiaEnums.PreferMapWindow: {
resizeModeButton.resizeButtonIconUrl = "/images/icon-resize-mapwindow.png"
break;
}
case TibiaEnums.PreferChat: {
resizeModeButton.resizeButtonIconUrl = "/images/icon-resize-chat.png"
break;
}
}
}
Connections {
target: splitView
function onResizingBehaviourChanged() {
resizeModeButtonWrapper.onResizingBehaviourChanged();
}
}
ColumnLayout {
id: resizeModeButtonColumnLayout
spacing: 0
Item {
id: zoomFactorWrapper
Layout.preferredWidth: 60
Layout.preferredHeight: 22
BorderImage {
visible: true
anchors.fill: parent
border { left: 1; top: 1; right: 1; bottom: 0 }
source: "/images/1pixel-up-frame.png"
smooth: false
horizontalTileMode: BorderImage.Repeat
verticalTileMode: BorderImage.Repeat
TibiaTiledImage {
anchors.fill: parent
anchors.margins: 1
anchors.bottomMargin: -1
source: "/images/background.png"
} //BorderImage
} //BorderImage
TibiaText {
text: splitView.scaleInPercent + "%"
anchors.top: parent.top
anchors.topMargin: 4
anchors.horizontalCenter: parent.horizontalCenter
}
MouseArea {
anchors.fill: parent
acceptedButtons: Qt.NoButton
hoverEnabled: true
onEntered: {
resizeModeButtonWrapper.hoveringOverButtons = true;
}
onExited: {
resizeModeButtonWrapper.hoveringOverButtons = false;
}
}
}
Item {
Layout.preferredHeight: splitter.height
}
Item {
property int borderWidth: 4
Layout.preferredWidth: resizeModeButton.width + borderWidth * 2
Layout.preferredHeight: resizeModeButton.height + borderWidth * 2
Layout.alignment: Qt.AlignHCenter
BorderImage {
visible: true
anchors.fill: parent
anchors.topMargin: -1
border { left: 1; top: 1; right: 1; bottom: 1 }
source: "/images/1pixel-up-frame.png"
smooth: false
horizontalTileMode: BorderImage.Repeat
verticalTileMode: BorderImage.Repeat
TibiaTiledImage {
anchors.fill: parent
anchors.margins: 1
anchors.topMargin: -1
source: "/images/background.png"
} //BorderImage
} //BorderImage
TibiaButton {
id: resizeModeButton
property string resizeButtonIconUrl: ""
property var newResizeMode: TibiaEnums.PreferBoth
implicitWidth: 23
implicitHeight: 23
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
//anchors.verticalCenterOffset: -borderWidth
imageSourceUp: resizeButtonIconUrl
imageSourceDown: resizeButtonIconUrl
onClicked: {
let newResizingBehaviour = splitView.resizingBehaviour;
switch (splitView.resizingBehaviour) {
case TibiaEnums.PreferBoth: {
newResizingBehaviour = TibiaEnums.PreferMapWindow;
break;
}
case TibiaEnums.PreferMapWindow: {
newResizingBehaviour = TibiaEnums.PreferChat;
break;
}
case TibiaEnums.PreferChat: {
newResizingBehaviour = TibiaEnums.PreferBoth;
break;
}
}
resizeModeButtonWrapper.applyNewResizingBehaviour(newResizingBehaviour);
}
} //TibiaButton
MouseArea {
anchors.fill: parent
acceptedButtons: Qt.NoButton
hoverEnabled: true
onEntered: {
resizeModeButtonWrapper.hoveringOverButtons = true;
}
onExited: {
resizeModeButtonWrapper.hoveringOverButtons = false;
}
}
}
}
}
}
}