1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
package complex.imageManager;
import com.sun.star.graphic.XGraphic;
import com.sun.star.ui.ImageType;
import com.sun.star.ui.XImageManager;
/**
*
*/
public class _XImageManager {
private String[]imageNames = null;
private XGraphic[] xGraphicArray = null;
private final XImageManager oObj;
public _XImageManager( XImageManager oObj) {
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++)
{
System.out.println("###### Image: " + imageNames[i]);
}
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++)
{
result &= oObj.hasImage(s, imageNames[i]);
}
}
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;
}
}
|