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.
-
IconPanel()
-
-
pauseAnimation()
- Pause ths animation for this icon at the current frame.
-
resetAnimation()
- Rewind any animation for this icon to the first frame.
-
setAnimationSpeed(int)
- Set the animation speed for this icon.
-
startAnimation()
- Start any animation for this icon.
-
stepAnimation()
- Step any animation for this icon to the next frame.
-
stopAnimation()
- Stop any animation for this icon.
IconPanel
public IconPanel()
startAnimation
public abstract void startAnimation()
- Start any animation for this icon.
stopAnimation
public abstract void stopAnimation()
- Stop any animation for this icon.
pauseAnimation
public abstract void pauseAnimation()
- Pause ths animation for this icon at the current frame.
resetAnimation
public abstract void resetAnimation()
- Rewind any animation for this icon to the first frame.
stepAnimation
public abstract void stepAnimation()
- Step any animation for this icon to the next frame.
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