2003-01-27 17:20:08 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 16:52:29 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2003-01-27 17:20:08 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2003-01-27 17:20:08 +00:00
|
|
|
*
|
2008-04-10 16:52:29 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2003-01-27 17:20:08 +00:00
|
|
|
*
|
2008-04-10 16:52:29 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2003-01-27 17:20:08 +00:00
|
|
|
*
|
2008-04-10 16:52:29 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2003-01-27 17:20:08 +00:00
|
|
|
*
|
2008-04-10 16:52:29 +00:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2003-01-27 17:20:08 +00:00
|
|
|
*
|
2008-04-10 16:52:29 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2003-01-27 17:20:08 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
package mod._sc;
|
|
|
|
|
|
|
|
import java.io.PrintWriter;
|
2003-09-08 11:02:42 +00:00
|
|
|
|
|
|
|
import lib.Status;
|
2003-01-27 17:20:08 +00:00
|
|
|
import lib.StatusException;
|
2003-09-08 11:02:42 +00:00
|
|
|
import lib.TestCase;
|
2003-01-27 17:20:08 +00:00
|
|
|
import lib.TestEnvironment;
|
2003-09-08 11:02:42 +00:00
|
|
|
import lib.TestParameters;
|
|
|
|
import util.AccessibilityTools;
|
|
|
|
import util.SOfficeFactory;
|
2003-01-27 17:20:08 +00:00
|
|
|
import util.utils;
|
2003-09-08 11:02:42 +00:00
|
|
|
|
|
|
|
import com.sun.star.accessibility.AccessibleRole;
|
|
|
|
import com.sun.star.accessibility.XAccessible;
|
2003-01-27 17:20:08 +00:00
|
|
|
import com.sun.star.awt.XWindow;
|
2003-09-08 11:02:42 +00:00
|
|
|
import com.sun.star.container.XIndexAccess;
|
2003-01-27 17:20:08 +00:00
|
|
|
import com.sun.star.frame.XController;
|
2003-09-08 11:02:42 +00:00
|
|
|
import com.sun.star.frame.XDispatch;
|
2003-01-27 17:20:08 +00:00
|
|
|
import com.sun.star.frame.XDispatchProvider;
|
2003-09-08 11:02:42 +00:00
|
|
|
import com.sun.star.frame.XModel;
|
|
|
|
import com.sun.star.lang.XComponent;
|
|
|
|
import com.sun.star.lang.XMultiServiceFactory;
|
2003-01-27 17:20:08 +00:00
|
|
|
import com.sun.star.sheet.XSpreadsheet;
|
2003-09-08 11:02:42 +00:00
|
|
|
import com.sun.star.sheet.XSpreadsheetDocument;
|
|
|
|
import com.sun.star.sheet.XSpreadsheets;
|
2003-01-27 17:20:08 +00:00
|
|
|
import com.sun.star.table.XCell;
|
2003-01-31 12:41:55 +00:00
|
|
|
import com.sun.star.uno.AnyConverter;
|
|
|
|
import com.sun.star.uno.Type;
|
2003-09-08 11:02:42 +00:00
|
|
|
import com.sun.star.uno.UnoRuntime;
|
|
|
|
import com.sun.star.uno.XInterface;
|
|
|
|
import com.sun.star.util.URL;
|
|
|
|
import com.sun.star.util.XURLTransformer;
|
2003-01-27 17:20:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Object implements the following interfaces:
|
|
|
|
* <ul>
|
2005-03-01 19:28:46 +00:00
|
|
|
* <li> <code>::com::sun::star::accessibility::XAccessibleComponent</code>
|
2003-01-27 17:20:08 +00:00
|
|
|
* </li>
|
2005-03-01 19:28:46 +00:00
|
|
|
* <li> <code>::com::sun::star::accessibility::XAccessibleContext</code>
|
2003-01-27 17:20:08 +00:00
|
|
|
* </li>
|
2005-03-01 19:28:46 +00:00
|
|
|
* <li> <code>::com::sun::star::accessibility::XAccessibleSelection
|
2003-01-27 17:20:08 +00:00
|
|
|
* </code></li>
|
2005-03-01 19:28:46 +00:00
|
|
|
* <li><code>::com::sun::star::accessibility::XAccessibleValue</code>
|
2003-01-27 17:20:08 +00:00
|
|
|
* </li>
|
2005-03-01 19:28:46 +00:00
|
|
|
* <li><code>::com::sun::star::accessibility::XAccessibleEventBroadcaster
|
2003-01-27 17:20:08 +00:00
|
|
|
* </code></li>
|
|
|
|
* </ul>
|
2003-04-28 11:31:17 +00:00
|
|
|
* @see com.sun.star.accessibility.XAccessibleComponent
|
|
|
|
* @see com.sun.star.accessibility.XAccessibleContext
|
|
|
|
* @see com.sun.star.accessibility.XAccessibleSelection
|
|
|
|
* @see com.sun.star.accessibility.XAccessibleValue
|
|
|
|
* @see com.sun.star.accessibility.XAccessibleEventBroadcaster
|
2003-01-27 17:20:08 +00:00
|
|
|
* @see ifc.accessibility._XAccessibleEventBroadcaster
|
|
|
|
* @see ifc.accessibility._XAccessibleComponent
|
|
|
|
* @see ifc.accessibility._XAccessibleContext
|
|
|
|
* @see ifc.accessibility._XAccessibleSelection
|
|
|
|
* @see ifc.accessibility._XAccessibleTable
|
|
|
|
*/
|
|
|
|
public class ScAccessiblePreviewCell extends TestCase {
|
2005-11-02 16:52:23 +00:00
|
|
|
static XSpreadsheetDocument xSheetDoc = null;
|
2003-01-27 17:20:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a spreadsheet document.
|
|
|
|
*/
|
|
|
|
protected void initialize( TestParameters tParam, PrintWriter log ) {
|
2003-05-27 11:59:32 +00:00
|
|
|
SOfficeFactory SOF = SOfficeFactory.getFactory( (XMultiServiceFactory)tParam.getMSF() );
|
2003-01-27 17:20:08 +00:00
|
|
|
try {
|
|
|
|
log.println( "creating a Spreadsheet document" );
|
|
|
|
xSheetDoc = SOF.createCalcDoc(null);
|
|
|
|
} catch ( com.sun.star.uno.Exception e ) {
|
|
|
|
// Some exception occures.FAILED
|
|
|
|
e.printStackTrace( log );
|
|
|
|
throw new StatusException( "Couldn't create document", e );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Disposes a spreadsheet document.
|
|
|
|
*/
|
|
|
|
protected void cleanup( TestParameters tParam, PrintWriter log ) {
|
|
|
|
log.println( " disposing xSheetDoc " );
|
|
|
|
XComponent oComp = (XComponent)UnoRuntime.queryInterface
|
|
|
|
(XComponent.class, xSheetDoc);
|
2004-01-05 17:45:19 +00:00
|
|
|
util.DesktopTools.closeDoc(oComp);
|
2003-01-27 17:20:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creating a Testenvironment for the interfaces to be tested.
|
|
|
|
* Obtains the accessible object for a one of cell in preview mode.
|
|
|
|
*/
|
|
|
|
protected synchronized TestEnvironment createTestEnvironment(TestParameters Param, PrintWriter log) {
|
|
|
|
|
|
|
|
XInterface oObj = null;
|
|
|
|
XCell xCell = null;
|
|
|
|
|
|
|
|
try {
|
|
|
|
log.println("Getting spreadsheet") ;
|
|
|
|
XSpreadsheets oSheets = xSheetDoc.getSheets() ;
|
|
|
|
XIndexAccess oIndexSheets = (XIndexAccess)
|
|
|
|
UnoRuntime.queryInterface(XIndexAccess.class, oSheets);
|
2003-01-31 12:41:55 +00:00
|
|
|
XSpreadsheet oSheet = (XSpreadsheet) AnyConverter.toObject(
|
|
|
|
new Type(XSpreadsheet.class),oIndexSheets.getByIndex(0));
|
2003-01-27 17:20:08 +00:00
|
|
|
|
|
|
|
log.println("Getting a cell from sheet") ;
|
|
|
|
xCell = oSheet.getCellByPosition(0, 0);
|
|
|
|
} catch (com.sun.star.lang.WrappedTargetException e) {
|
|
|
|
e.printStackTrace(log);
|
|
|
|
throw new StatusException(
|
|
|
|
"Error getting cell object from spreadsheet document", e);
|
|
|
|
} catch (com.sun.star.lang.IndexOutOfBoundsException e) {
|
|
|
|
e.printStackTrace(log);
|
|
|
|
throw new StatusException(
|
|
|
|
"Error getting cell object from spreadsheet document", e);
|
2003-01-31 12:41:55 +00:00
|
|
|
} catch (com.sun.star.lang.IllegalArgumentException e) {
|
|
|
|
e.printStackTrace(log);
|
|
|
|
throw new StatusException(
|
|
|
|
"Error getting cell object from spreadsheet document", e);
|
2003-01-27 17:20:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
xCell.setFormula("Value");
|
|
|
|
|
|
|
|
XModel xModel = (XModel)
|
|
|
|
UnoRuntime.queryInterface(XModel.class, xSheetDoc);
|
|
|
|
|
|
|
|
XController xController = xModel.getCurrentController();
|
|
|
|
|
|
|
|
//switch to 'Print Preview' mode
|
|
|
|
try {
|
|
|
|
XDispatchProvider xDispProv = (XDispatchProvider)
|
|
|
|
UnoRuntime.queryInterface(XDispatchProvider.class, xController);
|
|
|
|
XURLTransformer xParser = (com.sun.star.util.XURLTransformer)
|
|
|
|
UnoRuntime.queryInterface(XURLTransformer.class,
|
2003-05-27 11:59:32 +00:00
|
|
|
((XMultiServiceFactory)Param.getMSF()).createInstance("com.sun.star.util.URLTransformer"));
|
2003-01-27 17:20:08 +00:00
|
|
|
URL[] aParseURL = new URL[1];
|
|
|
|
aParseURL[0] = new URL();
|
|
|
|
aParseURL[0].Complete = ".uno:PrintPreview";
|
|
|
|
xParser.parseStrict(aParseURL);
|
|
|
|
URL aURL = aParseURL[0];
|
|
|
|
XDispatch xDispatcher = xDispProv.queryDispatch(aURL, "", 0);
|
|
|
|
if(xDispatcher != null)
|
|
|
|
xDispatcher.dispatch( aURL, null );
|
|
|
|
} catch (com.sun.star.uno.Exception e) {
|
|
|
|
log.println("Couldn't change mode");
|
|
|
|
throw new StatusException(Status.failed("Couldn't change mode"));
|
|
|
|
}
|
|
|
|
|
|
|
|
shortWait();
|
|
|
|
|
|
|
|
AccessibilityTools at = new AccessibilityTools();
|
|
|
|
|
2003-05-27 11:59:32 +00:00
|
|
|
XWindow xWindow = at.getCurrentWindow((XMultiServiceFactory)Param.getMSF(), xModel);
|
2003-01-27 17:20:08 +00:00
|
|
|
XAccessible xRoot = at.getAccessibleObject(xWindow);
|
|
|
|
|
2004-03-19 14:59:49 +00:00
|
|
|
at.getAccessibleObjectForRole(xRoot, AccessibleRole.TABLE_CELL, true);
|
2003-01-27 17:20:08 +00:00
|
|
|
|
2003-09-08 11:02:42 +00:00
|
|
|
oObj = AccessibilityTools.SearchedContext;
|
2003-01-27 17:20:08 +00:00
|
|
|
|
|
|
|
log.println("ImplementationName " + utils.getImplName(oObj));
|
|
|
|
|
|
|
|
TestEnvironment tEnv = new TestEnvironment( oObj );
|
|
|
|
|
|
|
|
tEnv.addObjRelation("EventProducer",
|
|
|
|
new ifc.accessibility._XAccessibleEventBroadcaster.EventProducer(){
|
|
|
|
public void fireEvent() {
|
|
|
|
System.out.println("Fire Event");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return tEnv;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void shortWait() {
|
|
|
|
try {
|
|
|
|
Thread.sleep(1000) ;
|
|
|
|
} catch (InterruptedException e) {
|
|
|
|
System.out.println("While waiting :" + e);
|
|
|
|
}
|
|
|
|
}
|
2003-05-27 11:59:32 +00:00
|
|
|
}
|