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
---@meta
---@alias CursorIcon
--- |"default"
--- |"context_menu"
--- |"help"
--- |"pointer"
--- |"progress"
--- |"wait"
--- |"cell"
--- |"crosshair"
--- |"text"
--- |"vertical_text"
--- |"alias"
--- |"copy"
--- |"move"
--- |"no_drop"
--- |"not_allowed"
--- |"grab"
--- |"grabbing"
--- |"resize_e"
--- |"resize_se"
--- |"resize_s"
--- |"resize_sw"
--- |"resize_w"
--- |"resize_nw"
--- |"resize_n"
--- |"resize_ne"
--- |"resize_x"
--- |"resize_y"
--- |"resize_all"
--- |"resize_col"
--- |"resize_row"
--- |"all_scroll"
--- |"zoom_in"
--- |"zoom_out"
---@class Window
local Window =
---Text displayed in the window title bar.
---@return string
---@nodiscard
---Set the text displayed in the window title bar.
---@param title string
---The window's scale factor.
---@return number
---@nodiscard
---Monitor the window is on.
---@return Monitor?
---@nodiscard
---Centers the window on the chosen monitor.
---@param monitor Monitor
---The current fullscreen mode.
---@return ("borderless"|"exclusive")?
---@nodiscard
---Set to windowed mode.
---@param monitor Monitor?
---Set to borderless fullscreen mode.
---@param monitor Monitor?
---Set to exclusive fullscreen mode.
---@param mode VideoMode
---Returns `true` if the window currently has focus.
---@return boolean
---@nodiscard
---Position of the window.
---@return Vec2?
---@nodiscard
---X position of the window.
---@return integer?
---@nodiscard
---Y position of the window.
---@return integer?
---@nodiscard
---Outer position of the window.
---@return Vec2?
---@nodiscard
---Outer x position of the window.
---@return integer?
---@nodiscard
---Outer y position of the window.
---@return integer?
---@nodiscard
---Set the window's outer position.
---@param x integer
---@param y integer
---Size of the window.
---@return Vec2
---@nodiscard
---Width of the window.
---@return integer
---@nodiscard
---Height of the window.
---@return integer
---@nodiscard
---Outer size of the window.
---@return Vec2
---@nodiscard
---Outer width of the window.
---@return integer
---@nodiscard
---Outer height of the window.
---@return integer
---@nodiscard
---Request a new dpi-independent size for the window.
---@param w integer
---@param h integer
---Returns `true` if the window is resizable.
---@return boolean
---@nodiscard
---Set whether the window is resizable or not.
---@param resizable boolean
---Returns `true` if the window is maximized.
---@return boolean
---@nodiscard
---Set whether the window is maximized or not.
---@param maximized boolean
---Returns `true` if the window is minimized.
---@return boolean
---@nodiscard
---Set whether the window is minimized or not.
---@param minimized boolean
---Set the window's cursor icon.
---@param cursor CursorIcon
return Window