merge the formfield patch from ooo-build
[ooovba.git] / qadevOOo / tests / basic / ifc / awt / XRadioButton / awt_XRadioButton.xba
blobd29fe78f0b5d106aee3818db8ea9570cd9786adf
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
3 <script:module xmlns:script="http://openoffice.org/2000/script" script:name="awt_XRadioButton" script:language="StarBasic">
6 '*************************************************************************
8 ' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
9 '
10 ' Copyright 2008 by Sun Microsystems, Inc.
12 ' OpenOffice.org - a multi-platform office productivity suite
14 ' $RCSfile: awt_XRadioButton.xba,v $
16 ' $Revision: 1.3 $
18 ' This file is part of OpenOffice.org.
20 ' OpenOffice.org is free software: you can redistribute it and/or modify
21 ' it under the terms of the GNU Lesser General Public License version 3
22 ' only, as published by the Free Software Foundation.
24 ' OpenOffice.org is distributed in the hope that it will be useful,
25 ' but WITHOUT ANY WARRANTY; without even the implied warranty of
26 ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 ' GNU Lesser General Public License version 3 for more details
28 ' (a copy is included in the LICENSE file that accompanied this code).
30 ' You should have received a copy of the GNU Lesser General Public License
31 ' version 3 along with OpenOffice.org. If not, see
32 ' <http://www.openoffice.org/license.html>
33 ' for a copy of the LGPLv3 License.
35 '*************************************************************************
36 '*************************************************************************
40 ' Be sure that all variables are dimensioned:
41 option explicit
45 Sub RunTest()
47 '*************************************************************************
48 ' INTERFACE:
49 ' com.sun.star.awt.XRadioButton
50 '*************************************************************************
51 On Error Goto ErrHndl
52 Dim bOK As Boolean
53 Dim newVal, oldVal As Variant
54 Dim oListener As Object
55 Dim listenerCalled As Boolean
57 'Flag should be 'true', because itemStateListener called only interactively
58 listenerCalled = true
59 oListener = createUNOListener("iSC_","com.sun.star.awt.XItemListener")
61 Test.StartMethod("addItemListener()")
62 Test.StartMethod("removeItemListener()")
63 oObj.addItemListener(oListener)
64 oObj.removeItemListener(oListener)
65 bOK = true AND listenerCalled
66 Test.MethodTested("addItemListener()", bOK)
67 Test.MethodTested("removeItemListener()", bOK)
69 Test.StartMethod("getState()")
70 Test.StartMethod("setState()")
71 bOK = true
72 oldVal = oObj.getState()
73 Out.Log("value before: "+oldVal)
74 if (oldVal) then
75 oObj.setState(false)
76 else
77 oObj.setState(true)
78 endif
79 newVal = oObj.getState()
80 Out.Log("value after: "+newVal)
81 bOK = bOK AND (oldVal &lt;&gt; newVal)
82 Test.MethodTested("getState()", bOK)
83 Test.MethodTested("setState()", bOK)
85 Test.StartMethod("setLabel()")
86 bOK = true
87 oObj.setLabel("newLabel")
88 Test.MethodTested("setLabel()", bOK)
90 Exit Sub
91 ErrHndl:
92 Test.Exception()
93 bOK = false
94 resume next
95 End Sub
97 Sub iSC_itemStateChanged()
98 Out.Log("CallBack for oListener itemStateChanged was called.")
99 listenerCalled = true
100 End Sub
102 </script:module>