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

90 lines
3.1 KiB
Java
Raw Normal View History

2014-11-03 02:11:03 +01:00
package dorkbox.util.tray;
2014-11-24 17:40:06 +01:00
import java.awt.Dimension;
import java.awt.MouseInfo;
import java.awt.Point;
2014-11-03 02:11:03 +01:00
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
2014-11-24 17:40:06 +01:00
import javax.swing.JPopupMenu;
2014-11-03 02:11:03 +01:00
import dorkbox.util.DelayTimer;
import dorkbox.util.SwingUtil;
2014-11-03 02:11:03 +01:00
public class SystemTrayMenuPopup extends JPopupMenu {
2014-11-24 17:40:06 +01:00
private static final long serialVersionUID = 1L;
2014-11-03 02:11:03 +01:00
/** Allows you to customize the delay (for hiding the popup) when the cursor is "moused out" of the popup menu */
public static long hidePopupDelay = 1000L;
2014-11-24 17:40:06 +01:00
private DelayTimer timer;
2014-11-03 02:11:03 +01:00
protected boolean mouseStillOnMenu;
// private JDialog hiddenDialog;
2014-11-24 17:40:06 +01:00
public SystemTrayMenuPopup() {
super();
setFocusable(true);
2014-11-03 02:11:03 +01:00
2014-11-24 17:40:06 +01:00
this.timer = new DelayTimer("PopupMenuHider", true, new DelayTimer.Callback() {
@Override
public void execute() {
SwingUtil.invokeLater(new Runnable() {
2014-11-24 17:40:06 +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
2014-11-24 17:40:06 +01:00
if (location.x >= locationOnScreen.x && location.x < locationOnScreen.x + size.width
&& location.y >= locationOnScreen.y && location.y < locationOnScreen.y + size.height) {
2014-11-03 02:11:03 +01:00
2014-11-24 17:40:06 +01:00
SystemTrayMenuPopup.this.timer.delay(SystemTrayMenuPopup.this.timer.getDelay());
} else {
setVisible(false);
}
}
});
}
});
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());
2014-11-03 02:11:03 +01:00
}
});
// Does not work correctly on linux. a window in the taskbar shows up.
/* Initialize the hidden dialog as a headless, titleless dialog window */
// this.hiddenDialog = new JDialog((Frame)null);
// this.hiddenDialog.setEnabled(false);
// this.hiddenDialog.setUndecorated(true);
//
// this.hiddenDialog.setSize(5, 5);
// /* Add the window focus listener to the hidden dialog */
// this.hiddenDialog.addWindowFocusListener(new WindowFocusListener () {
// @Override
// public void windowLostFocus (WindowEvent we ) {
// SystemTrayMenuPopup.this.setVisible(false);
// }
// @Override
// public void windowGainedFocus (WindowEvent we) {}
// });
}
2014-11-24 17:40:06 +01:00
@Override
public void setVisible(boolean makeVisible) {
2014-11-24 17:40:06 +01:00
this.timer.cancel();
if (makeVisible) {
// if the mouse isn't inside the popup in x seconds, close the popup
this.timer.delay(hidePopupDelay);
2014-11-24 17:40:06 +01:00
}
// this.hiddenDialog.setVisible(makeVisible);
super.setVisible(makeVisible);
2014-11-24 17:40:06 +01:00
}
}