Uses of Class
org.apache.pivot.wtk.media.Image

Packages that use Image
org.apache.pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
org.apache.pivot.wtk.content Contains classes representing component data, such as list items or table rows. 
org.apache.pivot.wtk.effects Contains classes supporting visual effects such as blurs, reflections, and drop shadows. 
org.apache.pivot.wtk.media Contains classes that provide multimedia support. 
org.apache.pivot.wtk.skin Contains common skins and abstract base classes for theme-specific skins. 
org.apache.pivot.wtk.text Contains classes representing a text object model. 
 

Uses of Image in org.apache.pivot.wtk
 

Methods in org.apache.pivot.wtk that return Image
 Image Window.IconImageSequence.get(int index)
           
 Image Manifest.getImage()
           
 Image RemoteManifest.getImage()
           
 Image ImageView.getImage()
          Returns the image view's current image.
 Image LocalManifest.getImage()
           
 Image ImageView.ImageBindMapping.toImage(Object value)
          Converts a value from the bind context to an image representation during a Component.load(Object) operation.
 Image Window.IconImageSequence.update(int index, Image image)
           
 

Methods in org.apache.pivot.wtk that return types with arguments of type Image
 Iterator<Image> Window.IconImageSequence.iterator()
           
 org.apache.pivot.collections.Sequence<Image> Window.IconImageSequence.remove(int index, int count)
           
 

Methods in org.apache.pivot.wtk with parameters of type Image
 int Window.IconImageSequence.add(Image image)
           
 void WindowListener.iconAdded(Window window, Image addedIcon)
          Called when a window's icon has changed.
 void WindowListener.Adapter.iconAdded(Window window, Image addedIcon)
           
 void WindowListener.iconInserted(Window window, Image addedIcon, int index)
          Called when a window's icon has changed.
 void WindowListener.Adapter.iconInserted(Window window, Image addedIcon, int index)
           
 void ImageViewListener.imageChanged(ImageView imageView, Image previousImage)
          Called when an image view's image has changed.
 void ImageViewListener.Adapter.imageChanged(ImageView imageView, Image previousImage)
           
 int Window.IconImageSequence.indexOf(Image image)
           
 void Window.IconImageSequence.insert(Image image, int index)
           
 void TextPane.insertImage(Image image)
           
 void LocalManifest.putImage(Image image)
           
 int Window.IconImageSequence.remove(Image image)
           
 void ImageView.setImage(Image image)
          Sets the image view's current image.
 Image Window.IconImageSequence.update(int index, Image image)
           
 Object ImageView.ImageBindMapping.valueOf(Image image)
          Converts a text string to a value to be stored in the bind context during a Component.store(Object) operation.
 

Method parameters in org.apache.pivot.wtk with type arguments of type Image
 void WindowListener.iconsRemoved(Window window, int index, org.apache.pivot.collections.Sequence<Image> removed)
          Called when a window's icon has changed.
 void WindowListener.Adapter.iconsRemoved(Window window, int index, org.apache.pivot.collections.Sequence<Image> removed)
           
 

Constructors in org.apache.pivot.wtk with parameters of type Image
ImageView(Image image)
          Creates an image view with the given image.
 

Uses of Image in org.apache.pivot.wtk.content
 

Subclasses of Image in org.apache.pivot.wtk.content
static class ListViewColorItemRenderer.ColorBadge
          Internal image class for rendering color swatches.
 

Methods in org.apache.pivot.wtk.content that return Image
 Image TreeBranch.getExpandedIcon()
           
 Image ButtonData.getIcon()
           
 Image TreeNode.getIcon()
           
 Image TableViewHeaderData.getIcon()
           
 Image ListItem.getIcon()
           
 

Methods in org.apache.pivot.wtk.content with parameters of type Image
 void TreeBranch.setExpandedIcon(Image expandedIcon)
           
 void ButtonData.setIcon(Image icon)
           
 void TreeNode.setIcon(Image icon)
           
 void TableViewHeaderData.setIcon(Image icon)
           
 void ListItem.setIcon(Image icon)
           
 

Constructors in org.apache.pivot.wtk.content with parameters of type Image
ButtonData(Image icon)
           
ButtonData(Image icon, String text)
           
ListItem(Image icon)
           
ListItem(Image icon, String text)
           
MenuItemData(Image icon)
          Constructor.
MenuItemData(Image icon, String text)
          Constructor.
MenuItemData(Image icon, String text, Keyboard.KeyStroke keyboardShortcut)
          Constructor.
TableViewHeaderData(Image icon)
           
TableViewHeaderData(Image icon, String text)
           
TreeBranch(Image icon)
           
TreeBranch(Image icon, Image expandedIcon, String text)
           
TreeBranch(Image icon, String text)
           
TreeNode(Image icon)
           
TreeNode(Image icon, String text)
           
 

Uses of Image in org.apache.pivot.wtk.effects
 

Methods in org.apache.pivot.wtk.effects that return Image
 Image WatermarkDecorator.getImage()
          Gets the image that will be painted over this decorator's component.
 

Methods in org.apache.pivot.wtk.effects with parameters of type Image
 void WatermarkDecorator.setImage(Image image)
          Sets the image that will be painted over this decorator's component.
 

Constructors in org.apache.pivot.wtk.effects with parameters of type Image
WatermarkDecorator(Image image)
          Cretes a new WatermarkDecorator with no text and the specified image.
WatermarkDecorator(String text, Image image)
          Cretes a new WatermarkDecorator with the specified text and image.
 

Uses of Image in org.apache.pivot.wtk.media
 

Subclasses of Image in org.apache.pivot.wtk.media
 class Drawing
          Image encapsulating an SVG diagram.
 class Picture
          Image representing a bitmapped picture.
 

Methods in org.apache.pivot.wtk.media that return Image
 Image Image.LoadTask.execute()
           
static Image Image.load(URL location)
           
 

Methods in org.apache.pivot.wtk.media with parameters of type Image
 void Image.ImageListenerList.baselineChanged(Image image, int previousBaseline)
           
 void ImageListener.baselineChanged(Image image, int previousBaseline)
          Called when an image's baseline has changed.
 void Image.ImageListenerList.regionUpdated(Image image, int x, int y, int width, int height)
           
 void ImageListener.regionUpdated(Image image, int x, int y, int width, int height)
          Called when a region within an image needs to be repainted.
 void Image.ImageListenerList.sizeChanged(Image image, int previousWidth, int previousHeight)
           
 void ImageListener.sizeChanged(Image image, int previousWidth, int previousHeight)
          Called when an image's size has changed.
 

Method parameters in org.apache.pivot.wtk.media with type arguments of type Image
static Image.LoadTask Image.load(URL location, org.apache.pivot.util.concurrent.TaskListener<Image> loadListener)
           
 

Uses of Image in org.apache.pivot.wtk.skin
 

Methods in org.apache.pivot.wtk.skin with parameters of type Image
 void WindowSkin.iconAdded(Window window, Image addedIcon)
           
 void WindowSkin.iconInserted(Window window, Image addedIcon, int index)
           
 void ImageViewSkin.imageChanged(ImageView imageView, Image previousImage)
           
 

Method parameters in org.apache.pivot.wtk.skin with type arguments of type Image
 void WindowSkin.iconsRemoved(Window window, int index, org.apache.pivot.collections.Sequence<Image> removed)
           
 

Uses of Image in org.apache.pivot.wtk.text
 

Methods in org.apache.pivot.wtk.text that return Image
 Image ImageNode.getImage()
           
 

Methods in org.apache.pivot.wtk.text with parameters of type Image
 void ImageNodeListener.imageChanged(ImageNode imageNode, Image previousImage)
           
 void ImageNode.setImage(Image image)
           
 

Constructors in org.apache.pivot.wtk.text with parameters of type Image
ImageNode(Image image)