Class COM.tolstoy.imagemeister.IconPanel
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class COM.tolstoy.imagemeister.IconPanel

java.lang.Object
   |
   +----java.awt.Component
           |
           +----java.awt.Container
                   |
                   +----java.awt.Panel
                           |
                           +----COM.tolstoy.imagemeister.IconPanel

public class IconPanel
extends Panel
This class represents a Panel which contains an icon for a plugin. For a given plugin, subclasses of this class are returned from the plugin's getIconPanel() method. The icon may be static, or animated.

Constructor Index

 o IconPanel()

Method Index

 o pauseAnimation()
Pause ths animation for this icon at the current frame.
 o resetAnimation()
Rewind any animation for this icon to the first frame.
 o setAnimationSpeed(int)
Set the animation speed for this icon.
 o startAnimation()
Start any animation for this icon.
 o stepAnimation()
Step any animation for this icon to the next frame.
 o stopAnimation()
Stop any animation for this icon.

Constructors

 o IconPanel
  public IconPanel()

Methods

 o startAnimation
  public abstract void startAnimation()
Start any animation for this icon.
 o stopAnimation
  public abstract void stopAnimation()
Stop any animation for this icon.
 o pauseAnimation
  public abstract void pauseAnimation()
Pause ths animation for this icon at the current frame.
 o resetAnimation
  public abstract void resetAnimation()
Rewind any animation for this icon to the first frame.
 o stepAnimation
  public abstract void stepAnimation()
Step any animation for this icon to the next frame.
 o setAnimationSpeed
  public abstract void setAnimationSpeed(int s)
Set the animation speed for this icon.
Parameters:
s - the length of each frame of the animation, where s is in 60ths of a second

All Packages  Class Hierarchy  This Package  Previous  Next  Index