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._forms;
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.FormTools;
32cdf0e10cSrcweir import util.SOfficeFactory;
33cdf0e10cSrcweir import util.WriterTools;
34cdf0e10cSrcweir 
35cdf0e10cSrcweir import com.sun.star.awt.XControlModel;
36cdf0e10cSrcweir import com.sun.star.awt.XDevice;
37cdf0e10cSrcweir import com.sun.star.awt.XGraphics;
38cdf0e10cSrcweir import com.sun.star.awt.XTextComponent;
39cdf0e10cSrcweir import com.sun.star.awt.XToolkit;
40cdf0e10cSrcweir import com.sun.star.awt.XWindow;
41cdf0e10cSrcweir import com.sun.star.awt.XWindowPeer;
42cdf0e10cSrcweir import com.sun.star.drawing.XControlShape;
43cdf0e10cSrcweir import com.sun.star.drawing.XShape;
44cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory;
45cdf0e10cSrcweir import com.sun.star.text.XTextDocument;
46cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime;
47cdf0e10cSrcweir import com.sun.star.uno.XInterface;
48cdf0e10cSrcweir import com.sun.star.util.XCloseable;
49cdf0e10cSrcweir import com.sun.star.view.XControlAccess;
50cdf0e10cSrcweir 
51cdf0e10cSrcweir 
52cdf0e10cSrcweir /**
53cdf0e10cSrcweir  * Test for object which is represented by default controller
54cdf0e10cSrcweir  * of the <code>com.sun.star.form.component.NumericField</code>
55cdf0e10cSrcweir  * component. <p>
56cdf0e10cSrcweir  *
57cdf0e10cSrcweir  * Object implements the following interfaces :
58cdf0e10cSrcweir  * <ul>
59cdf0e10cSrcweir  *  <li> <code>com::sun::star::awt::XView</code></li>
60cdf0e10cSrcweir  *  <li> <code>com::sun::star::form::XBoundControl</code></li>
61cdf0e10cSrcweir  *  <li> <code>com::sun::star::awt::XControl</code></li>
62cdf0e10cSrcweir  *  <li> <code>com::sun::star::awt::XTextComponent</code></li>
63cdf0e10cSrcweir  *  <li> <code>com::sun::star::awt::XLayoutConstrains</code></li>
64cdf0e10cSrcweir  *  <li> <code>com::sun::star::awt::XNumericField</code></li>
65cdf0e10cSrcweir  *  <li> <code>com::sun::star::awt::XTextListener</code></li>
66cdf0e10cSrcweir  *  <li> <code>com::sun::star::awt::XWindow</code></li>
67cdf0e10cSrcweir  *  <li> <code>com::sun::star::lang::XComponent</code></li>
68cdf0e10cSrcweir  *  <li> <code>com::sun::star::awt::XTextLayoutConstrains</code></li>
69cdf0e10cSrcweir  *  <li> <code>com::sun::star::lang::XEventListener</code></li>
70cdf0e10cSrcweir  * </ul> <p>
71cdf0e10cSrcweir  * This object test <b> is NOT </b> designed to be run in several
72cdf0e10cSrcweir  * threads concurently.
73cdf0e10cSrcweir  *
74cdf0e10cSrcweir  * @see com.sun.star.awt.XView
75cdf0e10cSrcweir  * @see com.sun.star.form.XBoundControl
76cdf0e10cSrcweir  * @see com.sun.star.awt.XControl
77cdf0e10cSrcweir  * @see com.sun.star.awt.XTextComponent
78cdf0e10cSrcweir  * @see com.sun.star.awt.XLayoutConstrains
79cdf0e10cSrcweir  * @see com.sun.star.awt.XNumericField
80cdf0e10cSrcweir  * @see com.sun.star.awt.XTextListener
81cdf0e10cSrcweir  * @see com.sun.star.awt.XWindow
82cdf0e10cSrcweir  * @see com.sun.star.lang.XComponent
83cdf0e10cSrcweir  * @see com.sun.star.awt.XTextLayoutConstrains
84cdf0e10cSrcweir  * @see com.sun.star.lang.XEventListener
85cdf0e10cSrcweir  * @see ifc.awt._XView
86cdf0e10cSrcweir  * @see ifc.form._XBoundControl
87cdf0e10cSrcweir  * @see ifc.awt._XControl
88cdf0e10cSrcweir  * @see ifc.awt._XTextComponent
89cdf0e10cSrcweir  * @see ifc.awt._XLayoutConstrains
90cdf0e10cSrcweir  * @see ifc.awt._XNumericField
91cdf0e10cSrcweir  * @see ifc.awt._XTextListener
92cdf0e10cSrcweir  * @see ifc.awt._XWindow
93cdf0e10cSrcweir  * @see ifc.lang._XComponent
94cdf0e10cSrcweir  * @see ifc.awt._XTextLayoutConstrains
95cdf0e10cSrcweir  * @see ifc.lang._XEventListener
96cdf0e10cSrcweir  */
97cdf0e10cSrcweir public class ONumericControl extends TestCase {
98cdf0e10cSrcweir     XTextDocument xTextDoc;
99cdf0e10cSrcweir 
100cdf0e10cSrcweir     /**
101cdf0e10cSrcweir      * Creates a new text document.
102cdf0e10cSrcweir      */
initialize(TestParameters Param, PrintWriter log)103cdf0e10cSrcweir     protected void initialize(TestParameters Param, PrintWriter log) {
104cdf0e10cSrcweir         SOfficeFactory SOF = SOfficeFactory.getFactory(((XMultiServiceFactory) Param.getMSF()));
105cdf0e10cSrcweir 
106cdf0e10cSrcweir         try {
107cdf0e10cSrcweir             log.println("creating a textdocument");
108cdf0e10cSrcweir             xTextDoc = SOF.createTextDoc(null);
109cdf0e10cSrcweir         } catch (com.sun.star.uno.Exception e) {
110cdf0e10cSrcweir             // Some exception occures.FAILED
111cdf0e10cSrcweir             e.printStackTrace(log);
112cdf0e10cSrcweir             throw new StatusException("Couldn't create document", e);
113cdf0e10cSrcweir         }
114cdf0e10cSrcweir     }
115cdf0e10cSrcweir 
116cdf0e10cSrcweir     /**
117cdf0e10cSrcweir      * Disposes the text document created before
118cdf0e10cSrcweir      */
cleanup(TestParameters tParam, PrintWriter log)119cdf0e10cSrcweir     protected void cleanup(TestParameters tParam, PrintWriter log) {
120cdf0e10cSrcweir         log.println("    disposing xTextDoc ");
121cdf0e10cSrcweir 
122cdf0e10cSrcweir         try {
123cdf0e10cSrcweir             XCloseable closer = (XCloseable) UnoRuntime.queryInterface(
124cdf0e10cSrcweir                                         XCloseable.class, xTextDoc);
125cdf0e10cSrcweir             closer.close(true);
126cdf0e10cSrcweir         } catch (com.sun.star.util.CloseVetoException e) {
127cdf0e10cSrcweir             log.println("couldn't close document");
128cdf0e10cSrcweir         } catch (com.sun.star.lang.DisposedException e) {
129cdf0e10cSrcweir             log.println("couldn't close document");
130cdf0e10cSrcweir         }
131cdf0e10cSrcweir     }
132cdf0e10cSrcweir 
133cdf0e10cSrcweir     /**
134cdf0e10cSrcweir      * Creates two components and inserts them to the form of
135cdf0e10cSrcweir      * text document. One component
136cdf0e10cSrcweir      * (<code>com.sun.star.form.component.NumericField</code>) is created
137cdf0e10cSrcweir      * for testing, another to be passed as relation. Using a controller
138cdf0e10cSrcweir      * of the text document the controller of the first component is
139cdf0e10cSrcweir      * obtained and returned in environment as a test object. <p>
140cdf0e10cSrcweir      *
141cdf0e10cSrcweir      *     Object relations created :
142cdf0e10cSrcweir      * <ul>
143cdf0e10cSrcweir      *  <li> <code>'GRAPHICS'</code> for
144cdf0e10cSrcweir      *      {@link ifc.awt._XView} : a graphics component
145cdf0e10cSrcweir      *      created using screen device of the window peer of
146cdf0e10cSrcweir      *      the controller tested. </li>
147cdf0e10cSrcweir      *  <li> <code>'CONTEXT'</code> for
148cdf0e10cSrcweir      *      {@link ifc.awt._XControl} : the text document
149cdf0e10cSrcweir      *      where the component is inserted. </li>
150cdf0e10cSrcweir      *  <li> <code>'WINPEER'</code> for
151cdf0e10cSrcweir      *      {@link ifc.awt._XControl} : Window peer of the
152cdf0e10cSrcweir      *      controller tested. </li>
153cdf0e10cSrcweir      *  <li> <code>'TOOLKIT'</code> for
154cdf0e10cSrcweir      *      {@link ifc.awt._XControl} : toolkit of the component.</li>
155cdf0e10cSrcweir      *  <li> <code>'MODEL'</code> for
156cdf0e10cSrcweir      *      {@link ifc.awt._XControl} : the model of the controller.</li>
157cdf0e10cSrcweir      *  <li> <code>'XWindow.AnotherWindow'</code> for
158cdf0e10cSrcweir      *      {@link ifc.awt._XWindow} : the controller of another
159cdf0e10cSrcweir      *      component. </li>
160cdf0e10cSrcweir      * </ul>
161cdf0e10cSrcweir      */
createTestEnvironment(TestParameters Param, PrintWriter log)162cdf0e10cSrcweir     protected TestEnvironment createTestEnvironment(TestParameters Param,
163cdf0e10cSrcweir                                                     PrintWriter log) {
164cdf0e10cSrcweir         XInterface oObj = null;
165cdf0e10cSrcweir         Object anotherCtrl = null;
166cdf0e10cSrcweir         XWindowPeer the_win = null;
167cdf0e10cSrcweir         XToolkit the_kit = null;
168cdf0e10cSrcweir         XDevice aDevice = null;
169cdf0e10cSrcweir         XGraphics aGraphic = null;
170cdf0e10cSrcweir 
171cdf0e10cSrcweir         //Insert a ControlShape and get the ControlModel
172cdf0e10cSrcweir         XControlShape aShape = FormTools.createControlShape(xTextDoc, 3000,
173cdf0e10cSrcweir                                                             4500, 15000, 10000,
174cdf0e10cSrcweir                                                             "NumericField");
175cdf0e10cSrcweir 
176cdf0e10cSrcweir         WriterTools.getDrawPage(xTextDoc).add((XShape) aShape);
177cdf0e10cSrcweir 
178cdf0e10cSrcweir         XControlModel the_Model = aShape.getControl();
179cdf0e10cSrcweir 
180cdf0e10cSrcweir         XControlShape aShape2 = FormTools.createControlShape(xTextDoc, 3000,
181cdf0e10cSrcweir                                                              4500, 5000, 10000,
182cdf0e10cSrcweir                                                              "TextField");
183cdf0e10cSrcweir 
184cdf0e10cSrcweir         WriterTools.getDrawPage(xTextDoc).add((XShape) aShape2);
185cdf0e10cSrcweir 
186cdf0e10cSrcweir         XControlModel the_Model2 = aShape2.getControl();
187cdf0e10cSrcweir 
188cdf0e10cSrcweir         //Try to query XControlAccess
189cdf0e10cSrcweir         XControlAccess the_access = (XControlAccess) UnoRuntime.queryInterface(
190cdf0e10cSrcweir                                             XControlAccess.class,
191cdf0e10cSrcweir                                             xTextDoc.getCurrentController());
192cdf0e10cSrcweir 
193cdf0e10cSrcweir         //now get the ONumericControl
194cdf0e10cSrcweir         try {
195cdf0e10cSrcweir             oObj = the_access.getControl(the_Model);
196cdf0e10cSrcweir             anotherCtrl = the_access.getControl(the_Model2);
197cdf0e10cSrcweir             the_win = the_access.getControl(the_Model).getPeer();
198cdf0e10cSrcweir             the_kit = the_win.getToolkit();
199cdf0e10cSrcweir             aDevice = the_kit.createScreenCompatibleDevice(200, 200);
200cdf0e10cSrcweir             aGraphic = aDevice.createGraphics();
201cdf0e10cSrcweir         } catch (com.sun.star.container.NoSuchElementException e) {
202cdf0e10cSrcweir             log.println("Couldn't get ONumericControl");
203cdf0e10cSrcweir             e.printStackTrace(log);
204cdf0e10cSrcweir             throw new StatusException("Couldn't get ONumericControl", e);
205cdf0e10cSrcweir         }
206cdf0e10cSrcweir 
207cdf0e10cSrcweir         log.println("creating a new environment for ONumericControl object");
208cdf0e10cSrcweir 
209cdf0e10cSrcweir         TestEnvironment tEnv = new TestEnvironment(oObj);
210cdf0e10cSrcweir 
211cdf0e10cSrcweir 
212cdf0e10cSrcweir         //Adding ObjRelation for XView
213cdf0e10cSrcweir         tEnv.addObjRelation("GRAPHICS", aGraphic);
214cdf0e10cSrcweir 
215cdf0e10cSrcweir 
216cdf0e10cSrcweir         //Adding ObjRelation for XControl
217cdf0e10cSrcweir         tEnv.addObjRelation("CONTEXT", xTextDoc);
218cdf0e10cSrcweir         tEnv.addObjRelation("WINPEER", the_win);
219cdf0e10cSrcweir         tEnv.addObjRelation("TOOLKIT", the_kit);
220cdf0e10cSrcweir         tEnv.addObjRelation("MODEL", the_Model);
221cdf0e10cSrcweir 
222cdf0e10cSrcweir         // Adding relation for XWindow
223cdf0e10cSrcweir         XWindow forObjRel = (XWindow) UnoRuntime.queryInterface(XWindow.class,
224cdf0e10cSrcweir                                                                 anotherCtrl);
225cdf0e10cSrcweir 
226cdf0e10cSrcweir         tEnv.addObjRelation("XWindow.AnotherWindow", forObjRel);
227cdf0e10cSrcweir         tEnv.addObjRelation("XWindow.ControlShape", aShape);
228cdf0e10cSrcweir 
229cdf0e10cSrcweir         // Adding relation for XTextListener
230cdf0e10cSrcweir         ifc.awt._XTextListener.TestTextListener listener =
231cdf0e10cSrcweir                 new ifc.awt._XTextListener.TestTextListener();
232cdf0e10cSrcweir         XTextComponent textComp = (XTextComponent) UnoRuntime.queryInterface(
233cdf0e10cSrcweir                                           XTextComponent.class, oObj);
234cdf0e10cSrcweir         textComp.addTextListener(listener);
235cdf0e10cSrcweir         tEnv.addObjRelation("TestTextListener", listener);
236cdf0e10cSrcweir 
237cdf0e10cSrcweir         tEnv.addObjRelation("XTextComponent.onlyNumbers", new Boolean(true));
238cdf0e10cSrcweir 
239cdf0e10cSrcweir         return tEnv;
240cdf0e10cSrcweir     } // finish method getTestEnvironment
241cdf0e10cSrcweir } // finish class ONumericControl
242