/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ package mod._sm; import java.io.PrintWriter; import lib.StatusException; import lib.TestCase; import lib.TestEnvironment; import lib.TestParameters; import util.AccessibilityTools; import util.SOfficeFactory; import util.utils; import com.sun.star.accessibility.AccessibleRole; import com.sun.star.accessibility.XAccessible; import com.sun.star.accessibility.XAccessibleComponent; import com.sun.star.awt.XWindow; import com.sun.star.beans.XPropertySet; import com.sun.star.frame.XModel; import com.sun.star.lang.XComponent; import com.sun.star.lang.XMultiServiceFactory; import com.sun.star.uno.UnoRuntime; import com.sun.star.uno.XInterface; /** * Object implements the following interfaces : *
::com::sun::star::accessibility::XAccessible
::com::sun::star::accessibility::XAccessibleComponent
::com::sun::star::accessibility::XAccessibleContext
::com::sun::star::accessibility::XAccessibleEventBroadcaster
::com::sun::star::accessibility::XAccessibleText
*
* @see com.sun.star.accessibility.XAccessible
* @see com.sun.star.accessibility.XAccessibleComponent
* @see com.sun.star.accessibility.XAccessibleContext
* @see com.sun.star.accessibility.XAccessibleEventBroadcaster
* @see com.sun.star.accessibility.XAccessibleText
* @see ifc.accessibility._XAccessible
* @see ifc.accessibility._XAccessibleComponent
* @see ifc.accessibility._XAccessibleContext
* @see ifc.accessibility._XAccessibleEventBroadcaster
* @see ifc.accessibility._XAccessibleText
*/
public class SmGraphicAccessible extends TestCase {
XComponent xMathDoc;
/**
* Creates a StarMath
document and obtains an accessibility
* component with the role AccessibleRole.PANEL
.
*/
protected synchronized TestEnvironment createTestEnvironment(TestParameters Param, PrintWriter log) {
SOfficeFactory SOF = SOfficeFactory.getFactory( (XMultiServiceFactory) Param.getMSF() );
try {
xMathDoc = SOF.openDoc("smath","_blank");
} catch (com.sun.star.lang.IllegalArgumentException ex) {
ex.printStackTrace( log );
throw new StatusException( "Couldn't create document", ex );
} catch (com.sun.star.io.IOException ex) {
ex.printStackTrace( log );
throw new StatusException( "Couldn't create document", ex );
} catch (com.sun.star.uno.Exception ex) {
ex.printStackTrace( log );
throw new StatusException( "Couldn't create document", ex );
}
// setting a formula in document
final String expFormula = "sum a cdot b";
final XPropertySet xPS = (XPropertySet) UnoRuntime.queryInterface
(XPropertySet.class, xMathDoc);
try {
xPS.setPropertyValue("Formula", expFormula);
} catch(com.sun.star.lang.WrappedTargetException e) {
log.println("Couldn't set property value");
e.printStackTrace(log);
} catch(com.sun.star.lang.IllegalArgumentException e) {
log.println("Couldn't set property value");
e.printStackTrace(log);
} catch(com.sun.star.beans.PropertyVetoException e) {
log.println("Couldn't set property value");
e.printStackTrace(log);
} catch(com.sun.star.beans.UnknownPropertyException e) {
log.println("Couldn't set property value");
e.printStackTrace(log);
}
XInterface oObj = null;
XModel aModel = (XModel)
UnoRuntime.queryInterface(XModel.class, xMathDoc);
AccessibilityTools at = new AccessibilityTools();
XWindow xWindow = at.getCurrentWindow( (XMultiServiceFactory) Param.getMSF(), aModel);
XAccessible xRoot = at.getAccessibleObject(xWindow);
oObj = at.getAccessibleObjectForRole
(xRoot, AccessibleRole.DOCUMENT, "Formula");
log.println("ImplementationName " + utils.getImplName(oObj));
final XAccessibleComponent xAC = (XAccessibleComponent)
UnoRuntime.queryInterface(XAccessibleComponent.class, oObj);
TestEnvironment tEnv = new TestEnvironment(oObj);
tEnv.addObjRelation("EditOnly",
"This method isn't supported in this dialog");
tEnv.addObjRelation("EventProducer",
new ifc.accessibility._XAccessibleEventBroadcaster.EventProducer(){
public void fireEvent() {
try {
xAC.grabFocus();
xPS.setPropertyValue("Formula", "sum hat x");
shortWait();
xPS.setPropertyValue("Formula", expFormula);
shortWait();
} catch(com.sun.star.lang.WrappedTargetException e) {
} catch(com.sun.star.lang.IllegalArgumentException e) {
} catch(com.sun.star.beans.PropertyVetoException e) {
} catch(com.sun.star.beans.UnknownPropertyException e) {
}
}});
return tEnv;
}
/**
* Disposes the document created in createTestEnvironment
* method.
*/
protected void cleanup( TestParameters Param, PrintWriter log) {
log.println( " disposing xMathDoc " );
xMathDoc.dispose();
}
/**
* Sleeps for 0.5 sec. to allow StarOffice to react on
* reset
call.
*/
private void shortWait() {
try {
Thread.sleep(1000) ;
} catch (InterruptedException e) {
log.println("While waiting :" + e) ;
}
}
} // finish class SmModel