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._toolkit; 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 import util.utils; 35cdf0e10cSrcweir 36cdf0e10cSrcweir import com.sun.star.awt.XControl; 37cdf0e10cSrcweir import com.sun.star.awt.XControlModel; 38cdf0e10cSrcweir import com.sun.star.awt.XDevice; 39cdf0e10cSrcweir import com.sun.star.awt.XGraphics; 40cdf0e10cSrcweir import com.sun.star.awt.XTextComponent; 41cdf0e10cSrcweir import com.sun.star.awt.XToolkit; 42cdf0e10cSrcweir import com.sun.star.awt.XWindow; 43cdf0e10cSrcweir import com.sun.star.awt.XWindowPeer; 44cdf0e10cSrcweir import com.sun.star.drawing.XControlShape; 45cdf0e10cSrcweir import com.sun.star.drawing.XShape; 46cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory; 47cdf0e10cSrcweir import com.sun.star.text.XTextDocument; 48cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime; 49cdf0e10cSrcweir import com.sun.star.uno.XInterface; 50cdf0e10cSrcweir import com.sun.star.util.XCloseable; 51cdf0e10cSrcweir import com.sun.star.view.XControlAccess; 52cdf0e10cSrcweir 53cdf0e10cSrcweir 54cdf0e10cSrcweir public class UnoControlNumericField extends TestCase { 55cdf0e10cSrcweir private static XTextDocument xTextDoc; 56cdf0e10cSrcweir 57cdf0e10cSrcweir protected void initialize(TestParameters Param, PrintWriter log) { 58cdf0e10cSrcweir SOfficeFactory SOF = SOfficeFactory.getFactory( (XMultiServiceFactory) Param.getMSF()); 59cdf0e10cSrcweir 60cdf0e10cSrcweir try { 61cdf0e10cSrcweir log.println("creating a textdocument"); 62cdf0e10cSrcweir xTextDoc = SOF.createTextDoc(null); 63cdf0e10cSrcweir } catch (com.sun.star.uno.Exception e) { 64cdf0e10cSrcweir // Some exception occures.FAILED 65cdf0e10cSrcweir e.printStackTrace(log); 66cdf0e10cSrcweir throw new StatusException("Couldn't create document", e); 67cdf0e10cSrcweir } 68cdf0e10cSrcweir } 69cdf0e10cSrcweir 70cdf0e10cSrcweir protected void cleanup(TestParameters tParam, PrintWriter log) { 71cdf0e10cSrcweir log.println(" disposing xTextDoc "); 72cdf0e10cSrcweir 73cdf0e10cSrcweir try { 74cdf0e10cSrcweir XCloseable closer = (XCloseable) UnoRuntime.queryInterface( 75cdf0e10cSrcweir XCloseable.class, xTextDoc); 76cdf0e10cSrcweir closer.close(true); 77cdf0e10cSrcweir } catch (com.sun.star.util.CloseVetoException e) { 78cdf0e10cSrcweir log.println("couldn't close document"); 79cdf0e10cSrcweir } catch (com.sun.star.lang.DisposedException e) { 80cdf0e10cSrcweir log.println("couldn't close document"); 81cdf0e10cSrcweir } 82cdf0e10cSrcweir } 83cdf0e10cSrcweir 84cdf0e10cSrcweir protected TestEnvironment createTestEnvironment(TestParameters Param, 85cdf0e10cSrcweir PrintWriter log) { 86cdf0e10cSrcweir XInterface oObj = null; 87cdf0e10cSrcweir XWindowPeer the_win = null; 88cdf0e10cSrcweir XToolkit the_kit = null; 89cdf0e10cSrcweir XDevice aDevice = null; 90cdf0e10cSrcweir XGraphics aGraphic = null; 91cdf0e10cSrcweir XControl aControl = null; 92cdf0e10cSrcweir 93cdf0e10cSrcweir //Insert a ControlShape and get the ControlModel 94cdf0e10cSrcweir XControlShape aShape = FormTools.createUnoControlShape(xTextDoc, 3000, 95cdf0e10cSrcweir 4500, 15000, 96cdf0e10cSrcweir 10000, 97cdf0e10cSrcweir "NumericField", 98cdf0e10cSrcweir "UnoControlNumericField"); 99cdf0e10cSrcweir 100cdf0e10cSrcweir WriterTools.getDrawPage(xTextDoc).add((XShape) aShape); 101cdf0e10cSrcweir 102cdf0e10cSrcweir XControlModel the_Model = aShape.getControl(); 103cdf0e10cSrcweir 104cdf0e10cSrcweir XControlShape aShape2 = FormTools.createControlShape(xTextDoc, 3000, 105cdf0e10cSrcweir 4500, 5000, 10000, 106cdf0e10cSrcweir "TextField"); 107cdf0e10cSrcweir 108cdf0e10cSrcweir WriterTools.getDrawPage(xTextDoc).add((XShape) aShape2); 109cdf0e10cSrcweir 110cdf0e10cSrcweir XControlModel the_Model2 = aShape2.getControl(); 111cdf0e10cSrcweir 112cdf0e10cSrcweir //Try to query XControlAccess 113cdf0e10cSrcweir XControlAccess the_access = (XControlAccess) UnoRuntime.queryInterface( 114cdf0e10cSrcweir XControlAccess.class, 115cdf0e10cSrcweir xTextDoc.getCurrentController()); 116cdf0e10cSrcweir 117cdf0e10cSrcweir //get the NumericFieldControl for the needed Object relations 118cdf0e10cSrcweir try { 119cdf0e10cSrcweir oObj = the_access.getControl(the_Model); 120cdf0e10cSrcweir aControl = the_access.getControl(the_Model2); 121cdf0e10cSrcweir the_win = the_access.getControl(the_Model).getPeer(); 122cdf0e10cSrcweir the_kit = the_win.getToolkit(); 123cdf0e10cSrcweir aDevice = the_kit.createScreenCompatibleDevice(200, 200); 124cdf0e10cSrcweir aGraphic = aDevice.createGraphics(); 125cdf0e10cSrcweir } catch (Exception e) { 126cdf0e10cSrcweir log.println("Couldn't get NumericFieldControl"); 127cdf0e10cSrcweir e.printStackTrace(log); 128cdf0e10cSrcweir throw new StatusException("Couldn't get NumericFieldControl", e); 129cdf0e10cSrcweir } 130cdf0e10cSrcweir 131cdf0e10cSrcweir log.println( 132cdf0e10cSrcweir "creating a new environment for UnoControlNumericField object"); 133cdf0e10cSrcweir 134cdf0e10cSrcweir TestEnvironment tEnv = new TestEnvironment(oObj); 135cdf0e10cSrcweir 136cdf0e10cSrcweir 137cdf0e10cSrcweir //Adding ObjRelation for XView 138cdf0e10cSrcweir tEnv.addObjRelation("GRAPHICS", aGraphic); 139cdf0e10cSrcweir 140cdf0e10cSrcweir 141cdf0e10cSrcweir //Adding ObjRelation for XControl 142cdf0e10cSrcweir tEnv.addObjRelation("CONTEXT", xTextDoc); 143cdf0e10cSrcweir tEnv.addObjRelation("WINPEER", the_win); 144cdf0e10cSrcweir tEnv.addObjRelation("TOOLKIT", the_kit); 145cdf0e10cSrcweir tEnv.addObjRelation("MODEL", the_Model); 146cdf0e10cSrcweir 147cdf0e10cSrcweir XWindow forObjRel = (XWindow) UnoRuntime.queryInterface(XWindow.class, 148cdf0e10cSrcweir aControl); 149cdf0e10cSrcweir 150cdf0e10cSrcweir tEnv.addObjRelation("XWindow.AnotherWindow", forObjRel); 151cdf0e10cSrcweir tEnv.addObjRelation("XWindow.ControlShape", aShape); 152cdf0e10cSrcweir 153cdf0e10cSrcweir // Adding relation for XTextListener 154cdf0e10cSrcweir ifc.awt._XTextListener.TestTextListener listener = 155cdf0e10cSrcweir new ifc.awt._XTextListener.TestTextListener(); 156cdf0e10cSrcweir XTextComponent textComp = (XTextComponent) UnoRuntime.queryInterface( 157cdf0e10cSrcweir XTextComponent.class, oObj); 158cdf0e10cSrcweir textComp.addTextListener(listener); 159cdf0e10cSrcweir tEnv.addObjRelation("TestTextListener", listener); 160cdf0e10cSrcweir 161cdf0e10cSrcweir tEnv.addObjRelation("XTextComponent.onlyNumbers", ""); 162cdf0e10cSrcweir 163cdf0e10cSrcweir log.println("ImplementationName: " + utils.getImplName(oObj)); 164cdf0e10cSrcweir 165cdf0e10cSrcweir return tEnv; 166cdf0e10cSrcweir } // finish method getTestEnvironment 167cdf0e10cSrcweir } // finish class UnoControlNumericField 168