/* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * 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 . */ package mod._sd; import java.io.PrintWriter; import lib.TestCase; import lib.TestEnvironment; import lib.TestParameters; import util.SOfficeFactory; import com.sun.star.beans.XPropertySet; import com.sun.star.container.XIndexAccess; import com.sun.star.drawing.XDrawPage; import com.sun.star.drawing.XDrawPages; import com.sun.star.drawing.XDrawPagesSupplier; import com.sun.star.drawing.XShape; import com.sun.star.drawing.XShapes; import com.sun.star.lang.XComponent; import com.sun.star.style.XStyle; import com.sun.star.uno.AnyConverter; import com.sun.star.uno.Type; import com.sun.star.uno.UnoRuntime; import com.sun.star.uno.XInterface; /** * Test for object which is represented by service * com.sun.star.drawing.Shape.

* Object implements the following interfaces : *

* @see com.sun.star.lang.XComponent * @see com.sun.star.drawing.XShape * @see com.sun.star.drawing.XShapeDescriptor * @see com.sun.star.beans.XPropertySet * @see com.sun.star.drawing.Shape * @see ifc.lang._XComponent * @see ifc.drawing._XShape * @see ifc.drawing._XShapeDescriptor * @see ifc.beans._XPropertySet * @see ifc.drawing._Shape */ public class SdXShape extends TestCase { XComponent xDrawDoc; /** * Creates Drawing document. */ @Override protected void initialize(TestParameters Param, PrintWriter log) throws Exception { // get a soffice factory object SOfficeFactory SOF = SOfficeFactory.getFactory( Param.getMSF()); log.println( "creating a draw document" ); xDrawDoc = SOF.createDrawDoc(null); } /** * Disposes Drawing document. */ @Override protected void cleanup( TestParameters Param, PrintWriter log) { log.println("disposing xDrawDoc"); util.DesktopTools.closeDoc(xDrawDoc); } /** * Creating a TestEnvironment for the interfaces to be tested. * Retrieves the collection of the draw pages from the drawing document using * the interface XDrawPagesSupplier. Creates a rectangle shape * that is the instance of the service com.sun.star.drawing.Shape. * Creates and adds several new rectangle shapes and one ellipse shape to * the retrieved draw page. Sets and gets some properties of the created * rectangle shape. * Object relations created : * * @see com.sun.star.drawing.XDrawPagesSupplier * @see com.sun.star.drawing.Shape */ @Override protected TestEnvironment createTestEnvironment( TestParameters Param, PrintWriter log) throws Exception { log.println( "creating a test environment" ); // get a soffice factory object SOfficeFactory SOF = SOfficeFactory.getFactory( Param.getMSF()); // get the drawpage of drawing here log.println( "getting Drawpage" ); XDrawPagesSupplier oDPS = UnoRuntime.queryInterface(XDrawPagesSupplier.class, xDrawDoc); XDrawPages oDPn = oDPS.getDrawPages(); XIndexAccess oDPi = UnoRuntime.queryInterface(XIndexAccess.class, oDPn); XDrawPage oDP = (XDrawPage) AnyConverter.toObject( new Type(XDrawPage.class),oDPi.getByIndex(0)); //get a Shape log.println( "getting Shape" ); XShapes oShapes = UnoRuntime.queryInterface (XShapes.class, oDP); XInterface oObj = SOF.createShape (xDrawDoc, 5000, 3500, 7500, 5000, "Rectangle"); for (int i=0; i < 10; i++) { oShapes.add( SOF.createShape(xDrawDoc, 5000, 3500, 7510 + 10 * i, 5010 + 10 * i, "Rectangle")); } XShape oShape = SOF.createShape (xDrawDoc, 3000, 4500, 15000, 1000, "Ellipse"); oShapes.add((XShape) oObj); oShapes.add(oShape); log.println( "creating a new environment for XShape object" ); TestEnvironment tEnv = new TestEnvironment( oObj ); log.println( "adding two style as ObjRelation for ShapeDescriptor" ); XPropertySet oShapeProps = UnoRuntime.queryInterface(XPropertySet.class, oObj); XStyle aStyle = null; aStyle = (XStyle) AnyConverter.toObject( new Type(XStyle.class),oShapeProps.getPropertyValue("Style")); oShapeProps.setPropertyValue("ZOrder", Integer.valueOf(1)); tEnv.addObjRelation("Style1", aStyle); oShapeProps = UnoRuntime.queryInterface(XPropertySet.class, oShape); aStyle = (XStyle) AnyConverter.toObject( new Type(XStyle.class),oShapeProps.getPropertyValue("Style")); tEnv.addObjRelation("Style2", aStyle); return tEnv; } // finish method createTestEnvironment } // finish class SdXShape