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 10cdf0e10cSrcweir * 11*ef39d40dSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 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. 19cdf0e10cSrcweir * 20*ef39d40dSAndrew Rist *************************************************************/ 21*ef39d40dSAndrew Rist 22*ef39d40dSAndrew Rist 23cdf0e10cSrcweir package mod._toolkit; 24cdf0e10cSrcweir 25cdf0e10cSrcweir import com.sun.star.awt.XControl; 26cdf0e10cSrcweir import com.sun.star.awt.XControlContainer; 27cdf0e10cSrcweir import com.sun.star.awt.XControlModel; 28cdf0e10cSrcweir import com.sun.star.awt.XTabControllerModel; 29cdf0e10cSrcweir import com.sun.star.drawing.XControlShape; 30cdf0e10cSrcweir import com.sun.star.drawing.XShape; 31cdf0e10cSrcweir import com.sun.star.form.XForm; 32cdf0e10cSrcweir import com.sun.star.lang.XMultiServiceFactory; 33cdf0e10cSrcweir import com.sun.star.text.XTextDocument; 34cdf0e10cSrcweir import com.sun.star.uno.AnyConverter; 35cdf0e10cSrcweir import com.sun.star.uno.Type; 36cdf0e10cSrcweir import com.sun.star.uno.UnoRuntime; 37cdf0e10cSrcweir import com.sun.star.uno.XInterface; 38cdf0e10cSrcweir import com.sun.star.view.XControlAccess; 39cdf0e10cSrcweir 40cdf0e10cSrcweir import java.io.PrintWriter; 41cdf0e10cSrcweir 42cdf0e10cSrcweir import lib.StatusException; 43cdf0e10cSrcweir import lib.TestCase; 44cdf0e10cSrcweir import lib.TestEnvironment; 45cdf0e10cSrcweir import lib.TestParameters; 46cdf0e10cSrcweir 47cdf0e10cSrcweir import util.FormTools; 48cdf0e10cSrcweir import util.WriterTools; 49cdf0e10cSrcweir import util.utils; 50cdf0e10cSrcweir 51cdf0e10cSrcweir 52cdf0e10cSrcweir public class TabController extends TestCase { 53cdf0e10cSrcweir private static XTextDocument xTextDoc = null; 54cdf0e10cSrcweir initialize(TestParameters param, PrintWriter log)55cdf0e10cSrcweir protected void initialize(TestParameters param, PrintWriter log) { 56cdf0e10cSrcweir try { 57cdf0e10cSrcweir log.println("creating a textdocument"); 58cdf0e10cSrcweir xTextDoc = WriterTools.createTextDoc( 59cdf0e10cSrcweir (XMultiServiceFactory) param.getMSF()); 60cdf0e10cSrcweir } catch (Exception e) { 61cdf0e10cSrcweir // Some exception occures.FAILED 62cdf0e10cSrcweir e.printStackTrace(log); 63cdf0e10cSrcweir throw new StatusException("Couldn't create document", e); 64cdf0e10cSrcweir } 65cdf0e10cSrcweir } 66cdf0e10cSrcweir cleanup(TestParameters param, PrintWriter log)67cdf0e10cSrcweir protected void cleanup(TestParameters param, PrintWriter log) { 68cdf0e10cSrcweir log.println("disposing xTextDoc"); 69cdf0e10cSrcweir util.DesktopTools.closeDoc(xTextDoc); 70cdf0e10cSrcweir } 71cdf0e10cSrcweir createTestEnvironment(TestParameters param, PrintWriter log)72cdf0e10cSrcweir public TestEnvironment createTestEnvironment(TestParameters param, 73cdf0e10cSrcweir PrintWriter log) { 74cdf0e10cSrcweir XInterface oObj = null; 75cdf0e10cSrcweir XControl xCtrl1 = null; 76cdf0e10cSrcweir XTabControllerModel tabCtrlModel = null; 77cdf0e10cSrcweir XControlContainer aCtrlContainer = null; 78cdf0e10cSrcweir 79cdf0e10cSrcweir 80cdf0e10cSrcweir // create object relations 81cdf0e10cSrcweir FormTools.insertForm(xTextDoc, 82cdf0e10cSrcweir FormTools.getForms(WriterTools.getDrawPage( 83cdf0e10cSrcweir xTextDoc)), "MyForm"); 84cdf0e10cSrcweir 85cdf0e10cSrcweir XControlShape aShape = FormTools.createUnoControlShape(xTextDoc, 3000, 86cdf0e10cSrcweir 4500, 15000, 87cdf0e10cSrcweir 10000, 88cdf0e10cSrcweir "CommandButton", 89cdf0e10cSrcweir "UnoControlButton"); 90cdf0e10cSrcweir WriterTools.getDrawPage(xTextDoc).add((XShape) aShape); 91cdf0e10cSrcweir 92cdf0e10cSrcweir XControlModel model = aShape.getControl(); 93cdf0e10cSrcweir XControlAccess access = (XControlAccess) UnoRuntime.queryInterface( 94cdf0e10cSrcweir XControlAccess.class, 95cdf0e10cSrcweir xTextDoc.getCurrentController()); 96cdf0e10cSrcweir 97cdf0e10cSrcweir try { 98cdf0e10cSrcweir xCtrl1 = access.getControl(model); 99cdf0e10cSrcweir } catch (Exception e) { 100cdf0e10cSrcweir } 101cdf0e10cSrcweir 102cdf0e10cSrcweir XForm form = null; 103cdf0e10cSrcweir 104cdf0e10cSrcweir try { 105cdf0e10cSrcweir form = (XForm) AnyConverter.toObject(new Type(XForm.class), 106cdf0e10cSrcweir (FormTools.getForms( 107cdf0e10cSrcweir WriterTools.getDrawPage( 108cdf0e10cSrcweir xTextDoc))) 109cdf0e10cSrcweir .getByName("MyForm")); 110cdf0e10cSrcweir } catch (Exception e) { 111cdf0e10cSrcweir log.println("Couldn't get Form"); 112cdf0e10cSrcweir e.printStackTrace(log); 113cdf0e10cSrcweir } 114cdf0e10cSrcweir 115cdf0e10cSrcweir tabCtrlModel = (XTabControllerModel) UnoRuntime.queryInterface( 116cdf0e10cSrcweir XTabControllerModel.class, form); 117cdf0e10cSrcweir 118cdf0e10cSrcweir aCtrlContainer = (XControlContainer) UnoRuntime.queryInterface( 119cdf0e10cSrcweir XControlContainer.class, xCtrl1.getContext()); 120cdf0e10cSrcweir 121cdf0e10cSrcweir // create object 122cdf0e10cSrcweir try { 123cdf0e10cSrcweir oObj = (XInterface) ((XMultiServiceFactory) param.getMSF()).createInstance( 124cdf0e10cSrcweir "com.sun.star.awt.TabController"); 125cdf0e10cSrcweir } catch (Exception e) { 126cdf0e10cSrcweir } 127cdf0e10cSrcweir 128cdf0e10cSrcweir TestEnvironment tEnv = new TestEnvironment(oObj); 129cdf0e10cSrcweir 130cdf0e10cSrcweir String objName = "TabController"; 131cdf0e10cSrcweir tEnv.addObjRelation("OBJNAME", "toolkit." + objName); 132cdf0e10cSrcweir tEnv.addObjRelation("MODEL", tabCtrlModel); 133cdf0e10cSrcweir tEnv.addObjRelation("CONTAINER", aCtrlContainer); 134cdf0e10cSrcweir System.out.println("ImplementationName: " + utils.getImplName(oObj)); 135cdf0e10cSrcweir 136cdf0e10cSrcweir return tEnv; 137cdf0e10cSrcweir } 138cdf0e10cSrcweir } 139