blob: 57a395f88f2ca3c67fe41b71c06c82be9e251847 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.debug.ui;
import org.eclipse.jface.resource.CompositeImageDescriptor;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.swt.graphics.ImageData;
import org.eclipse.swt.graphics.Point;
/**
* A JDIImageDescriptor consists of a main icon and several adornments. The adornments
* are computed according to flags set on creation of the descriptor.
*/
public class JDIImageDescriptor extends CompositeImageDescriptor {
/** Flag to render the is out of synch adornment */
public final static int IS_OUT_OF_SYNCH= 0x0001;
/** Flag to render the may be out of synch adornment */
public final static int MAY_BE_OUT_OF_SYNCH= 0x0002;
/** Flag to render the installed breakpoint adornment */
public final static int INSTALLED= 0x0004;
/** Flag to render the entry method breakpoint adornment */
public final static int ENTRY= 0x0008;
/** Flag to render the exit method breakpoint adornment */
public final static int EXIT= 0x0010;
/** Flag to render the enabled breakpoint adornment */
public final static int ENABLED= 0x0020;
/** Flag to render the conditional breakpoint adornment */
public final static int CONDITIONAL= 0x0040;
/** Flag to render the caught breakpoint adornment */
public final static int CAUGHT= 0x0080;
/** Flag to render the uncaught breakpoint adornment */
public final static int UNCAUGHT= 0x0100;
/** Flag to render the scoped breakpoint adornment */
public final static int SCOPED= 0x0200;
/** Flag to render the owning a monitor thread adornment */
public final static int OWNS_MONITOR= 0x0400;
/** Flag to render the owned monitor adornment */
public final static int OWNED_MONITOR= 0x0800;
/** Flag to render the in contention monitor adornment */
public final static int CONTENTED_MONITOR= 0x1000;
/** Flag to render the in contention for monitor thread adornment */
public final static int IN_CONTENTION_FOR_MONITOR= 0x2000;
private ImageDescriptor fBaseImage;
private int fFlags;
private Point fSize;
/**
* Create a new JDIImageDescriptor.
*
* @param baseImage an image descriptor used as the base image
* @param flags flags indicating which adornments are to be rendered
*
*/
public JDIImageDescriptor(ImageDescriptor baseImage, int flags) {
setBaseImage(baseImage);
setFlags(flags);
}
/**
* @see CompositeImageDescriptor#getSize()
*/
protected Point getSize() {
if (fSize == null) {
ImageData data= getBaseImage().getImageData();
setSize(new Point(data.width, data.height));
}
return fSize;
}
/**
* @see Object#equals(java.lang.Object)
*/
public boolean equals(Object object) {
if (!(object instanceof JDIImageDescriptor)){
return false;
}
JDIImageDescriptor other= (JDIImageDescriptor)object;
return (getBaseImage().equals(other.getBaseImage()) && getFlags() == other.getFlags());
}
/**
* @see Object#hashCode()
*/
public int hashCode() {
return getBaseImage().hashCode() | getFlags();
}
/**
* @see CompositeImageDescriptor#drawCompositeImage(int, int)
*/
protected void drawCompositeImage(int width, int height) {
ImageData bg= getBaseImage().getImageData();
if (bg == null) {
bg= DEFAULT_IMAGE_DATA;
}
drawImage(bg, 0, 0);
drawOverlays();
}
/**
* Add any overlays to the image as specified in the flags.
*/
protected void drawOverlays() {
int flags= getFlags();
int x= 0;
int y= 0;
ImageData data= null;
if ((flags & IS_OUT_OF_SYNCH) != 0) {
x= getSize().x;
y= 0;
data= JavaDebugImages.DESC_OVR_IS_OUT_OF_SYNCH.getImageData();
x -= data.width;
drawImage(data, x, y);
} else if ((flags & MAY_BE_OUT_OF_SYNCH) != 0) {
x= getSize().x;
y= 0;
data= JavaDebugImages.DESC_OVR_MAY_BE_OUT_OF_SYNCH.getImageData();
x -= data.width;
drawImage(data, x, y);
} else {
if ((flags & OWNED_MONITOR) != 0) {
x= getSize().x;
y= getSize().y;
data= JavaDebugImages.DESC_OVR_OWNED.getImageData();
x -= data.width;
y -= data.height;
drawImage(data, x, y);
} else if ((flags & CONTENTED_MONITOR) != 0) {
x= getSize().x;
y= getSize().y;
data= JavaDebugImages.DESC_OVR_IN_CONTENTION.getImageData();
x -= data.width;
y -= data.height;
drawImage(data, x, y);
} else if ((flags & OWNS_MONITOR) != 0) {
x= getSize().x;
y= 0;
data= JavaDebugImages.DESC_OVR_OWNS_MONITOR.getImageData();
x -= data.width;
drawImage(data, x, y);
} else if ((flags & IN_CONTENTION_FOR_MONITOR) != 0) {
x= getSize().x;
y= 0;
data= JavaDebugImages.DESC_OVR_IN_CONTENTION_FOR_MONITOR.getImageData();
x -= data.width;
drawImage(data, x, y);
} else {
drawBreakpointOverlays();
}
}
}
protected void drawBreakpointOverlays() {
int flags= getFlags();
int x= 0;
int y= 0;
ImageData data= null;
if ((flags & INSTALLED) != 0) {
x= 0;
y= getSize().y;
if ((flags & ENABLED) !=0) {
data= JavaDebugImages.DESC_OBJS_BREAKPOINT_INSTALLED.getImageData();
} else {
data= JavaDebugImages.DESC_OBJS_BREAKPOINT_INSTALLED_DISABLED.getImageData();
}
y -= data.height;
drawImage(data, x, y);
}
if ((flags & CAUGHT) != 0) {
if ((flags & ENABLED) !=0) {
data= JavaDebugImages.DESC_OBJS_CAUGHT_BREAKPOINT.getImageData();
} else {
data= JavaDebugImages.DESC_OBJS_CAUGHT_BREAKPOINT_DISABLED.getImageData();
}
x= 0;
y= 0;
drawImage(data, x, y);
}
if ((flags & UNCAUGHT) != 0) {
if ((flags & ENABLED) !=0) {
data= JavaDebugImages.DESC_OBJS_UNCAUGHT_BREAKPOINT.getImageData();
} else {
data= JavaDebugImages.DESC_OBJS_UNCAUGHT_BREAKPOINT_DISABLED.getImageData();
}
x= data.width;
y= data.height;
drawImage(data, x, y);
}
if ((flags & SCOPED) != 0) {
if ((flags & ENABLED) !=0) {
data= JavaDebugImages.DESC_OBJS_SCOPED_BREAKPOINT.getImageData();
} else {
data= JavaDebugImages.DESC_OBJS_SCOPED_BREAKPOINT_DISABLED.getImageData();
}
x= 0;
y= getSize().y;
y-= data.height;
drawImage(data, x, y);
}
if ((flags & CONDITIONAL) != 0) {
x= getSize().x;
y= 0;
if ((flags & ENABLED) !=0) {
data= JavaDebugImages.DESC_OBJS_CONDITIONAL_BREAKPOINT.getImageData();
} else {
data= JavaDebugImages.DESC_OBJS_CONDITIONAL_BREAKPOINT_DISABLED.getImageData();
}
x -= data.width;
drawImage(data, x, y);
} else {
if ((flags & ENTRY) != 0) {
x= getSize().x;
y= 0;
if ((flags & ENABLED) !=0) {
data= JavaDebugImages.DESC_OBJS_METHOD_BREAKPOINT_ENTRY.getImageData();
} else {
data= JavaDebugImages.DESC_OBJS_METHOD_BREAKPOINT_ENTRY_DISABLED.getImageData();
}
x -= data.width;
drawImage(data, x, y);
}
if ((flags & EXIT) != 0){
x= getSize().x;
y= getSize().y;
if ((flags & ENABLED) != 0) {
data= JavaDebugImages.DESC_OBJS_METHOD_BREAKPOINT_EXIT.getImageData();
} else {
data= JavaDebugImages.DESC_OBJS_METHOD_BREAKPOINT_EXIT_DISABLED.getImageData();
}
x -= data.width;
y -= data.height;
drawImage(data, x, y);
}
}
}
protected ImageDescriptor getBaseImage() {
return fBaseImage;
}
protected void setBaseImage(ImageDescriptor baseImage) {
fBaseImage = baseImage;
}
protected int getFlags() {
return fFlags;
}
protected void setFlags(int flags) {
fFlags = flags;
}
protected void setSize(Point size) {
fSize = size;
}
}