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