2004-07-23 09:54:50 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 07:04:07 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2004-07-23 09:54:50 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2004-07-23 09:54:50 +00:00
|
|
|
*
|
2008-04-11 07:04:07 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2004-07-23 09:54:50 +00:00
|
|
|
*
|
2008-04-11 07:04:07 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2004-07-23 09:54:50 +00:00
|
|
|
*
|
2008-04-11 07:04:07 +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.
|
2004-07-23 09:54:50 +00:00
|
|
|
*
|
2008-04-11 07:04:07 +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).
|
2004-07-23 09:54:50 +00:00
|
|
|
*
|
2008-04-11 07:04:07 +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.
|
2004-07-23 09:54:50 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
2010-08-23 10:38:44 +02:00
|
|
|
package complex.imageManager;
|
2004-07-23 09:54:50 +00:00
|
|
|
|
|
|
|
import com.sun.star.graphic.XGraphic;
|
2006-06-19 10:10:17 +00:00
|
|
|
import com.sun.star.ui.ImageType;
|
|
|
|
import com.sun.star.ui.XImageManager;
|
2004-07-23 09:54:50 +00:00
|
|
|
import lib.TestParameters;
|
2010-06-28 12:54:49 +02:00
|
|
|
|
2004-07-23 09:54:50 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public class _XImageManager {
|
2010-06-28 12:54:49 +02:00
|
|
|
|
2004-07-23 09:54:50 +00:00
|
|
|
TestParameters tEnv = null;
|
|
|
|
String[]imageNames = null;
|
|
|
|
XGraphic[] xGraphicArray = null;
|
|
|
|
public XImageManager oObj;
|
|
|
|
|
2010-06-28 12:54:49 +02:00
|
|
|
public _XImageManager( TestParameters tEnv, XImageManager oObj) {
|
|
|
|
|
2004-07-23 09:54:50 +00:00
|
|
|
this.tEnv = tEnv;
|
|
|
|
this.oObj = oObj;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean _getAllImageNames() {
|
|
|
|
short s = ImageType.COLOR_NORMAL + ImageType.SIZE_DEFAULT;
|
|
|
|
imageNames = oObj.getAllImageNames(s);
|
|
|
|
for (int i=0; i<(imageNames.length>10?10:imageNames.length); i++)
|
2010-06-28 12:54:49 +02:00
|
|
|
{
|
2004-07-23 09:54:50 +00:00
|
|
|
System.out.println("###### Image: " + imageNames[i]);
|
2010-06-28 12:54:49 +02:00
|
|
|
}
|
2004-07-23 09:54:50 +00:00
|
|
|
return imageNames != null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean _getImages() {
|
|
|
|
short s = ImageType.COLOR_NORMAL + ImageType.SIZE_DEFAULT;
|
|
|
|
try {
|
|
|
|
xGraphicArray = oObj.getImages(s, imageNames);
|
|
|
|
}
|
|
|
|
catch(com.sun.star.lang.IllegalArgumentException e) {
|
|
|
|
}
|
|
|
|
return xGraphicArray != null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean _hasImage() {
|
|
|
|
boolean result = true;
|
|
|
|
short s = ImageType.COLOR_NORMAL + ImageType.SIZE_DEFAULT;
|
|
|
|
try { // check the first image names, 10 at max
|
|
|
|
for (int i=0; i<(imageNames.length>10?10:imageNames.length); i++)
|
2010-06-28 12:54:49 +02:00
|
|
|
{
|
2004-07-23 09:54:50 +00:00
|
|
|
result &= oObj.hasImage(s, imageNames[i]);
|
2010-06-28 12:54:49 +02:00
|
|
|
}
|
2004-07-23 09:54:50 +00:00
|
|
|
}
|
|
|
|
catch(com.sun.star.lang.IllegalArgumentException e) {
|
|
|
|
result = false;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean _insertImages() {
|
|
|
|
try {
|
|
|
|
oObj.insertImages((short)imageNames.length, imageNames, xGraphicArray);
|
|
|
|
}
|
|
|
|
catch(com.sun.star.container.ElementExistException e) {
|
|
|
|
}
|
|
|
|
catch(com.sun.star.lang.IllegalArgumentException e) {
|
|
|
|
}
|
|
|
|
catch(com.sun.star.lang.IllegalAccessException e) {
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean _removeImages() {
|
|
|
|
try {
|
|
|
|
oObj.removeImages((short)(imageNames.length-1), imageNames);
|
|
|
|
}
|
|
|
|
catch(com.sun.star.lang.IllegalArgumentException e) {
|
|
|
|
}
|
|
|
|
catch(com.sun.star.lang.IllegalAccessException e) {
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean _replaceImages() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean _reset() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|