merge the formfield patch from ooo-build
[ooovba.git] / qadevOOo / tests / basic / mod / sm / SmGraphicAccessible / sm_SmGraphicAccessible.xba
blob78d0e9c2e5cdd113b0ba668cf5d0f52fcd4d15cf
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="sm_SmGraphicAccessible" 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: sm_SmGraphicAccessible.xba,v $
16 ' $Revision: 1.5 $
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:
46 'Required for XAccessibleText
47 Global accText As String
48 Global readOnly as Boolean
50 Sub CreateObj()
52 '*************************************************************************
53 ' COMPONENT:
54 ' sm.SmGraphicAccessible
55 '*************************************************************************
56 On Error Goto ErrHndl
57 oDoc = utils.createDocument("smath", cObjectName)
59 accText = "sum a cdot b"
60 oDoc.Formula = accText
62 wait(2000)
64 Dim oWin As Object
65 Dim xRoot As Object
67 oWin = utils.at_getCurrentWindow(oDoc)
68 xRoot = utils.at_getAccessibleObject(oWin)
70 oObj = utils.at_getAccessibleObjectForRole(xRoot, com.sun.star.accessibility.AccessibleRole.DOCUMENT, "Formula")
71 readOnly = false
72 Exit Sub
73 ErrHndl:
74 Test.Exception()
75 End Sub
77 Sub fireEvent()
78 oDoc.Formula = "sum hat x"
79 wait(2000)
80 oDoc.Formula = accText
81 wait(2000)
82 End Sub
83 </script:module>