bump product version to 5.0.4.1
[LibreOffice.git] / qadevOOo / tests / java / mod / _toolkit / UnoControlImageControl.java
blob1bf267dec6d50f0e109250f4c8eeb8c4ec7f9abd
1 /*
2 * This file is part of the LibreOffice project.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 * This file incorporates work covered by the following license notice:
10 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * contributor license agreements. See the NOTICE file distributed
12 * with this work for additional information regarding copyright
13 * ownership. The ASF licenses this file to you under the Apache
14 * License, Version 2.0 (the "License"); you may not use this file
15 * except in compliance with the License. You may obtain a copy of
16 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 package mod._toolkit;
20 import com.sun.star.awt.XControl;
21 import com.sun.star.awt.XControlModel;
22 import com.sun.star.awt.XDevice;
23 import com.sun.star.awt.XGraphics;
24 import com.sun.star.awt.XToolkit;
25 import com.sun.star.awt.XWindow;
26 import com.sun.star.awt.XWindowPeer;
27 import com.sun.star.beans.XPropertySet;
28 import com.sun.star.drawing.XControlShape;
29 import com.sun.star.text.XTextDocument;
30 import com.sun.star.uno.UnoRuntime;
31 import com.sun.star.uno.XInterface;
32 import com.sun.star.view.XControlAccess;
34 import java.io.PrintWriter;
36 import lib.StatusException;
37 import lib.TestCase;
38 import lib.TestEnvironment;
39 import lib.TestParameters;
41 import util.FormTools;
42 import util.SOfficeFactory;
43 import util.WriterTools;
44 import util.utils;
47 public class UnoControlImageControl extends TestCase {
48 private static XTextDocument xTextDoc;
50 @Override
51 protected void initialize(TestParameters Param, PrintWriter log) {
52 SOfficeFactory SOF = SOfficeFactory.getFactory(
53 Param.getMSF());
55 try {
56 log.println("creating a textdocument");
57 xTextDoc = SOF.createTextDoc(null);
58 } catch (com.sun.star.uno.Exception e) {
59 // Some exception occurs.FAILED
60 e.printStackTrace(log);
61 throw new StatusException("Couldn't create document", e);
65 @Override
66 protected void cleanup(TestParameters tParam, PrintWriter log) {
67 log.println(" disposing xTextDoc ");
69 util.DesktopTools.closeDoc(xTextDoc);
72 @Override
73 protected TestEnvironment createTestEnvironment(TestParameters Param,
74 PrintWriter log) {
75 XInterface oObj = null;
76 XWindowPeer the_win = null;
77 XToolkit the_kit = null;
78 XDevice aDevice = null;
79 XGraphics aGraphic = null;
80 XControl aControl = null;
82 //Insert a ControlShape and get the ControlModel
83 XControlShape aShape = FormTools.createUnoControlShape(xTextDoc, 3000,
84 4500, 15000,
85 10000,
86 "DatabaseImageControl",
87 "UnoControlImageControl");
89 WriterTools.getDrawPage(xTextDoc).add(aShape);
91 XControlModel the_Model = aShape.getControl();
93 XPropertySet xPS = UnoRuntime.queryInterface(
94 XPropertySet.class, the_Model);
96 XControlShape aShape2 = FormTools.createControlShape(xTextDoc, 3000,
97 4500, 5000, 10000,
98 "TextField");
100 WriterTools.getDrawPage(xTextDoc).add(aShape2);
102 XControlModel the_Model2 = aShape2.getControl();
104 //Try to query XControlAccess
105 XControlAccess the_access = UnoRuntime.queryInterface(
106 XControlAccess.class,
107 xTextDoc.getCurrentController());
109 //get the ImageControlControl for the needed Object relations
110 try {
111 oObj = the_access.getControl(the_Model);
112 aControl = the_access.getControl(the_Model2);
113 the_win = the_access.getControl(the_Model).getPeer();
114 the_kit = the_win.getToolkit();
115 aDevice = the_kit.createScreenCompatibleDevice(200, 200);
116 aGraphic = aDevice.createGraphics();
118 String imgUrl = util.utils.getFullTestURL("poliball.gif");
120 xPS.setPropertyValue("ImageURL", imgUrl);
121 } catch (com.sun.star.uno.Exception e) {
122 log.println("Couldn't get ImageControlControl");
123 e.printStackTrace(log);
124 throw new StatusException("Couldn't get ImageControlControl", e);
127 log.println(
128 "creating a new environment for UnoControlImageControl object");
130 TestEnvironment tEnv = new TestEnvironment(oObj);
133 //Adding ObjRelation for XView
134 tEnv.addObjRelation("GRAPHICS", aGraphic);
137 //Adding ObjRelation for XControl
138 tEnv.addObjRelation("CONTEXT", xTextDoc);
139 tEnv.addObjRelation("WINPEER", the_win);
140 tEnv.addObjRelation("TOOLKIT", the_kit);
141 tEnv.addObjRelation("MODEL", the_Model);
143 XWindow forObjRel = UnoRuntime.queryInterface(XWindow.class,
144 aControl);
146 tEnv.addObjRelation("XWindow.AnotherWindow", forObjRel);
148 System.out.println("ImplementationName: " + utils.getImplName(oObj));
150 return tEnv;
151 } // finish method getTestEnvironment
152 } // finish class UnoControlImageControl