SystemTray/src/dorkbox/util/tray/SystemTrayMenuPopup.java

64 lines
1.6 KiB
Java
Raw Normal View History

2014-11-03 02:11:03 +01:00
package dorkbox.util.tray;
import java.awt.*;
2014-11-03 02:11:03 +01:00
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import javax.swing.*;
2014-11-03 02:11:03 +01:00
import dorkbox.util.DelayTimer;
public class SystemTrayMenuPopup extends JPopupMenu {
private static final long serialVersionUID = 1L;
2014-11-03 02:11:03 +01:00
private DelayTimer timer;
2014-11-03 02:11:03 +01:00
public SystemTrayMenuPopup() {
super();
2014-11-03 02:11:03 +01:00
this.timer = new DelayTimer("PopupMenuHider", true, new DelayTimer.Callback() {
@Override
public void execute() {
SwingUtilities.invokeLater(new Runnable() {
2014-11-03 02:11:03 +01:00
@Override
public void run() {
Point location = MouseInfo.getPointerInfo().getLocation();
Point locationOnScreen = getLocationOnScreen();
Dimension size = getSize();
2014-11-03 02:11:03 +01:00
if (location.x >= locationOnScreen.x && location.x < locationOnScreen.x + size.width &&
location.y >= locationOnScreen.y && location.y < locationOnScreen.y + size.height) {
SystemTrayMenuPopup.this.timer.delay(SystemTrayMenuPopup.this.timer.getDelay());
} else {
setVisible(false);
2014-11-03 02:11:03 +01:00
}
}
2014-11-03 02:11:03 +01:00
});
}
});
addMouseListener(new MouseAdapter() {
@Override
public void mouseExited(MouseEvent event) {
// wait before checking if mouse is still on the menu
SystemTrayMenuPopup.this.timer.delay(SystemTrayMenuPopup.this.timer.getDelay());
}
});
}
@Override
public void setVisible(boolean b) {
this.timer.cancel();
if (b) {
// if the mouse isn't inside the popup in 5 seconds, close the popup
this.timer.delay(5000L);
2014-11-03 02:11:03 +01:00
}
super.setVisible(b);
}
}