1*ef39d40dSAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3*ef39d40dSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*ef39d40dSAndrew Rist * or more contributor license agreements. See the NOTICE file 5*ef39d40dSAndrew Rist * distributed with this work for additional information 6*ef39d40dSAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*ef39d40dSAndrew Rist * to you under the Apache License, Version 2.0 (the 8*ef39d40dSAndrew Rist * "License"); you may not use this file except in compliance 9*ef39d40dSAndrew Rist * with the License. You may obtain a copy of the License at 10*ef39d40dSAndrew Rist * 11*ef39d40dSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12*ef39d40dSAndrew Rist * 13*ef39d40dSAndrew Rist * Unless required by applicable law or agreed to in writing, 14*ef39d40dSAndrew Rist * software distributed under the License is distributed on an 15*ef39d40dSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*ef39d40dSAndrew Rist * KIND, either express or implied. See the License for the 17*ef39d40dSAndrew Rist * specific language governing permissions and limitations 18*ef39d40dSAndrew Rist * under the License. 19*ef39d40dSAndrew Rist * 20*ef39d40dSAndrew Rist *************************************************************/ 21*ef39d40dSAndrew Rist 22*ef39d40dSAndrew Rist 23cdf0e10cSrcweir package mod._sw; 24cdf0e10cSrcweir 25cdf0e10cSrcweir import java.io.PrintWriter; 26cdf0e10cSrcweir 27cdf0e10cSrcweir import lib.StatusException; 28cdf0e10cSrcweir import lib.TestCase; 29cdf0e10cSrcweir import lib.TestEnvironment; 30cdf0e10cSrcweir import lib.TestParameters; 31cdf0e10cSrcweir import util.AccessibilityTools; 32cdf0e10cSrcweir import util.SOfficeFactory; 33cdf0e10cSrcweir import util.WriterTools; 34cdf0e10cSrcweir import util.utils; 35cdf0e10cSrcweir 36cdf0e10cSrcweir import com.sun.star.accessibility.AccessibleRole; 37cdf0e10cSrcweir import com.sun.star.accessibility.XAccessible; 38cdf0e10cSrcweir import com.sun.star.awt.XWindow; 39cdf0e10cSrcweir import com.sun.star.beans.XPropertySet; 40cdf0e10cSrcweir import com.sun.star.frame.XController; 41cdf0e10cSrcweir import com.sun.star.frame.XModel; 42cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory; 43cdf0e10cSrcweir import com.sun.star.text.XText; 44cdf0e10cSrcweir import com.sun.star.text.XTextContent; 45cdf0e10cSrcweir import com.sun.star.text.XTextCursor; 46cdf0e10cSrcweir import com.sun.star.text.XTextDocument; 47cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime; 48cdf0e10cSrcweir import com.sun.star.uno.XInterface; 49cdf0e10cSrcweir import com.sun.star.view.XViewSettingsSupplier; 50cdf0e10cSrcweir 51cdf0e10cSrcweir /** 52cdf0e10cSrcweir * Test of accessible object for the graphic object of a text document.<p> 53cdf0e10cSrcweir * Object implements the following interfaces : 54cdf0e10cSrcweir * <ul> 55cdf0e10cSrcweir * <li> <code>::com::sun::star::accessibility::XAccessible</code></li> 56cdf0e10cSrcweir * </ul> 57cdf0e10cSrcweir * @see com.sun.star.accessibility.XAccessible 58cdf0e10cSrcweir */ 59cdf0e10cSrcweir public class SwAccessibleTextGraphicObject extends TestCase { 60cdf0e10cSrcweir 61cdf0e10cSrcweir XTextDocument xTextDoc = null; 62cdf0e10cSrcweir 63cdf0e10cSrcweir /** 64cdf0e10cSrcweir * Called to create an instance of <code>TestEnvironment</code> 65cdf0e10cSrcweir * with an object to test and related objects. 66cdf0e10cSrcweir * Creates a graphic object and inserts it into the document. 67cdf0e10cSrcweir * Obtains accessible object for graphic object. 68cdf0e10cSrcweir * 69cdf0e10cSrcweir * @param tParam test parameters 70cdf0e10cSrcweir * @param log writer to log information while testing 71cdf0e10cSrcweir * 72cdf0e10cSrcweir * @see TestEnvironment 73cdf0e10cSrcweir * @see #getTestEnvironment() 74cdf0e10cSrcweir */ 75cdf0e10cSrcweir protected TestEnvironment createTestEnvironment( 76cdf0e10cSrcweir TestParameters Param, PrintWriter log) { 77cdf0e10cSrcweir 78cdf0e10cSrcweir XInterface oObj = null; 79cdf0e10cSrcweir 80cdf0e10cSrcweir SOfficeFactory SOF = SOfficeFactory.getFactory((XMultiServiceFactory)Param.getMSF()); 81cdf0e10cSrcweir Object oGraphObj = SOF.createInstance( 82cdf0e10cSrcweir xTextDoc, "com.sun.star.text.GraphicObject"); 83cdf0e10cSrcweir 84cdf0e10cSrcweir XText the_text = xTextDoc.getText(); 85cdf0e10cSrcweir XTextCursor the_cursor = the_text.createTextCursor(); 86cdf0e10cSrcweir XTextContent the_content = (XTextContent) 87cdf0e10cSrcweir UnoRuntime.queryInterface(XTextContent.class, oGraphObj); 88cdf0e10cSrcweir 89cdf0e10cSrcweir log.println( "inserting graphic" ); 90cdf0e10cSrcweir try { 91cdf0e10cSrcweir the_text.insertTextContent(the_cursor, the_content, true); 92cdf0e10cSrcweir } catch (com.sun.star.lang.IllegalArgumentException e) { 93cdf0e10cSrcweir e.printStackTrace(); 94cdf0e10cSrcweir throw new StatusException("Couldn't insert Content", e); 95cdf0e10cSrcweir } 96cdf0e10cSrcweir 97cdf0e10cSrcweir XModel aModel = (XModel) 98cdf0e10cSrcweir UnoRuntime.queryInterface(XModel.class, xTextDoc); 99cdf0e10cSrcweir 100cdf0e10cSrcweir AccessibilityTools at = new AccessibilityTools(); 101cdf0e10cSrcweir 102cdf0e10cSrcweir XWindow xWindow = at.getCurrentWindow((XMultiServiceFactory)Param.getMSF(), aModel); 103cdf0e10cSrcweir XAccessible xRoot = at.getAccessibleObject(xWindow); 104cdf0e10cSrcweir 105cdf0e10cSrcweir at.getAccessibleObjectForRole(xRoot, AccessibleRole.GRAPHIC); 106cdf0e10cSrcweir 107cdf0e10cSrcweir oObj = at.SearchedContext; 108cdf0e10cSrcweir 109cdf0e10cSrcweir log.println("ImplementationName " + utils.getImplName(oObj)); 110cdf0e10cSrcweir at.printAccessibleTree(log, xRoot, Param.getBool(util.PropertyName.DEBUG_IS_ACTIVE)); 111cdf0e10cSrcweir 112cdf0e10cSrcweir TestEnvironment tEnv = new TestEnvironment(oObj); 113cdf0e10cSrcweir 114cdf0e10cSrcweir XController xController = xTextDoc.getCurrentController(); 115cdf0e10cSrcweir XViewSettingsSupplier xViewSetSup = (XViewSettingsSupplier) 116cdf0e10cSrcweir UnoRuntime.queryInterface(XViewSettingsSupplier.class, 117cdf0e10cSrcweir xController); 118cdf0e10cSrcweir 119cdf0e10cSrcweir final XPropertySet PropSet = xViewSetSup.getViewSettings(); 120cdf0e10cSrcweir 121cdf0e10cSrcweir tEnv.addObjRelation("EventProducer", 122cdf0e10cSrcweir new ifc.accessibility._XAccessibleEventBroadcaster.EventProducer() { 123cdf0e10cSrcweir public void fireEvent() { 124cdf0e10cSrcweir try { 125cdf0e10cSrcweir //change zoom value to 15% 126cdf0e10cSrcweir PropSet.setPropertyValue("ZoomValue", new Short("15")); 127cdf0e10cSrcweir //and back to 100% 128cdf0e10cSrcweir PropSet.setPropertyValue("ZoomValue", new Short("100")); 129cdf0e10cSrcweir } catch ( com.sun.star.lang.WrappedTargetException e ) { 130cdf0e10cSrcweir 131cdf0e10cSrcweir } catch ( com.sun.star.lang.IllegalArgumentException e ) { 132cdf0e10cSrcweir 133cdf0e10cSrcweir } catch ( com.sun.star.beans.PropertyVetoException e ) { 134cdf0e10cSrcweir 135cdf0e10cSrcweir } catch ( com.sun.star.beans.UnknownPropertyException e ) { 136cdf0e10cSrcweir 137cdf0e10cSrcweir } 138cdf0e10cSrcweir } 139cdf0e10cSrcweir }); 140cdf0e10cSrcweir 141cdf0e10cSrcweir 142cdf0e10cSrcweir return tEnv; 143cdf0e10cSrcweir 144cdf0e10cSrcweir } 145cdf0e10cSrcweir 146cdf0e10cSrcweir 147cdf0e10cSrcweir /** 148cdf0e10cSrcweir * Called while disposing a <code>TestEnvironment</code>. 149cdf0e10cSrcweir * Disposes text document. 150cdf0e10cSrcweir * @param tParam test parameters 151cdf0e10cSrcweir * @param tEnv the environment to cleanup 152cdf0e10cSrcweir * @param log writer to log information while testing 153cdf0e10cSrcweir */ 154cdf0e10cSrcweir protected void cleanup( TestParameters Param, PrintWriter log) { 155cdf0e10cSrcweir log.println("dispose text document"); 156cdf0e10cSrcweir util.DesktopTools.closeDoc(xTextDoc); 157cdf0e10cSrcweir } 158cdf0e10cSrcweir 159cdf0e10cSrcweir /** 160cdf0e10cSrcweir * Called while the <code>TestCase</code> initialization. 161cdf0e10cSrcweir * Creates a text document. 162cdf0e10cSrcweir * 163cdf0e10cSrcweir * @param tParam test parameters 164cdf0e10cSrcweir * @param log writer to log information while testing 165cdf0e10cSrcweir * 166cdf0e10cSrcweir * @see #initializeTestCase() 167cdf0e10cSrcweir */ 168cdf0e10cSrcweir protected void initialize(TestParameters Param, PrintWriter log) { 169cdf0e10cSrcweir log.println( "creating a text document" ); 170cdf0e10cSrcweir xTextDoc = WriterTools.createTextDoc((XMultiServiceFactory)Param.getMSF()); 171cdf0e10cSrcweir } 172cdf0e10cSrcweir } 173cdf0e10cSrcweir 174