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 complex
.imageManager
;
20 import com
.sun
.star
.graphic
.XGraphic
;
21 import com
.sun
.star
.ui
.ImageType
;
22 import com
.sun
.star
.ui
.XImageManager
;
28 public class _XImageManager
{
31 private String
[]imageNames
= null;
32 private XGraphic
[] xGraphicArray
= null;
33 private final XImageManager oObj
;
35 public _XImageManager( XImageManager oObj
) {
39 public boolean _getAllImageNames() {
40 short s
= ImageType
.COLOR_NORMAL
+ ImageType
.SIZE_DEFAULT
;
41 imageNames
= oObj
.getAllImageNames(s
);
42 for (int i
=0; i
<(imageNames
.length
>10?
10:imageNames
.length
); i
++)
44 System
.out
.println("###### Image: " + imageNames
[i
]);
46 return imageNames
!= null;
49 public boolean _getImages() {
50 short s
= ImageType
.COLOR_NORMAL
+ ImageType
.SIZE_DEFAULT
;
52 xGraphicArray
= oObj
.getImages(s
, imageNames
);
54 catch(com
.sun
.star
.lang
.IllegalArgumentException e
) {
56 return xGraphicArray
!= null;
59 public boolean _hasImage() {
60 boolean result
= true;
61 short s
= ImageType
.COLOR_NORMAL
+ ImageType
.SIZE_DEFAULT
;
62 try { // check the first image names, 10 at max
63 for (int i
=0; i
<(imageNames
.length
>10?
10:imageNames
.length
); i
++)
65 result
&= oObj
.hasImage(s
, imageNames
[i
]);
68 catch(com
.sun
.star
.lang
.IllegalArgumentException e
) {
74 public boolean _insertImages() {
76 oObj
.insertImages((short)imageNames
.length
, imageNames
, xGraphicArray
);
78 catch(com
.sun
.star
.container
.ElementExistException e
) {
80 catch(com
.sun
.star
.lang
.IllegalArgumentException e
) {
82 catch(com
.sun
.star
.lang
.IllegalAccessException e
) {
87 public boolean _removeImages() {
89 oObj
.removeImages((short)(imageNames
.length
-1), imageNames
);
91 catch(com
.sun
.star
.lang
.IllegalArgumentException e
) {
93 catch(com
.sun
.star
.lang
.IllegalAccessException e
) {
98 public boolean _replaceImages() {
102 public boolean _reset() {