-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwindow_operations.py
68 lines (61 loc) · 2.21 KB
/
window_operations.py
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
from quasargui import Model, QLayout, QHeader, QPage, QToolbar, QSpace, QButton, QInput, Rows, TrueFalse, toggle
from quasargui.main import run
title_model = Model('Your title goes here')
title_model.add_callback(
lambda: title_model.api.set_window_title(title_model.value),
immediate=True
)
is_fullscreen = Model(False)
width = Model(400)
width.add_callback(
lambda: width.api.resize_window((width.value, None)) if 300 <= width.value <= 1000 else None,
immediate=True
)
height = Model(500)
height.add_callback(
lambda: height.api.resize_window((None, height.value)) if 300 <= height.value <= 1000 else None,
immediate=True
)
def toggle_fullscreen():
layout.api.toggle_fullscreen()
is_fullscreen.value = not is_fullscreen.value
layout = QLayout([
QHeader([QToolbar([
QSpace(),
QButton(icon='minimize',
props={'stretch': True},
events={'click': lambda: layout.api.minimize_window()}),
QButton(icon=TrueFalse('fullscreen_exit', 'fullscreen', is_fullscreen),
props={'stretch': True},
events={'click': toggle_fullscreen}),
QButton(icon='close',
props={'stretch': True},
events={'click': lambda: layout.api.close_window()}),
])]),
QPage([
Rows([
QInput('Window title', title_model),
QInput('Resize window width', width, type='number'),
QInput('Resize window height', height, type='number'),
QButton(
'Show file dialog',
events={
'click': lambda: layout.notify('You chose: {}'.format(
layout.api.show_open_dialog()))
}),
QButton(
'Show folder dialog',
events={
'click': lambda: layout.notify('You chose: {}'.format(
layout.api.show_folder_dialog()))
}),
QButton(
'Show save dialog',
events={
'click': lambda: layout.notify('You chose: {}'.format(
layout.api.show_save_dialog()))
}),
])
])
])
run(layout, size=(400, 500))