Skip to content

Commit 75d7587

Browse files
author
uc
committed
initial commit
1 parent f4cdc0f commit 75d7587

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+7665
-0
lines changed

Ctrlr/Mocks/AlertWindow.lua

Lines changed: 375 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,375 @@
1+
---@class AlertWindow
2+
local AlertWindow = {}
3+
---AlertWindow
4+
---@param o? any
5+
---@return AlertWindow
6+
function AlertWindow:new(o)
7+
o = o or {}
8+
setmetatable({},self)
9+
self.__index = self
10+
self.what = what(AlertWindow)
11+
return self
12+
end
13+
14+
function AlertWindow:__init()
15+
end
16+
function AlertWindow:copyAllExplicitColoursTo()
17+
end
18+
function AlertWindow:focusGained()
19+
end
20+
function AlertWindow:setRepaintsOnMouseActivity()
21+
end
22+
function AlertWindow:setMouseCursor()
23+
end
24+
function AlertWindow:triggerButtonClick()
25+
end
26+
function AlertWindow:addTextBlock()
27+
end
28+
function AlertWindow:isVisible()
29+
end
30+
function AlertWindow:setExplicitFocusOrder()
31+
end
32+
function AlertWindow:getAlpha()
33+
end
34+
function AlertWindow:setCentreRelative()
35+
end
36+
function AlertWindow:removeChildComponent()
37+
end
38+
function AlertWindow:getComponentAt()
39+
end
40+
function AlertWindow:mouseUp()
41+
end
42+
function AlertWindow:canModalEventBeSentToComponent()
43+
end
44+
function AlertWindow:minimisationStateChanged()
45+
end
46+
function AlertWindow:setComponentID()
47+
end
48+
function AlertWindow:containsAnyExtraComponents()
49+
end
50+
function AlertWindow:setFocusContainer()
51+
end
52+
function AlertWindow:setAlpha()
53+
end
54+
function AlertWindow:getComponentID()
55+
end
56+
function AlertWindow:isBroughtToFrontOnMouseClick()
57+
end
58+
function AlertWindow:paint()
59+
end
60+
function AlertWindow:lookAndFeelChanged()
61+
end
62+
function AlertWindow:visibilityChanged()
63+
end
64+
function AlertWindow:findChildWithID()
65+
end
66+
function AlertWindow:getScreenBounds()
67+
end
68+
function AlertWindow:focusOfChildComponentChanged()
69+
end
70+
function AlertWindow:enablementChanged()
71+
end
72+
function AlertWindow:getParentComponent()
73+
end
74+
function AlertWindow:getX()
75+
end
76+
function AlertWindow:setColour()
77+
end
78+
function AlertWindow:getMouseXYRelative()
79+
end
80+
function AlertWindow:getInterceptsMouseClicks()
81+
end
82+
function AlertWindow:getParentMonitorArea()
83+
end
84+
function AlertWindow:getWantsKeyboardFocus()
85+
end
86+
function AlertWindow:setSize()
87+
end
88+
function AlertWindow:hitTest()
89+
end
90+
function AlertWindow:addComboBox()
91+
end
92+
function AlertWindow:getComboBoxComponent()
93+
end
94+
function AlertWindow:getScreenY()
95+
end
96+
function AlertWindow:childrenChanged()
97+
end
98+
function AlertWindow:setTopLeftPosition()
99+
end
100+
function AlertWindow:keyStateChanged()
101+
end
102+
function AlertWindow:setInterceptsMouseClicks()
103+
end
104+
function AlertWindow:getNumCustomComponents()
105+
end
106+
function AlertWindow:getChildComponent()
107+
end
108+
function AlertWindow:setModalHandler()
109+
end
110+
function AlertWindow:getExplicitFocusOrder()
111+
end
112+
function AlertWindow:setOpaque()
113+
end
114+
function AlertWindow:colourChanged()
115+
end
116+
function AlertWindow:repaint()
117+
end
118+
function AlertWindow:getMouseClickGrabsKeyboardFocus()
119+
end
120+
function AlertWindow:getY()
121+
end
122+
function AlertWindow:getLocalBounds()
123+
end
124+
function AlertWindow:getWindowHandle()
125+
end
126+
function AlertWindow:getParentHeight()
127+
end
128+
function AlertWindow:getTextEditorContents()
129+
end
130+
function AlertWindow:getTopLevelComponent()
131+
end
132+
function AlertWindow:setMouseClickGrabsKeyboardFocus()
133+
end
134+
function AlertWindow:getScreenX()
135+
end
136+
function AlertWindow:setPaintingIsUnclipped()
137+
end
138+
function AlertWindow:getIndexOfChildComponent()
139+
end
140+
function AlertWindow:contains()
141+
end
142+
function AlertWindow:getNumButtons()
143+
end
144+
function AlertWindow:getLocalPoint()
145+
end
146+
function AlertWindow:reallyContains()
147+
end
148+
function AlertWindow:getProperties()
149+
end
150+
function AlertWindow:mouseDrag()
151+
end
152+
function AlertWindow:centreWithSize()
153+
end
154+
function AlertWindow:grabKeyboardFocus()
155+
end
156+
function AlertWindow:setVisible()
157+
end
158+
function AlertWindow:addAndMakeVisible()
159+
end
160+
function AlertWindow:moveKeyboardFocusToSibling()
161+
end
162+
function AlertWindow:createComponentSnapshot()
163+
end
164+
function AlertWindow:isMouseButtonDown()
165+
end
166+
function AlertWindow:userTriedToCloseWindow()
167+
end
168+
function AlertWindow:setBufferedToImage()
169+
end
170+
function AlertWindow:isCurrentlyBlockedByAnotherModalComponent()
171+
end
172+
function AlertWindow:removeMouseListener()
173+
end
174+
function AlertWindow:removeCustomComponent()
175+
end
176+
function AlertWindow:handleCommandMessage()
177+
end
178+
function AlertWindow:isColourSpecified()
179+
end
180+
function AlertWindow:inputAttemptWhenModal()
181+
end
182+
function AlertWindow:getBounds()
183+
end
184+
function AlertWindow:childBoundsChanged()
185+
end
186+
function AlertWindow:sendLookAndFeelChange()
187+
end
188+
function AlertWindow:isOpaque()
189+
end
190+
function AlertWindow:mouseWheelMove()
191+
end
192+
function AlertWindow:setComponentEffect()
193+
end
194+
function AlertWindow:getLookAndFeel()
195+
end
196+
function AlertWindow:setMessage()
197+
end
198+
function AlertWindow:addProgressBarComponent()
199+
end
200+
function AlertWindow:getComponentEffect()
201+
end
202+
function AlertWindow:getCustomComponent()
203+
end
204+
function AlertWindow:getMouseCursor()
205+
end
206+
function AlertWindow:setBounds()
207+
end
208+
function AlertWindow:removeAllChildren()
209+
end
210+
function AlertWindow:setBoundsInset()
211+
end
212+
function AlertWindow:runModalLoop()
213+
end
214+
function AlertWindow:getCachedComponentImage()
215+
end
216+
function AlertWindow:setEnabled()
217+
end
218+
function AlertWindow:setLookAndFeel()
219+
end
220+
function AlertWindow:exitModalState()
221+
end
222+
function AlertWindow:addChildComponent()
223+
end
224+
function AlertWindow:paintEntireComponent()
225+
end
226+
function AlertWindow:toFront()
227+
end
228+
function AlertWindow:parentHierarchyChanged()
229+
end
230+
function AlertWindow:getNumChildComponents()
231+
end
232+
function AlertWindow:getHeight()
233+
end
234+
function AlertWindow:setName()
235+
end
236+
function AlertWindow:isFocusContainer()
237+
end
238+
function AlertWindow:modifierKeysChanged()
239+
end
240+
function AlertWindow:mouseDoubleClick()
241+
end
242+
function AlertWindow:setWantsKeyboardFocus()
243+
end
244+
function AlertWindow:isShowing()
245+
end
246+
function AlertWindow:getRight()
247+
end
248+
function AlertWindow:getBoundsInParent()
249+
end
250+
function AlertWindow:broughtToFront()
251+
end
252+
function AlertWindow:addComponentListener()
253+
end
254+
function AlertWindow:resized()
255+
end
256+
function AlertWindow:hasKeyboardFocus()
257+
end
258+
function AlertWindow:isEnabled()
259+
end
260+
function AlertWindow:updateMouseCursor()
261+
end
262+
function AlertWindow:removeKeyListener()
263+
end
264+
function AlertWindow:getTextEditor()
265+
end
266+
function AlertWindow:setBoundsRelative()
267+
end
268+
function AlertWindow:proportionOfWidth()
269+
end
270+
function AlertWindow:moved()
271+
end
272+
function AlertWindow:createFocusTraverser()
273+
end
274+
function AlertWindow:isMouseOverOrDragging()
275+
end
276+
function AlertWindow:isMouseOver()
277+
end
278+
function AlertWindow:addCustomComponent()
279+
end
280+
function AlertWindow:localPointToGlobal()
281+
end
282+
function AlertWindow:proportionOfHeight()
283+
end
284+
function AlertWindow:addKeyListener()
285+
end
286+
function AlertWindow:setTopRightPosition()
287+
end
288+
function AlertWindow:getPosition()
289+
end
290+
function AlertWindow:getAlertType()
291+
end
292+
function AlertWindow:addTextEditor()
293+
end
294+
function AlertWindow:addToDesktop()
295+
end
296+
function AlertWindow:setCachedComponentImage()
297+
end
298+
function AlertWindow:mouseMove()
299+
end
300+
function AlertWindow:removeComponentListener()
301+
end
302+
function AlertWindow:isTransformed()
303+
end
304+
function AlertWindow:focusLost()
305+
end
306+
function AlertWindow:getScreenPosition()
307+
end
308+
function AlertWindow:paintOverChildren()
309+
end
310+
function AlertWindow:toBack()
311+
end
312+
function AlertWindow:keyPressed()
313+
end
314+
function AlertWindow:isParentOf()
315+
end
316+
function AlertWindow:setTransform()
317+
end
318+
function AlertWindow:postCommandMessage()
319+
end
320+
function AlertWindow:addButton()
321+
end
322+
function AlertWindow:setBroughtToFrontOnMouseClick()
323+
end
324+
function AlertWindow:setEscapeKeyCancels()
325+
end
326+
function AlertWindow:removeColour()
327+
end
328+
function AlertWindow:addMouseListener()
329+
end
330+
function AlertWindow:parentSizeChanged()
331+
end
332+
function AlertWindow:toBehind()
333+
end
334+
function AlertWindow:mouseEnter()
335+
end
336+
function AlertWindow:mouseDown()
337+
end
338+
function AlertWindow:getWidth()
339+
end
340+
function AlertWindow:addChildAndSetID()
341+
end
342+
function AlertWindow:setPositioner()
343+
end
344+
function AlertWindow:getParentWidth()
345+
end
346+
function AlertWindow:getBottom()
347+
end
348+
function AlertWindow:isAlwaysOnTop()
349+
end
350+
function AlertWindow:getPeer()
351+
end
352+
function AlertWindow:getPositioner()
353+
end
354+
function AlertWindow:findColour()
355+
end
356+
function AlertWindow:getTransform()
357+
end
358+
function AlertWindow:setAlwaysOnTop()
359+
end
360+
function AlertWindow:enterModalState()
361+
end
362+
function AlertWindow:isCurrentlyModal()
363+
end
364+
function AlertWindow:mouseExit()
365+
end
366+
function AlertWindow:deleteAllChildren()
367+
end
368+
function AlertWindow:isOnDesktop()
369+
end
370+
function AlertWindow:setBoundsToFit()
371+
end
372+
function AlertWindow:removeFromDesktop()
373+
end
374+
375+
return AlertWindow

0 commit comments

Comments
 (0)