merge the formfield patch from ooo-build
[ooovba.git] / qadevOOo / tests / basic / mod / toolkit / AccessibleFixedText / toolkit_AccessibleFixedText.xba
blob505620fed6e8582446aa867d759ec8042879bb11
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="toolkit_AccessibleFixedText" 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: toolkit_AccessibleFixedText.xba,v $
16 ' $Revision: 1.8 $
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
44 ' REQUIRED VARIABLES for interface/service tests:
45 Global accText As String
46 Global accButton As Object
47 Global readOnly as Boolean
49 Global oText as Object
51 Sub CreateObj()
53 '*************************************************************************
54 ' COMPONENT:
55 ' toolkit.AccessibleFixedText
56 '*************************************************************************
57 On Error Goto ErrHndl
58 Dim xController As Object, oWin As Object
59 Dim xDispatcher As Object, xRoot As Object
60 Dim tk As Object, urlTransformer As Object
61 Dim url As New com.sun.star.util.URL
62 Dim noProps()
64 ' oDoc = utils.createDocument("swriter", cObjectName)
66 Dim xText as object
67 oText = createUnoService("com.sun.star.awt.UnoControlFixedText")
68 xText = createUnoService("com.sun.star.awt.UnoControlFixedTextModel")
69 oText.setModel(xText)
70 oText.setText("FixedText")
72 Dim oDialog as object
73 Dim xDialog as Object
74 oDialog = createUnoService("com.sun.star.awt.UnoControlDialog")
75 xDialog = createUnoService("com.sun.star.awt.UnoControlDialogModel")
76 oDialog.setModel(xDialog)
77 oDialog.addControl("Text", oText)
78 oDialog.setVisible(true)
79 oDialog.setPosSize(0, 0, 200, 100, com.sun.star.awt.PosSize.SIZE)
82 tk = createUNOService("com.sun.star.awt.Toolkit")
83 wait(500)
84 oWin = tk.getActiveTopWindow
85 xRoot = utils.at_getAccessibleObject(oWin)
86 oObj = utils.at_getAccessibleObjectForRole(xRoot, com.sun.star.accessibility.AccessibleRole.LABEL)
87 Out.Log("Implementation name: "+oObj.getImplementationName())
88 accText = oObj.getText()
89 readOnly = true
91 Exit Sub
92 ErrHndl:
93 Test.Exception()
94 End Sub
96 Sub fireEvent()
97 oText.setEnable(false)
98 oText.setEnable(true)
99 End Sub
101 </script:module>