1ef39d40dSAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3ef39d40dSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4ef39d40dSAndrew Rist * or more contributor license agreements. See the NOTICE file 5ef39d40dSAndrew Rist * distributed with this work for additional information 6ef39d40dSAndrew Rist * regarding copyright ownership. The ASF licenses this file 7ef39d40dSAndrew Rist * to you under the Apache License, Version 2.0 (the 8ef39d40dSAndrew Rist * "License"); you may not use this file except in compliance 9ef39d40dSAndrew Rist * with the License. You may obtain a copy of the License at 10ef39d40dSAndrew Rist * 11ef39d40dSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12ef39d40dSAndrew Rist * 13ef39d40dSAndrew Rist * Unless required by applicable law or agreed to in writing, 14ef39d40dSAndrew Rist * software distributed under the License is distributed on an 15ef39d40dSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16ef39d40dSAndrew Rist * KIND, either express or implied. See the License for the 17ef39d40dSAndrew Rist * specific language governing permissions and limitations 18ef39d40dSAndrew Rist * under the License. 19ef39d40dSAndrew Rist * 20ef39d40dSAndrew Rist *************************************************************/ 21ef39d40dSAndrew Rist 22ef39d40dSAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir package mod._fwk; 25cdf0e10cSrcweir 26cdf0e10cSrcweir import com.sun.star.beans.XPropertySet; 27cdf0e10cSrcweir import com.sun.star.frame.XFrame; 28cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory; 29cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime; 30cdf0e10cSrcweir import com.sun.star.uno.XInterface; 31cdf0e10cSrcweir import java.io.PrintWriter; 32cdf0e10cSrcweir import com.sun.star.text.XText; 33cdf0e10cSrcweir import com.sun.star.text.XTextCursor; 34cdf0e10cSrcweir import com.sun.star.text.XTextDocument; 35cdf0e10cSrcweir import com.sun.star.util.XCloseable; 36cdf0e10cSrcweir import lib.StatusException; 37cdf0e10cSrcweir import lib.TestCase; 38cdf0e10cSrcweir import lib.TestEnvironment; 39cdf0e10cSrcweir import lib.TestParameters; 40cdf0e10cSrcweir import util.WriterTools; 41cdf0e10cSrcweir 42cdf0e10cSrcweir /** 43cdf0e10cSrcweir */ 44cdf0e10cSrcweir public class LayoutManager extends TestCase { 45cdf0e10cSrcweir XInterface xManager = null; 46cdf0e10cSrcweir XTextDocument xTextDoc; 47cdf0e10cSrcweir 48cdf0e10cSrcweir /** 49cdf0e10cSrcweir * Cleanup: close the created document 50cdf0e10cSrcweir * @param tParam The test parameters. 51*e6b649b5SPedro Giffuni * @param log The log writer. 52cdf0e10cSrcweir */ cleanup(TestParameters tParam, PrintWriter log)53cdf0e10cSrcweir protected void cleanup(TestParameters tParam, PrintWriter log) { 54cdf0e10cSrcweir log.println(" disposing xTextDoc "); 55cdf0e10cSrcweir 56cdf0e10cSrcweir try { 57cdf0e10cSrcweir XCloseable closer = (XCloseable) UnoRuntime.queryInterface( 58cdf0e10cSrcweir XCloseable.class, xTextDoc); 59cdf0e10cSrcweir closer.close(true); 60cdf0e10cSrcweir } catch (com.sun.star.util.CloseVetoException e) { 61cdf0e10cSrcweir log.println("couldn't close document"); 62cdf0e10cSrcweir } catch (com.sun.star.lang.DisposedException e) { 63cdf0e10cSrcweir log.println("couldn't close document"); 64cdf0e10cSrcweir } 65cdf0e10cSrcweir } 66cdf0e10cSrcweir 67cdf0e10cSrcweir /** 68cdf0e10cSrcweir * Create test environment: 69cdf0e10cSrcweir * <ul> 70cdf0e10cSrcweir * <li>Create test doc</li> 71cdf0e10cSrcweir * <li>Get the frame</li> 72cdf0e10cSrcweir * <li>Get the LayoutManager from the frame</li> 73cdf0e10cSrcweir * </ul> 74cdf0e10cSrcweir * @param tParam The test parameters. 75*e6b649b5SPedro Giffuni * @param log The log writer. 76cdf0e10cSrcweir * @return The test environment. 77cdf0e10cSrcweir */ createTestEnvironment(TestParameters tParam, PrintWriter log)78cdf0e10cSrcweir protected TestEnvironment createTestEnvironment(TestParameters tParam, PrintWriter log) { 79cdf0e10cSrcweir TestEnvironment tEnv = null; 80cdf0e10cSrcweir XMultiServiceFactory xMSF = (XMultiServiceFactory)tParam.getMSF(); 81cdf0e10cSrcweir 82cdf0e10cSrcweir log.println("Creating instance..."); 83cdf0e10cSrcweir 84cdf0e10cSrcweir xTextDoc = WriterTools.createTextDoc(xMSF); 85cdf0e10cSrcweir 86cdf0e10cSrcweir XText xText = xTextDoc.getText(); 87cdf0e10cSrcweir XTextCursor xTextCursor = xText.createTextCursor(); 88cdf0e10cSrcweir 89cdf0e10cSrcweir for (int i = 0; i < 11; i++) { 90cdf0e10cSrcweir xText.insertString(xTextCursor, "A sample text and why not? ", false); 91cdf0e10cSrcweir } 92cdf0e10cSrcweir 93cdf0e10cSrcweir XFrame xFrame = xTextDoc.getCurrentController().getFrame(); 94cdf0e10cSrcweir XPropertySet xProp = (XPropertySet)UnoRuntime.queryInterface(XPropertySet.class, xFrame); 95cdf0e10cSrcweir try { 96cdf0e10cSrcweir Object any = xProp.getPropertyValue("LayoutManager"); 97cdf0e10cSrcweir xManager = (XInterface)UnoRuntime.queryInterface(XInterface.class, any); 98cdf0e10cSrcweir } 99cdf0e10cSrcweir catch(com.sun.star.beans.UnknownPropertyException e) { 100cdf0e10cSrcweir e.printStackTrace(log); 101cdf0e10cSrcweir throw new StatusException("Could not get property 'LayoutManager' from the current frame.", e); 102cdf0e10cSrcweir } 103cdf0e10cSrcweir catch(com.sun.star.lang.WrappedTargetException e) { 104cdf0e10cSrcweir e.printStackTrace(log); 105cdf0e10cSrcweir throw new StatusException("Could not get property 'LayoutManager' from the current frame.", e); 106cdf0e10cSrcweir } 107cdf0e10cSrcweir 108cdf0e10cSrcweir // just to make sure, it's the right one. 109cdf0e10cSrcweir log.println("TestObject: " + util.utils.getImplName(xManager)); 110cdf0e10cSrcweir tEnv = new TestEnvironment(xManager); 111cdf0e10cSrcweir 112cdf0e10cSrcweir tEnv.addObjRelation("XLayoutManager.TextDoc", xTextDoc); 113cdf0e10cSrcweir tEnv.addObjRelation("XLayoutManager.Frame",xFrame); 114cdf0e10cSrcweir 115cdf0e10cSrcweir return tEnv; 116cdf0e10cSrcweir } 117cdf0e10cSrcweir } 118cdf0e10cSrcweir 119cdf0e10cSrcweir 120