org.netbeans.api.visual.animator.SceneAnimator Java Examples

The following examples show how to use org.netbeans.api.visual.animator.SceneAnimator. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Scene.java    From netbeans with Apache License 2.0 5 votes vote down vote up
/**
 * Creates a scene.
 */
public Scene () {
    super (null);
    defaultFont = Font.decode (null);
    resolveBounds (new Point (), new Rectangle ());
    setOpaque(true);
    setFont (defaultFont);
    setBackground (lookFeel.getBackground ());
    setForeground (lookFeel.getForeground ());
    sceneAnimator = new SceneAnimator (this);
}
 
Example #2
Source File: CenteredZoomAnimator.java    From netbeans with Apache License 2.0 4 votes vote down vote up
CenteredZoomAnimator(SceneAnimator sceneAnimator) {
    super (sceneAnimator);
}
 
Example #3
Source File: PreferredLocationAnimator.java    From netbeans with Apache License 2.0 4 votes vote down vote up
public PreferredLocationAnimator (SceneAnimator sceneAnimator) {
    super (sceneAnimator);
}
 
Example #4
Source File: ZoomAnimator.java    From netbeans with Apache License 2.0 4 votes vote down vote up
public ZoomAnimator (SceneAnimator sceneAnimator) {
    super (sceneAnimator);
}
 
Example #5
Source File: PreferredBoundsAnimator.java    From netbeans with Apache License 2.0 4 votes vote down vote up
public PreferredBoundsAnimator (SceneAnimator sceneAnimator) {
    super (sceneAnimator);
}
 
Example #6
Source File: ColorAnimator.java    From netbeans with Apache License 2.0 4 votes vote down vote up
public ColorAnimator (SceneAnimator sceneAnimator) {
    super (sceneAnimator);
}
 
Example #7
Source File: Scene.java    From netbeans with Apache License 2.0 2 votes vote down vote up
/**
 * Returns a scene animator of the scene.
 * @return the scene animator
 */
public final SceneAnimator getSceneAnimator () {
    return sceneAnimator;
}