tdf#130857 qt weld: Introduce QtInstanceScrolledWindow
[LibreOffice.git] / qadevOOo / tests / java / mod / _sch / AccArea.java
blob19cf04550b176db032ed3819fa33a0a0b2dc172d
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._sch;
20 import java.io.PrintWriter;
22 import lib.TestCase;
23 import lib.TestEnvironment;
24 import lib.TestParameters;
25 import util.AccessibilityTools;
26 import util.SOfficeFactory;
27 import util.utils;
29 import com.sun.star.accessibility.AccessibleRole;
30 import com.sun.star.accessibility.XAccessible;
31 import com.sun.star.accessibility.XAccessibleComponent;
32 import com.sun.star.accessibility.XAccessibleContext;
33 import com.sun.star.awt.XWindow;
34 import com.sun.star.chart.XChartDocument;
35 import com.sun.star.frame.XModel;
36 import com.sun.star.uno.UnoRuntime;
37 import com.sun.star.uno.XInterface;
39 public class AccArea extends TestCase {
41 XChartDocument xChartDoc = null;
43 @Override
44 protected TestEnvironment createTestEnvironment(
45 TestParameters Param, PrintWriter log) throws Exception {
47 if (xChartDoc != null) cleanup(Param, log);
48 log.println( "creating a chart document" );
49 SOfficeFactory SOF = SOfficeFactory.getFactory( Param.getMSF());
50 log.println( "creating a chartdocument" );
51 xChartDoc = SOF.createChartDoc();
53 XInterface oObj = null;
55 XModel aModel = UnoRuntime.queryInterface(XModel.class, xChartDoc);
57 XWindow xWindow = AccessibilityTools.getCurrentWindow(aModel);
58 XAccessible xRoot = AccessibilityTools.getAccessibleObject(xWindow);
60 AccessibilityTools.printAccessibleTree(log, xRoot, Param.getBool(util.PropertyName.DEBUG_IS_ACTIVE));
62 XAccessibleContext cont = AccessibilityTools.getAccessibleObjectForRole(
63 xRoot, AccessibleRole.SHAPE, "", "AccArea");
66 oObj = cont;
68 log.println("ImplementationName " + utils.getImplName(oObj));
69 log.println("AccessibleName " + cont.getAccessibleName());
71 TestEnvironment tEnv = new TestEnvironment(oObj);
73 final XAccessibleComponent acc = UnoRuntime.queryInterface(
74 XAccessibleComponent.class,oObj);
75 tEnv.addObjRelation("EventProducer",
76 new ifc.accessibility._XAccessibleEventBroadcaster.EventProducer() {
77 public void fireEvent() {
78 acc.grabFocus();
80 });
82 return tEnv;
86 /**
87 * Called while disposing a <code>TestEnvironment</code>.
88 * Disposes text document.
89 * @param Param test parameters
90 * @param log writer to log information while testing
92 @Override
93 protected void cleanup( TestParameters Param, PrintWriter log) {
94 if( xChartDoc!=null ) {
95 log.println( " closing xChartDoc" );
96 util.DesktopTools.closeDoc(xChartDoc);
97 xChartDoc = null;