|
|||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
| Packages that use Raster | |
| com.tensegrity.graphics | Contains basic classes and interfaces of the Tensegrity graphics framework. |
| com.tensegrity.graphics.awt | Contains basic helper classes for working with AWT. |
| com.tensegrity.graphics.image | Provides classes for creating and modifying images. |
| com.tensegrity.graphics.swt | Provides constants and methods which are useful in an SWT context. |
| com.tensegrity.gui.swing.control | This package contains specific controls used within dialogs, such as the IntegerTextField, ProgressBar and SpinButton. |
| com.tensegrity.gui.swt.dialog | |
| com.tensegrity.gui.swt.repository | |
| Uses of Raster in com.tensegrity.graphics |
| Fields in com.tensegrity.graphics declared as Raster | |
Raster |
PrimitiveAttributes.RasterWrapper.raster
|
| Methods in com.tensegrity.graphics that return Raster | |
static Raster |
ImagePool.get(java.lang.String key)
Returns the Raster that is described through the
String given by key if it
is stored in the ImagePool. |
static Raster |
ImagePool.loadAndPool(java.lang.String resourceImagePath)
Loads an image that is specified through the path given by resourceImagePath and adds the loaded image to the
ImagePool.
|
static Raster |
ImagePool.loadAndPool(java.lang.String resourceImagePath,
java.lang.String key)
Loads an image that is specified through the path given by resourceImagePath and adds the loaded image to the
ImagePool.
|
static Raster |
ImagePool.loadAndPool(java.lang.Class referenceClass,
java.lang.String key,
java.lang.String resourceImagePath)
Loads an image that is specified through the path given by resourceImagePath and adds the loaded image to the
ImagePool.
|
static Raster |
ImagePool.loadAndPool(java.net.URL imagepath)
Loads an image that is specified through the path given by resourceImagePath and adds the loaded image to the
ImagePool.
|
static Raster |
ImagePool.loadAndPool(java.lang.String key,
java.net.URL imagepath)
|
Raster |
ImageOperations.loadImageResource(java.lang.String imagepath)
|
Raster |
ImageOperations.loadImageResource(java.lang.Class referenceClass,
java.lang.String imagepath)
|
Raster |
ImageOperations.loadImage(java.lang.String imagepath)
|
Raster |
ImageOperations.loadImage(java.net.URL imagepath)
|
| Methods in com.tensegrity.graphics with parameters of type Raster | |
static void |
ImagePool.pool(java.lang.String key,
Raster image)
Puts the Raster given by image into the
ImagePool. |
static java.lang.Object |
ImagePool.getKeyOf(Raster image)
Searches for the Raster given by image in the
pool and returns the key for that Raster. |
static boolean |
ImagePool.contains(Raster raster)
Checks whether a raster is in the pool or not |
| Constructors in com.tensegrity.graphics with parameters of type Raster | |
Texture(Raster raster)
Constructor that creates a Texture that makes use of the
Raster given by raster. |
|
PrimitiveAttributes.RasterWrapper(Raster raster)
|
|
| Uses of Raster in com.tensegrity.graphics.awt |
| Methods in com.tensegrity.graphics.awt that return Raster | |
Raster |
AWTImageOperations.loadImage(java.lang.String imagepath)
Loads the image from the source given by imagepath. |
Raster |
AWTImageOperations.loadImageResource(java.lang.String imagepath)
Loads the image from the source given by imagepath. |
Raster |
AWTImageOperations.loadImageResource(java.lang.Class referenceclass,
java.lang.String imagepath)
|
Raster |
AWTImageOperations.loadImage(java.net.URL imagepath)
|
Raster |
AWTImageOperations.convertImageToRaster(java.awt.Image image)
Converts the Image given by image to a
Raster object. |
| Constructors in com.tensegrity.graphics.awt with parameters of type Raster | |
AWTPixelGrabber(java.awt.image.ImageProducer producer,
Raster raster)
Constructor that creates a AWTPixelGrabber for the
ImageProducer given by producer. |
|
| Uses of Raster in com.tensegrity.graphics.image |
| Methods in com.tensegrity.graphics.image that return Raster | |
static Raster |
Raster.decode(java.lang.String encodedString)
Decodes a string which has been previously create by the encode()
method. |
static Raster |
Raster.decode(java.lang.String encodedString,
boolean compressed)
Decodes a string which has been previously create by the encode()
method. |
| Methods in com.tensegrity.graphics.image with parameters of type Raster | |
void |
Raster.blt(Raster raster,
int bltCode)
Performs a blit operation with the Raster given by
raster. |
static void |
Raster.blt(Raster dest,
Raster sourceA,
Raster sourceB,
int bltCode)
Performs a blit operation onto the two Rasters given by
sourceA and sourceB. |
| Uses of Raster in com.tensegrity.graphics.swt |
| Methods in com.tensegrity.graphics.swt that return Raster | |
Raster |
SWTImageOperations.loadImageResource(java.lang.String imagepath)
|
Raster |
SWTImageOperations.loadImageResource(java.lang.Class refClass,
java.lang.String imagepath)
|
Raster |
SWTImageOperations.loadImage(java.lang.String imagepath)
|
Raster |
SWTImageOperations.loadImage(java.net.URL imagepath)
|
| Methods in com.tensegrity.graphics.swt with parameters of type Raster | |
static org.eclipse.swt.graphics.ImageData |
SWTGraphicUtilities.createImageData(Raster raster)
This method converts a raster to an Swt . |
| Uses of Raster in com.tensegrity.gui.swing.control |
| Methods in com.tensegrity.gui.swing.control that return Raster | |
static Raster |
RasterComboBox.getRaster(MultiSelectItem item)
Returns the raster value of a MultiSelectItem as the
RasterMultiSelectItem is not visible to the outside. |
Raster |
RasterComboBox.getRaster()
Returns the currently selected raster |
| Methods in com.tensegrity.gui.swing.control with parameters of type Raster | |
void |
RasterComboBox.setRaster(Raster raster)
Sets the selected raster |
| Constructors in com.tensegrity.gui.swing.control with parameters of type Raster | |
RasterComboBox(UIManager uiManager,
Raster raster)
Constructor |
|
RasterComboBox(UIManager uiManager,
int preferredControlHeight,
Raster raster)
Constructor |
|
RasterComboBox(UIManager uiManager,
int preferredControlHeight,
Raster raster,
boolean translateLabels)
Constructor |
|
| Uses of Raster in com.tensegrity.gui.swt.dialog |
| Methods in com.tensegrity.gui.swt.dialog that return Raster | |
Raster |
TextureItemDialog.open()
Opens a modal dialog and returns the latest selected paint item |
| Uses of Raster in com.tensegrity.gui.swt.repository |
| Constructors in com.tensegrity.gui.swt.repository with parameters of type Raster | |
VisualGraphObjectSwtIcon(org.eclipse.swt.graphics.Device device,
VisualGraphObject vgo,
double textscalefactor,
CoordinateSystem coordSystem,
Raster raster,
int width,
int height)
This constructor creates instances of VisualGraphObjectSwtIcon based on the given
VisualGraphObject with a width and height respectively of
width and height.
|
|
|
|||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||