Trident part 6 – simple Swing / SWT examples
Over the course of the next few days i’m going to talk about different concepts in the Trident animation library for Java applications. Part six shows simple Swing / SWT examples that highlight Trident support for Java-based UI toolkits.
Simple Swing example
The following example shows how to smoothly change the foreground color of a Swing button on mouse rollover.
import java.awt.Color;
import java.awt.FlowLayout;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import javax.swing.*;
import org.pushingpixels.trident.Timeline;
public class ButtonFg extends JFrame {
public ButtonFg() {
JButton button = new JButton("sample");
button.setForeground(Color.blue);
this.setLayout(new FlowLayout());
this.add(button);
final Timeline rolloverTimeline = new Timeline(button);
rolloverTimeline.addPropertyToInterpolate("foreground", Color.blue,
Color.red);
rolloverTimeline.setDuration(2500);
button.addMouseListener(new MouseAdapter() {
@Override
public void mouseEntered(MouseEvent e) {
rolloverTimeline.play();
}
@Override
public void mouseExited(MouseEvent e) {
rolloverTimeline.playReverse();
}
});
this.setSize(400, 200);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
new ButtonFg().setVisible(true);
}
});
}
}
Here, we have a timeline that interpolates the foreground color between blue and red. The mouse listener registered on the button plays this timeline on mouse enter, and plays this timeline in reverse on mouse exit.
This example shows how the JComponent.setForeground(Color)
method is used together with the built in property interpolator for the java.awt.Color
class to run the timeline that interpolates the foreground color of a Swing button. Note that since the JComponent.setForeground(Color)
also repaints the button, there is no need to explicitly repaint it on every timeline pulse.
If you debug this application and put a breakpoint in the JComponent.setForeground(Color)
method, you will see that it is called on the Event Dispatch Thread. This is a built-in capability of the Trident core. It recognizes that the timeline is associated with a Swing component, and calls the setter method (during the timeline pulses) on the EDT.
Simple SWT example
The following example is the SWT version of changing the control foreground color on mouse rollover:
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.MouseEvent;
import org.eclipse.swt.events.MouseTrackAdapter;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.*;
import org.pushingpixels.trident.Timeline;
public class ButtonFg {
public static void main(String[] args) {
Display display = new Display();
Shell shell = new Shell(display);
shell.setSize(300, 200);
GridLayout layout = new GridLayout();
shell.setLayout(layout);
Button button = new Button(shell, SWT.RADIO);
GridData gridData = new GridData(GridData.CENTER, GridData.CENTER,
true, false);
button.setLayoutData(gridData);
button.setText("sample");
Color blue = display.getSystemColor(SWT.COLOR_BLUE);
Color red = display.getSystemColor(SWT.COLOR_RED);
button.setForeground(blue);
final Timeline rolloverTimeline = new Timeline(button);
rolloverTimeline.addPropertyToInterpolate("foreground", blue, red);
rolloverTimeline.setDuration(2500);
button.addMouseTrackListener(new MouseTrackAdapter() {
@Override
public void mouseEnter(MouseEvent e) {
rolloverTimeline.play();
}
@Override
public void mouseExit(MouseEvent e) {
rolloverTimeline.playReverse();
}
});
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
display.dispose();
}
}
As with Swing, the Control.setForeground(Color)
method is used together with the built in property interpolator for the org.eclipse.swt.graphics.Color
class to run the timeline that interpolates the foreground color of an SWT radio button. Note that since the Control.setForeground(Color)
also repaints the button, there is no need to explicitly repaint it on every timeline pulse.
If you debug this application and put a breakpoint in the Control.setForeground(Color)
method, you will see that it is called on the SWT Thread. This is a built-in capability of the Trident core. It recognizes that the timeline is associated with a SWT component, and calls the setter method (during the timeline pulses) on the SWT thread.
Finally, since both examples are using the Timeline.play()
and Timeline.playReverse()
methods, the interpolation can be reversed in the middle if the user moves the mouse quickly. The rollover timeline in our example takes 2.5 seconds to complete. Suppose the user moves the mouse over the button, and then after one second moves the mouse away. The call to playReverse
detects that this very timeline is already playing, and starts playing it in reverse from its current position.