有闪动的托盘消息效果,java swing
// -*- mode:java; encoding:utf-8 -*-
// vim:set fileencoding=utf-8:
// @homepage@
package example;
import java.awt.*;
import java.util.stream.Stream;
import javax.swing.*;
public class MainPanel extends JPanel {
private final JDialog dialog = new JDialog();
private final Timer animator = new Timer(100, null);
private final transient Image[] imglist = new Image[4];
private final transient TrayIcon icon;
private int idx;
public MainPanel() {
super();
setPreferredSize(new Dimension(320, 240));
if (!SystemTray.isSupported()) {
throw new UnsupportedOperationException("SystemTray is not supported");
}
Class<?> clz = MainPanel.class;
imglist[0] = new ImageIcon(clz.getResource("16x16.png")).getImage();
imglist[1] = new ImageIcon(clz.getResource("16x16l.png")).getImage();
imglist[2] = imglist[0];
imglist[3] = new ImageIcon(clz.getResource("16x16r.png")).getImage();
dialog.setDefaultCloseOperation(WindowConstants.HIDE_ON_CLOSE);
dialog.setSize(new Dimension(120, 100));
dialog.setLocationRelativeTo(null);
dialog.setTitle("TEST: JDialog");
// TEST: icon = new TrayIcon(new ImageIcon(getClass().getResource("anime.gif")).getImage(), "TRAY", popup);
icon = new TrayIcon(imglist[0], "TRAY", makeTrayPopupMenu());
animator.addActionListener(e -> {
icon.setImage(imglist[idx]);
idx = (idx 1) % imglist.length;
});
try {
SystemTray.getSystemTray().add(icon);
} catch (AWTException ex) {
throw new IllegalStateException(ex);
}
}
protected final PopupMenu makeTrayPopupMenu() {
MenuItem item1 = new MenuItem("Open:Frame");
item1.addActionListener(e -> {
Container c = getTopLevelAncestor();
if (c instanceof Window) {
((Window) c).setVisible(true);
}
});
MenuItem item2 = new MenuItem("Open:Dialog");
item2.addActionListener(e -> dialog.setVisible(true));
MenuItem item3 = new MenuItem("Animation:Start");
item3.addActionListener(e -> animator.start());
MenuItem item4 = new MenuItem("Animation:Stop");
item4.addActionListener(e -> {
animator.stop();
icon.setImage(imglist[0]);
});
MenuItem item5 = new MenuItem("Exit");
item5.addActionListener(e -> {
animator.stop();
SystemTray tray = SystemTray.getSystemTray();
Stream.of(tray.getTrayIcons()).forEach(tray::remove);
Stream.of(Frame.getFrames()).forEach(Frame::dispose);
});
PopupMenu popup = new PopupMenu();
popup.add(item1);
popup.add(item2);
popup.addSeparator();
popup.add(item3);
popup.add(item4);
popup.addSeparator();
popup.add(item5);
return popup;
}
public static void main(String... args) {
EventQueue.invokeLater(new Runnable() {
@Override public void run() {
createAndShowGui();
}
});
}
public static void createAndShowGui() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
ex.printStackTrace();
Toolkit.getDefaultToolkit().beep();
}
JFrame frame = new JFrame("@title@");
// frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
frame.setDefaultCloseOperation(WindowConstants.HIDE_ON_CLOSE);
frame.getContentPane().add(new MainPanel());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
}
资源文件列表
config/jnlp.xml , 433
config/properties.xml , 2145
config.gradle , 152
run.bat , 526
run.sh , 614
src/java/example/16x16.png , 142
src/java/example/16x16l.png , 137
src/java/example/16x16r.png , 134
src/java/example/MainPanel.java , 3525
src/java/example/anime.gif , 255
src/web/example.jnlp , 537
src/web/index.html , 341
src/web/screenshot.png , 8183
target/classes/example/16x16.png , 142
target/classes/example/16x16l.png , 137
target/classes/example/16x16r.png , 134
target/classes/example/MainPanel$1.class , 516
target/classes/example/MainPanel.class , 6448
target/classes/example/anime.gif , 255
target/example.jnlp , 651
target/index.html , 527
target/screenshot.png , 8183
target/src/example/16x16.png , 142
target/src/example/16x16l.png , 137
target/src/example/16x16r.png , 134
target/src/example/MainPanel.java , 3578
target/src/example/anime.gif , 255
