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 package mod._sw;
24cdf0e10cSrcweir 
25cdf0e10cSrcweir import com.sun.star.beans.PropertyAttribute;
26cdf0e10cSrcweir import com.sun.star.beans.XPropertySet;
27cdf0e10cSrcweir import com.sun.star.container.XIndexAccess;
28cdf0e10cSrcweir import com.sun.star.container.XNameAccess;
29cdf0e10cSrcweir import com.sun.star.container.XNameContainer;
30cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory;
31cdf0e10cSrcweir import com.sun.star.style.XStyle;
32cdf0e10cSrcweir import com.sun.star.style.XStyleFamiliesSupplier;
33cdf0e10cSrcweir import com.sun.star.text.XText;
34cdf0e10cSrcweir import com.sun.star.text.XTextCursor;
35cdf0e10cSrcweir import com.sun.star.text.XTextDocument;
36cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime;
37cdf0e10cSrcweir import com.sun.star.uno.XInterface;
38cdf0e10cSrcweir import java.io.PrintWriter;
39cdf0e10cSrcweir import lib.StatusException;
40cdf0e10cSrcweir import lib.TestCase;
41cdf0e10cSrcweir import lib.TestEnvironment;
42cdf0e10cSrcweir import lib.TestParameters;
43cdf0e10cSrcweir import util.DesktopTools;
44cdf0e10cSrcweir import util.SOfficeFactory;
45cdf0e10cSrcweir import util.utils;
46cdf0e10cSrcweir 
47cdf0e10cSrcweir 
48cdf0e10cSrcweir /**
49cdf0e10cSrcweir  * Test for object which is represented by service
50cdf0e10cSrcweir  * <code>com.sun.star.style.ParagraphStyle</code>. <p>
51cdf0e10cSrcweir  * @see com.sun.star.style.ParagraphStyle
52cdf0e10cSrcweir  */
53cdf0e10cSrcweir public class ParagraphStyle extends TestCase  {
54cdf0e10cSrcweir 
55cdf0e10cSrcweir     XTextDocument xTextDoc;
56cdf0e10cSrcweir     SOfficeFactory SOF = null;
57cdf0e10cSrcweir 
58cdf0e10cSrcweir     /**
59cdf0e10cSrcweir     * Creates text document.
60cdf0e10cSrcweir     */
initialize( TestParameters tParam, PrintWriter log )61cdf0e10cSrcweir     protected void initialize( TestParameters tParam, PrintWriter log ) {
62cdf0e10cSrcweir         SOF = SOfficeFactory.getFactory( (XMultiServiceFactory)tParam.getMSF() );
63cdf0e10cSrcweir         try {
64cdf0e10cSrcweir             log.println( "creating a textdocument" );
65cdf0e10cSrcweir             xTextDoc = SOF.createTextDoc( null );
66cdf0e10cSrcweir         } catch ( com.sun.star.uno.Exception e ) {
67cdf0e10cSrcweir             e.printStackTrace( log );
68cdf0e10cSrcweir             throw new StatusException( "Couldn't create document", e );
69cdf0e10cSrcweir         }
70cdf0e10cSrcweir     }
71cdf0e10cSrcweir 
72cdf0e10cSrcweir     /**
73cdf0e10cSrcweir     * Disposes text document.
74cdf0e10cSrcweir     */
cleanup( TestParameters tParam, PrintWriter log )75cdf0e10cSrcweir     protected void cleanup( TestParameters tParam, PrintWriter log ) {
76cdf0e10cSrcweir         log.println( "    disposing xTextDoc " );
77cdf0e10cSrcweir         DesktopTools.closeDoc(xTextDoc);
78cdf0e10cSrcweir     }
79cdf0e10cSrcweir 
createTestEnvironment(TestParameters tParam, PrintWriter log)80cdf0e10cSrcweir     protected TestEnvironment createTestEnvironment(TestParameters tParam, PrintWriter log) {
81cdf0e10cSrcweir         TestEnvironment tEnv = null;
82cdf0e10cSrcweir         XNameAccess oSFNA = null;
83cdf0e10cSrcweir         XStyle oStyle = null;
84cdf0e10cSrcweir         XStyle oMyStyle = null;
85cdf0e10cSrcweir 
86cdf0e10cSrcweir         log.println("creating a test environment");
87cdf0e10cSrcweir 
88cdf0e10cSrcweir         try {
89cdf0e10cSrcweir             log.println("getting style");
90cdf0e10cSrcweir             XStyleFamiliesSupplier oSFS = (XStyleFamiliesSupplier)
91cdf0e10cSrcweir                 UnoRuntime.queryInterface(XStyleFamiliesSupplier.class,
92cdf0e10cSrcweir                 xTextDoc);
93cdf0e10cSrcweir             XNameAccess oSF = oSFS.getStyleFamilies();
94cdf0e10cSrcweir             oSFNA = (XNameAccess) UnoRuntime.queryInterface(
95cdf0e10cSrcweir                             XNameAccess.class,oSF.getByName("ParagraphStyles"));
96cdf0e10cSrcweir             XIndexAccess oSFIA = (XIndexAccess)
97cdf0e10cSrcweir                 UnoRuntime.queryInterface(XIndexAccess.class, oSFNA);
98cdf0e10cSrcweir             String[] els = oSFNA.getElementNames();
99cdf0e10cSrcweir             oStyle = (XStyle) UnoRuntime.queryInterface(
100cdf0e10cSrcweir                            XStyle.class,oSFIA.getByIndex(1));
101cdf0e10cSrcweir         } catch ( com.sun.star.lang.WrappedTargetException e ) {
102*bb6af6bcSPedro Giffuni             log.println("Error: exception occurred.");
103cdf0e10cSrcweir             e.printStackTrace(log);
104cdf0e10cSrcweir             throw new StatusException( "Couldn't create environment ", e );
105cdf0e10cSrcweir         } catch ( com.sun.star.lang.IndexOutOfBoundsException e ) {
106*bb6af6bcSPedro Giffuni             log.println("Error: exception occurred.");
107cdf0e10cSrcweir             e.printStackTrace(log);
108cdf0e10cSrcweir             throw new StatusException( "Couldn't create environment ", e );
109cdf0e10cSrcweir         } catch ( com.sun.star.container.NoSuchElementException e ) {
110*bb6af6bcSPedro Giffuni             log.println("Error: exception occurred.");
111cdf0e10cSrcweir             e.printStackTrace(log);
112cdf0e10cSrcweir             throw new StatusException( "Couldn't create environment ", e );
113cdf0e10cSrcweir         }
114cdf0e10cSrcweir 
115cdf0e10cSrcweir         try {
116cdf0e10cSrcweir             log.print("Creating a user-defined style... ");
117cdf0e10cSrcweir             XMultiServiceFactory oMSF = (XMultiServiceFactory)
118cdf0e10cSrcweir                 UnoRuntime.queryInterface(XMultiServiceFactory.class, xTextDoc);
119cdf0e10cSrcweir             XInterface oInt = (XInterface)
120cdf0e10cSrcweir                 oMSF.createInstance("com.sun.star.style.ParagraphStyle");
121cdf0e10cSrcweir             oMyStyle = (XStyle) UnoRuntime.queryInterface(XStyle.class, oInt);
122cdf0e10cSrcweir         } catch ( com.sun.star.uno.Exception e ) {
123*bb6af6bcSPedro Giffuni             log.println("Error: exception occurred.");
124cdf0e10cSrcweir             e.printStackTrace(log);
125cdf0e10cSrcweir             throw new StatusException( "Couldn't create environment ", e );
126cdf0e10cSrcweir         }
127cdf0e10cSrcweir 
128cdf0e10cSrcweir 
129cdf0e10cSrcweir         if (oMyStyle == null)
130cdf0e10cSrcweir             log.println("FAILED");
131cdf0e10cSrcweir         else
132cdf0e10cSrcweir             log.println("OK");
133cdf0e10cSrcweir             XNameContainer oSFNC = (XNameContainer)
134cdf0e10cSrcweir             UnoRuntime.queryInterface(XNameContainer.class, oSFNA);
135cdf0e10cSrcweir 
136cdf0e10cSrcweir         try {
137cdf0e10cSrcweir             if ( oSFNC.hasByName("My Style") )
138cdf0e10cSrcweir                 oSFNC.removeByName("My Style");
139cdf0e10cSrcweir             oSFNC.insertByName("My Style", oMyStyle);
140cdf0e10cSrcweir         } catch ( com.sun.star.lang.WrappedTargetException e ) {
141cdf0e10cSrcweir             e.printStackTrace(log);
142cdf0e10cSrcweir             throw new StatusException( "Couldn't create environment ", e );
143cdf0e10cSrcweir         } catch     ( com.sun.star.lang.IllegalArgumentException e ) {
144cdf0e10cSrcweir             e.printStackTrace(log);
145cdf0e10cSrcweir             throw new StatusException( "Couldn't create environment ", e );
146cdf0e10cSrcweir         } catch ( com.sun.star.container.NoSuchElementException e ) {
147cdf0e10cSrcweir             e.printStackTrace(log);
148cdf0e10cSrcweir             throw new StatusException( "Couldn't create environment ", e );
149cdf0e10cSrcweir         } catch ( com.sun.star.container.ElementExistException e ) {
150cdf0e10cSrcweir             e.printStackTrace(log);
151cdf0e10cSrcweir             throw new StatusException( "Couldn't create environment ", e );
152cdf0e10cSrcweir         }
153cdf0e10cSrcweir 
154cdf0e10cSrcweir         XText oText = xTextDoc.getText();
155cdf0e10cSrcweir         XTextCursor oCursor = oText.createTextCursor();
156cdf0e10cSrcweir         XPropertySet xProp = (XPropertySet)
157cdf0e10cSrcweir             UnoRuntime.queryInterface(XPropertySet.class, oCursor);
158cdf0e10cSrcweir 
159cdf0e10cSrcweir         try {
160cdf0e10cSrcweir             xProp.setPropertyValue("ParaStyleName", oMyStyle.getName());
161cdf0e10cSrcweir         } catch ( com.sun.star.lang.WrappedTargetException e ) {
162cdf0e10cSrcweir             e.printStackTrace( log );
163cdf0e10cSrcweir             throw new StatusException( "Couldn't create environment ", e );
164cdf0e10cSrcweir         } catch ( com.sun.star.lang.IllegalArgumentException e ) {
165cdf0e10cSrcweir             e.printStackTrace( log );
166cdf0e10cSrcweir             throw new StatusException( "Couldn't create environment ", e );
167cdf0e10cSrcweir         } catch ( com.sun.star.beans.PropertyVetoException e ) {
168cdf0e10cSrcweir             e.printStackTrace( log );
169cdf0e10cSrcweir             throw new StatusException( "Couldn't create environment ", e );
170cdf0e10cSrcweir         } catch ( com.sun.star.beans.UnknownPropertyException e ) {
171cdf0e10cSrcweir             e.printStackTrace( log );
172cdf0e10cSrcweir             throw new StatusException( "Couldn't create environment ", e );
173cdf0e10cSrcweir         }
174cdf0e10cSrcweir 
175cdf0e10cSrcweir         log.println("creating a new environment for object");
176cdf0e10cSrcweir         tEnv = new TestEnvironment(oMyStyle);
177cdf0e10cSrcweir         tEnv.addObjRelation("PoolStyle", oStyle);
178cdf0e10cSrcweir 
179cdf0e10cSrcweir         XPropertySet xStyleProp = (XPropertySet)
180cdf0e10cSrcweir             UnoRuntime.queryInterface(XPropertySet.class, oMyStyle);
181cdf0e10cSrcweir         short exclude = PropertyAttribute.MAYBEVOID + PropertyAttribute.READONLY;
182cdf0e10cSrcweir         String[] names = utils.getFilteredPropertyNames(xStyleProp, (short)0, exclude);
183cdf0e10cSrcweir         tEnv.addObjRelation("PropertyNames", names);
184cdf0e10cSrcweir 
185cdf0e10cSrcweir         return tEnv;
186cdf0e10cSrcweir     }
187cdf0e10cSrcweir 
188cdf0e10cSrcweir }
189