summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/basic/ifc/awt/XWindow/awt_XWindow.xba
blob: 251b858dad677d78fcb98d5b373f71d2082b6c3b (plain)
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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="awt_XWindow" script:language="StarBasic">


'*************************************************************************
'
' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
' 
' Copyright 2008 by Sun Microsystems, Inc.
'
' OpenOffice.org - a multi-platform office productivity suite
'
' $RCSfile: awt_XWindow.xba,v $
'
' $Revision: 1.4 $
'
' This file is part of OpenOffice.org.
'
' OpenOffice.org is free software: you can redistribute it and/or modify
' it under the terms of the GNU Lesser General Public License version 3
' only, as published by the Free Software Foundation.
'
' OpenOffice.org is distributed in the hope that it will be useful,
' but WITHOUT ANY WARRANTY; without even the implied warranty of
' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
' GNU Lesser General Public License version 3 for more details
' (a copy is included in the LICENSE file that accompanied this code).
'
' You should have received a copy of the GNU Lesser General Public License
' version 3 along with OpenOffice.org.  If not, see
' <http://www.openoffice.org/license.html>
' for a copy of the LGPLv3 License.
'
'*************************************************************************
'*************************************************************************



' Be sure that all variables are dimensioned:
option explicit

'*************************************************************************
' This Interface/Service test depends on the following GLOBAL variables,
' which must be specified in the object creation:


'*************************************************************************
'       Global oXWindow as Object
'       Global oCtrlShape as Variant (could be NULL)


Dim bCB1_windowResized As Boolean
Dim bCB2_windowResized As Boolean
Dim bCB1_windowMoved As Boolean
Dim bCB2_windowMoved As Boolean
Dim bCB1_windowHidden As Boolean
Dim bCB2_windowHidden As Boolean
Dim bCB1_windowShown As Boolean
Dim bCB2_windowShown As Boolean
Dim bCB1_disposing As Boolean
Dim bCB2_disposing As Boolean
Dim bCB3_focusGained As Boolean
Dim bCB4_focusGained As Boolean
Dim bCB3_focusLost As Boolean
Dim bCB4_focusLost As Boolean


Sub RunTest()

'*************************************************************************
' INTERFACE: 
' com.sun.star.awt.XWindow
'*************************************************************************
On Error Goto ErrHndl
    Dim bOK As Boolean

    If isNull(oXWindow) Then
		Out.Log("Could not get relation 'oXWindow' !")
    End If
    Dim oListener1 As Object, oListener2 As Object
    Dim oListener3 As Object, oListener4 As Object
    Dim oListener5 As Object, oListener6 As Object
    Dim oListener7 As Object, oListener8 As Object
    Dim oListener9 As Object, oListener10 As Object
    Dim oListener11 As Object, oListener12 As Object
    Dim size As Variant, pos As Variant
    
    bCB1_windowResized = false
    bCB2_windowResized = false
    bCB1_windowMoved = false
    bCB2_windowMoved = false
    bCB1_windowHidden = false
    bCB2_windowHidden = false
    bCB1_windowShown = false
    bCB2_windowShown = false
    bCB1_disposing = false
    bCB2_disposing = false
    bCB3_focusGained = false
    bCB4_focusLost = false
    bCB3_focusGained = false
    bCB4_focusLost = false

    Out.Log("create two com.sun.star.awt.XWindowListener")
    oListener1 = createUNOListener("CB1_", "com.sun.star.awt.XWindowListener")
    oListener2 = createUNOListener("CB2_", "com.sun.star.awt.XWindowListener")
    Out.Log("create two  com.sun.star.awt.XFocusListener")
    oListener3 = createUNOListener("CB3_", "com.sun.star.awt.XFocusListener")
    oListener4 = createUNOListener("CB4_", "com.sun.star.awt.XFocusListener")
    Out.Log("create two com.sun.star.awt.XKeyListener")
    oListener5 = createUNOListener("CB5_", "com.sun.star.awt.XKeyListener")
    oListener6 = createUNOListener("CB6_", "com.sun.star.awt.XKeyListener")
    Out.Log("create two com.sun.star.awt.XMouseListener")
    oListener7 = createUNOListener("CB7_", "com.sun.star.awt.XMouseListener")
    oListener8 = createUNOListener("CB8_", "com.sun.star.awt.XMouseListener")
    Out.Log("create two com.sun.star.awt.XMouseMotionListener")
    oListener9 = createUNOListener("CB9_", "com.sun.star.awt.XMouseMotinListener")
    oListener10 = createUNOListener("CB10_", "com.sun.star.awt.XMouseMotinListener")
    Out.Log("create two com.sun.star.awt.XPaintListener")
    oListener11 = createUNOListener("CB11_", "com.sun.star.awt.XPaintListener")
    oListener12 = createUNOListener("CB12_", "com.sun.star.awt.XPaintListener")

    Test.StartMethod("setPosSize()")
    bOK = true
    oObj.setPosSize(250,250,250,250,com.sun.star.awt.PosSize.POSSIZE)
    Out.Log("oObj.setPosSize(250,250,250,250,com.sun.star.awt.PosSize.POSSIZE")
    Test.StartMethod("getPosSize()")
    Dim vRectangle As Variant
    vRectangle = oObj.getPosSize()
    Out.Log("Returned Values: X=" + vRectangle.X + " Y=" + vRectangle.Y _
           + " WIDTH=" + vRectangle.WIDTH + " HEIGTH=" + vRectangle.HEIGHT
    bOK = bOK AND vRectangle.X = 250
    bOK = bOK AND vRectangle.Y = 250
    bOK = bOK AND vRectangle.Width = 250
    bOK = bOK AND vRectangle.Height = 250
    Test.MethodTested("setPosSize()", bOK)
    Test.MethodTested("getPosSize()", bOK)

    Test.StartMethod("setVisible()")
    bOK = true
    oObj.setVisible(false)
    oObj.setVisible(true)
    Test.MethodTested("setVisible()", bOK)

    Test.StartMethod("setEnable()")
    bOK = true
    oObj.setEnable(false)
    oObj.setEnable(true)
    Test.MethodTested("setEnable()", bOK)

    Test.StartMethod("setFocus()")
    bOK = true
    oObj.setFocus()
    oXWindow.setFocus()
    oObj.setFocus()
    Test.MethodTested("setFocus()", bOK)

    Test.StartMethod("addWindowListener()")
    bOK = true
    oObj.addWindowListener(oListener1)
    oObj.addWindowListener(oListener2)
    oObj.setVisible(false)
    oObj.setVisible(true)
    if NOT isNull(oCtrlShape) then
        size = oCtrlShape.Size
        size.Width = size.Width + 100
        size.Height = size.Height + 100
        oCtrlShape.Size = size
        
        pos = oCtrlShape.Position
        pos.X = pos.X + 100
        pos.Y = pos.Y + 100
        oCtrlShape.Position = pos
    else
        Out.Log("oObj.setPosSize(300,300,300,300,com.sun.star.awt.PosSize.POSSIZE)")
        oObj.setPosSize(300,300,300,300,com.sun.star.awt.PosSize.POSSIZE)
    end if
    wait(1000)
    bOK = bOK AND bCB1_windowResized AND bCB2_windowResized AND bCB1_windowMoved AND _
          bCB2_windowMoved AND bCB1_windowHidden AND bCB2_windowHidden AND _
          bCB1_windowShown AND bCB2_windowShown AND NOT bCB1_disposing AND NOT _
          bCB2_disposing
    Test.MethodTested("addWindowListener()", bOK)

    Test.StartMethod("removeWindowListener()")
    bOK = true
    bCB1_windowResized = false
    bCB2_windowResized = false
    bCB1_windowMoved = false
    bCB2_windowMoved = false
    bCB1_windowHidden = false
    bCB2_windowHidden = false
    bCB1_windowShown = false
    bCB2_windowShown = false
    bCB1_disposing = false
    bCB2_disposing = false
    oObj.removeWindowListener(oListener2)
    oObj.setVisible(false)
    oObj.setVisible(true)
    oObj.setVisible(false)
    oObj.setVisible(true)
    if NOT isNull(oCtrlShape) then
        size = oCtrlShape.Size
        size.Width = size.Width + 100
        size.Height = size.Height + 100
        oCtrlShape.Size = size
        
        pos = oCtrlShape.Position
        pos.X = pos.X + 100
        pos.Y = pos.Y + 100
        oCtrlShape.Position = pos
    else
        Out.Log("oObj.setPosSize(300,300,300,300,com.sun.star.awt.PosSize.POSSIZE)")
        oObj.setPosSize(301,301,301,301,com.sun.star.awt.PosSize.POSSIZE)
    end if
    wait(200)
    bOK = bOK AND bCB1_windowResized AND NOT bCB2_windowResized AND bCB1_windowMoved AND NOT _
          bCB2_windowMoved AND bCB1_windowHidden AND NOT bCB2_windowHidden AND _
          bCB1_windowShown AND NOT bCB2_windowShown AND NOT bCB1_disposing AND NOT _
          bCB2_disposing
    oObj.removeWindowListener(oListener1)
    Test.MethodTested("removeWindowListener()", bOK)

    Test.StartMethod("addFocusListener()")
    bOK = true
    oObj.addFocusListener(oListener3)
    oObj.addFocusListener(oListener4)
    oObj.setFocus()
    wait(200)
    oXWindow.setFocus()
    wait(200)
    oObj.setFocus()
    wait(200)
    bOK = bOK AND bCB3_focusGained AND bCB4_focusLost AND bCB3_focusGained AND bCB4_focusLost
    Test.MethodTested("addFocusListener()", bOK)

    Test.StartMethod("removeFocusListener()")
    bOK = true
    bCB3_focusGained = false
    bCB4_focusLost = false
    bCB3_focusGained = false
    bCB4_focusLost = false
    oObj.removeFocusListener(oListener4)
    oObj.setFocus()
    wait(200)
    oXWindow.setFocus()
    wait(200)
    oObj.setFocus()
    wait(200)
    bOK = bOK AND bCB3_focusGained AND NOT bCB4_focusLost AND bCB3_focusGained AND NOT bCB4_focusLost
    oObj.removeFocusListener(oListener3)
    Test.MethodTested("removeFocusListener()", bOK)

'***************************************************************************************
'* LISTENERS which needs interactions                                                  *
'***************************************************************************************
'*
'* The following listener tests need interactions. That means i.e. a
'* com.sun.star.awt.XKeyListener needs action from the keyboard. This is not possible in
'* the automatic API-Testing. To test the listener you can set a breakpoint at the
'* specific function call. Then do interaction which should call the listener. It must be
'* pop up a message box.
'*
'***************************************************************************************

    Test.StartMethod("addKeyListener()")
    bOK = true
    Out.Log("Not realy tested! Please see comments in Basic-Source.")
    oObj.addKeyListener(oListener5)
    oObj.addKeyListener(oListener6)
    bOK = bOK AND true
    Test.MethodTested("addKeyListener()", bOK)

    Test.StartMethod("removeKeyListener()")
    bOK = true
    Out.Log("Not realy tested! Please see comments in Basic-Source.")
    oObj.removeKeyListener(oListener5)
    bOK = bOK AND true
    oObj.removeKeyListener(oListener6)
    Test.MethodTested("removeKeyListener()", bOK)

    Test.StartMethod("addMouseListener()")
    bOK = true
    Out.Log("Not realy tested! Please see comments in Basic-Source.")
    oObj.addMouseListener(oListener7)
    oObj.addMouseListener(oListener8)
    bOK = bOK AND true
    Test.MethodTested("addMouseListener()", bOK)

    Test.StartMethod("removeMouseListener()")
    bOK = true
    Out.Log("Not realy tested! Please see comments in Basic-Source.")
    oObj.removeMouseListener(oListener7)
    bOK = bOK AND true
    oObj.removeMouseListener(oListener8)
    Test.MethodTested("removeMouseListener()", bOK)

    Test.StartMethod("addMouseMotionListener()")
    bOK = true
    Out.Log("Not realy tested! Please see comments in Basic-Source.")
    oObj.addMouseMotionListener(oListener9)
    oObj.addMouseMotionListener(oListener10)
    bOK = bOK AND true
    Test.MethodTested("addMouseMotionListener()", bOK)

    Test.StartMethod("removeMouseMotionListener()")
    bOK = true
    Out.Log("Not realy tested! Please see comments in Basic-Source.")
    oObj.removeMouseMotionListener(oListener9)
    bOK = bOK AND true
    oObj.removeMouseMotionListener(oListener10)
    Test.MethodTested("removeMouseMotionListener()", bOK)

    Test.StartMethod("addPaintListener()")
    bOK = true
    Out.Log("Not realy tested! Please see comments in Basic-Source.")
    oObj.addPaintListener(oListener11)
    oObj.addPaintListener(oListener12)
    bOK = bOK AND true
    Test.MethodTested("addPaintListener()", bOK)

    Test.StartMethod("removePaintListener()")
    bOK = true
    Out.Log("Not realy tested! Please see comments in Basic-Source.")
    oObj.removePaintListener(oListener11)
    bOK = bOK AND true
    oObj.removePaintListener(oListener12)
    Test.MethodTested("removePaintListener()", bOK)

Exit Sub
ErrHndl:
    Test.Exception()
    bOK = false
    resume next
End Sub

' Listener call backs for com.sun.star.awt.XWindowListener
Sub CB1_windowResized
    Out.Log("CallBack for Listener1 windowResized was called.")
    bCB1_windowResized = true
End Sub
Sub CB2_windowResized
    Out.Log("CallBack for Listener2 windowResized was called.")
    bCB2_windowResized = true
End Sub
Sub CB1_windowMoved
    Out.Log("CallBack for Listener1 windowMoved was called.")
    bCB1_windowMoved = true
End Sub
Sub CB2_windowMoved
    Out.Log("CallBack for Listener2 windowMoved was called.")
    bCB2_windowMoved = true
End Sub
Sub CB1_windowHidden
    Out.Log("CallBack for Listener1 windowHidden was called.")
    bCB1_windowHidden = true
End Sub
Sub CB2_windowHidden
    Out.Log("CallBack for Listener2 windowHidden was called.")
    bCB2_windowHidden = true
End Sub
Sub CB1_windowShown
    Out.Log("CallBack for Listener1 windowShown was called.")
    bCB1_windowShown = true
End Sub
Sub CB2_windowShown
    Out.Log("CallBack for Listener2 windowShown was called.")
    bCB2_windowShown = true
End Sub
Sub CB1_disposing
    Out.Log("CallBack for Listener1 disposing was called")
    bCB1_disposing = true
End Sub
Sub CB2_disposing
    Out.Log("CallBack for Listener2 disposing was called")
    bCB2_disposing = true
End Sub

' Listener call backs for com.sun.star.awt.XFocusListener
Sub CB3_focusGained
    Out.Log("CallBack for Listener3 'focusGained' was called")
    bCB3_focusGained = true
End Sub
Sub CB4_focusGained
    Out.Log("CallBack for Listener4 'focusGained' was called")
    bCB4_focusGained = true
End Sub
Sub CB3_focusLost
    Out.Log("CallBack for Listener3 'focusLost' was called")
    bCB3_focusLost = true
End Sub
Sub CB4_focusLost
    Out.Log("CallBack for Listener4 'focusLost' was called")
    bCB4_focusLost = true
End Sub
Sub CB3_disposing
End Sub
Sub CB4_disposing
End Sub

' Listener call backs for com.sun.star.awt.XKeyListener
' They will never be called beause of no interaction in API-Testing
Sub CB5_keyPressed
  MsgBox("CallBack for Listener5 'keyPressed' was called")
End Sub
Sub CB6_keyPressed
  MsgBox("CallBack for Listener6 'keyPressed' was called")
End Sub
Sub CB5_keyReleased
  MsgBox("CallBack for Listener5 'keyReleased' was called")
End Sub
Sub CB6_keyReleased
  MsgBox("CallBack for Listener6 'keyReleased' was called")
End Sub
Sub CB5_disposing
End Sub
Sub CB6_disposing
End Sub


' Listener call backs for com.sun.star.awt.XMouseListener
' They will never be called beause of no interaction in API-Testing
Sub CB7_mousePressed
  MsgBox("CallBack for Listener7 'mousePressed' was called")
End Sub
Sub CB8_mousePressed
  MsgBox("CallBack for Listener8 'mousePressed' was called")
End Sub
Sub CB7_mouseReleased
  MsgBox("CallBack for Listener8 'mouseReleased' was called")
End Sub
Sub CB8_mouseReleased
  MsgBox("CallBack for Listener8 'mouseReleased' was called")
End Sub
Sub CB7_mouseEntered
  MsgBox("CallBack for Listener7 'mouseEntered' was called")
End Sub
Sub CB8_mouseEntered
  MsgBox("CallBack for Listener8 'mouseEntered' was called")
End Sub
Sub CB7_mouseExited
  MsgBox("CallBack for Listener7 'mouseExited' was called")
End Sub
Sub CB8_mouseExited
  MsgBox("CallBack for Listener8 'mouseExited' was called")
End Sub
Sub CB7_disposing
End Sub
Sub CB8_disposing
End Sub


' Listener call backs for com.sun.star.awt.XMouseMotionListener
' They will never be called beause of no interaction in API-Testing
Sub CB9_mouseDragged
  MsgBox("CallBack for Listener9 'mouseDragged' was called")
End Sub
Sub CB10_mouseDragged
  MsgBox("CallBack for Listener10 'mouseDragged' was called")
End Sub
Sub CB9_mouseMoved
  MsgBox("CallBack for Listener9 'mouseMoved' was called")
End Sub
Sub CB10_mouseMoved
  MsgBox("CallBack for Listener10 'mouseMoved' was called")
End Sub
Sub CB9_disposing
End Sub
Sub CB10_disposing
End Sub


' Listener call backs for com.sun.star.awt.XMouseMotionListener
' They will never be called beause of no interaction in API-Testing
Sub CB11_windowPaint
  MsgBox("CallBack for Listener11 'windowPaint' was called")
End Sub
Sub CB12_windowPaint
  MsgBox("CallBack for Listener12 'windowPaint' was called")
End Sub
Sub CB11_disposing
End Sub
Sub CB12_disposing
End Sub

</script:module>