-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathwindow_controls.py
More file actions
127 lines (99 loc) · 3.24 KB
/
window_controls.py
File metadata and controls
127 lines (99 loc) · 3.24 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
from mewnala import *
TITLES = ["window controls", "🪟 hello", "still alive"]
POSITIONS = [(100, 100), (300, 200), (50, 50)]
SIZES = [(640, 480), (800, 600), (320, 240)]
OPACITIES = [1.0, 0.85, 0.5]
state = {
"title": 0,
"position": 0,
"size": 0,
"opacity": 0,
"resizable": True,
"decorated": True,
"on_top": False,
"fullscreen": False,
"show_at": -1,
}
def setup():
size(640, 480)
window_title(TITLES[0])
def log(label):
print(f"[frame {frame_count}] {label}")
def cycle(key, label):
state[key] = (state[key] + 1) % len(label)
return state[key]
def draw():
if 0 <= state["show_at"] <= frame_count:
window_visible(True)
state["show_at"] = -1
log("re-shown")
if key_just_pressed(KEY_T):
idx = cycle("title", TITLES)
window_title(TITLES[idx])
log(f"title -> {TITLES[idx]!r}")
if key_just_pressed(KEY_M):
idx = cycle("position", POSITIONS)
x, y = POSITIONS[idx]
window_move(x, y)
log(f"moved to ({x}, {y})")
if key_just_pressed(KEY_W):
idx = cycle("size", SIZES)
w, h = SIZES[idx]
window_resize(w, h)
log(f"resized to {w}x{h}")
if key_just_pressed(KEY_O):
idx = cycle("opacity", OPACITIES)
window_opacity(OPACITIES[idx])
log(f"opacity -> {OPACITIES[idx]}")
if key_just_pressed(KEY_R):
state["resizable"] = not state["resizable"]
window_resizable(state["resizable"])
log(f"resizable -> {state['resizable']}")
if key_just_pressed(KEY_D):
state["decorated"] = not state["decorated"]
window_decorated(state["decorated"])
log(f"decorated -> {state['decorated']}")
if key_just_pressed(KEY_A):
state["on_top"] = not state["on_top"]
window_always_on_top(state["on_top"])
log(f"always-on-top -> {state['on_top']}")
if key_just_pressed(KEY_V):
window_visible(False)
state["show_at"] = frame_count + 60
log("hidden for ~1s")
if key_just_pressed(KEY_I):
window_iconify()
log("iconified")
if key_just_pressed(KEY_X):
window_maximize()
log("maximized")
if key_just_pressed(KEY_N):
window_restore()
log("restored")
if key_just_pressed(KEY_F):
state["fullscreen"] = not state["fullscreen"]
full_screen(primary_monitor() if state["fullscreen"] else None)
log(f"fullscreen -> {state['fullscreen']}")
if key_just_pressed(KEY_C):
if (m := primary_monitor()) is not None:
window_center_on(m)
log(f"centered on {m.name!r}")
if key_just_pressed(KEY_P):
if (m := primary_monitor()) is not None:
window_position_on(m, 10, 10)
log(f"workarea +(10, 10) — workarea={m.workarea}")
background(24)
no_stroke()
fill(80, 200, 200)
rect(20, 20, width - 40, 40)
fill(200, 80, 120)
rect(20, 80, width - 40, 60)
fill(120, 80, 200)
rect(20, 160, width - 40, 60)
fill(80, 200, 120)
rect(20, 240, width - 40, 60)
# Yellow dot tracks window_x / window_y wrapped into the canvas.
fill(255, 220, 60)
if width > 0 and height > 0:
circle(window_x % width, window_y % height, 12)
run()