blob: ec6c33b7e7da7f546ae577c71de8d71910c6c8ed [file] [log] [blame]
/*
* Copyright 2002,2004 The Apache Software Foundation.
*
* Licensed 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
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.jelly.tags.jface;
import org.apache.commons.jelly.JellyTagException;
import org.apache.commons.jelly.XMLOutput;
import org.apache.commons.jelly.tags.jface.window.ApplicationWindowImpl;
import org.apache.commons.jelly.tags.jface.window.ApplicationWindowTag;
import org.apache.commons.jelly.tags.swt.ImageTag;
import org.eclipse.jface.window.Window;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.widgets.Widget;
/**
* Implementation of SWT ImageTag
*
* @author <a href="mailto:ckl@dacelo.nl">Christiaan ten Klooster</a>
*/
public class JFaceImageTag extends ImageTag {
/**
* @return the parent window
*/
public Window getParentWindow() {
ApplicationWindowTag tag =
(ApplicationWindowTag) findAncestorWithClass(ApplicationWindowTag.class);
if (tag != null) {
return tag.getWindow();
}
return null;
}
/**
* Set default image Window
* @param window
* @param image
*/
private void setWindowImage(Window window, Image image) {
window.getShell().setImage(image);
}
/*
* @see org.apache.commons.jelly.Tag#doTag(org.apache.commons.jelly.XMLOutput)
*/
public void doTag(XMLOutput output) throws JellyTagException {
// invoke by body just in case some nested tag configures me
invokeBody(output);
Widget parent = getParentWidget();
Window window = null;
if (parent == null) {
window = getParentWindow();
if (window != null && window instanceof ApplicationWindowImpl) {
parent = ((ApplicationWindowImpl) window).getContents();
}
}
if (parent == null && window == null) {
throw new JellyTagException("This tag must be nested within a Widget or a Window");
}
Image image = new Image(parent.getDisplay(), getSrc());
if (window != null) {
setWindowImage(window, image);
} else {
setWidgetImage(parent, image);
}
}
}