SystemTray/src/dorkbox/systemTray/swingUI/SwingMenu.java

220 lines
7.3 KiB
Java
Raw Normal View History

2016-10-11 15:23:58 +02:00
/*
* Copyright 2014 dorkbox, llc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package dorkbox.systemTray.swingUI;
import java.io.File;
import javax.swing.ImageIcon;
import javax.swing.JComponent;
import dorkbox.systemTray.Checkbox;
2016-10-11 15:23:58 +02:00
import dorkbox.systemTray.Entry;
import dorkbox.systemTray.Menu;
import dorkbox.systemTray.MenuItem;
import dorkbox.systemTray.Separator;
2016-10-11 15:23:58 +02:00
import dorkbox.systemTray.SystemTray;
import dorkbox.systemTray.util.MenuHook;
import dorkbox.systemTray.util.Status;
2016-10-11 15:23:58 +02:00
import dorkbox.systemTray.util.SystemTrayFixes;
import dorkbox.util.SwingUtil;
// this is a weird composite class, because it must be a Menu, but ALSO a Entry -- so it has both (and duplicate code)
2016-10-11 15:23:58 +02:00
@SuppressWarnings("ForLoopReplaceableByForEach")
class SwingMenu implements MenuHook {
2016-10-11 15:23:58 +02:00
final JComponent _native;
private final SwingMenu parent;
2016-10-11 15:23:58 +02:00
// This is NOT a copy constructor!
@SuppressWarnings("IncompleteCopyConstructor")
SwingMenu(final SwingMenu parent) {
this.parent = parent;
if (parent == null) {
this._native = new TrayPopup();
}
else {
this._native = new AdjustedJMenu();
parent._native.add(this._native);
}
2016-10-11 15:23:58 +02:00
}
@Override
public
void add(final Menu parentMenu, final Entry entry, final int index) {
// must always be called on the EDT
SwingUtil.invokeLater(new Runnable() {
@Override
public
void run() {
if (entry instanceof Menu) {
SwingMenu swingMenu = new SwingMenu(SwingMenu.this);
((Menu) entry).bind(swingMenu, parentMenu, parentMenu.getSystemTray());
}
else if (entry instanceof Separator) {
SwingMenuItemSeparator item = new SwingMenuItemSeparator(SwingMenu.this);
entry.bind(item, parentMenu, parentMenu.getSystemTray());
}
else if (entry instanceof Checkbox) {
SwingMenuItemCheckbox item = new SwingMenuItemCheckbox(SwingMenu.this);
((Checkbox) entry).bind(item, parentMenu, parentMenu.getSystemTray());
}
else if (entry instanceof Status) {
SwingMenuItemStatus item = new SwingMenuItemStatus(SwingMenu.this);
((Status) entry).bind(item, parentMenu, parentMenu.getSystemTray());
}
else if (entry instanceof MenuItem) {
SwingMenuItem item = new SwingMenuItem(SwingMenu.this);
((MenuItem) entry).bind(item, parentMenu, parentMenu.getSystemTray());
}
}
});
2016-10-11 15:23:58 +02:00
}
// is overridden in tray impl
2016-10-11 15:23:58 +02:00
@Override
public
void setImage(final MenuItem menuItem) {
final File imageFile = menuItem.getImage();
2016-10-11 15:23:58 +02:00
SwingUtil.invokeLater(new Runnable() {
2016-10-11 15:23:58 +02:00
@Override
public
void run() {
if (imageFile != null) {
ImageIcon origIcon = new ImageIcon(imageFile.getAbsolutePath());
((AdjustedJMenu) _native).setIcon(origIcon);
}
else {
((AdjustedJMenu) _native).setIcon(null);
2016-10-11 15:23:58 +02:00
}
}
});
}
// is overridden in tray impl
@Override
public
void setEnabled(final MenuItem menuItem) {
SwingUtil.invokeLater(new Runnable() {
2016-10-11 15:23:58 +02:00
@Override
public
void run() {
_native.setEnabled(menuItem.getEnabled());
2016-10-11 15:23:58 +02:00
}
});
}
// is overridden in tray impl
@Override
2016-10-11 15:23:58 +02:00
public
void setText(final MenuItem menuItem) {
SwingUtil.invokeLater(new Runnable() {
2016-10-11 15:23:58 +02:00
@Override
public
void run() {
((AdjustedJMenu) _native).setText(menuItem.getText());
2016-10-11 15:23:58 +02:00
}
});
}
@Override
public
void setCallback(final MenuItem menuItem) {
// can't have a callback for menus!
2016-10-11 15:23:58 +02:00
}
// is overridden in tray impl
2016-10-11 15:23:58 +02:00
@Override
public
void setShortcut(final MenuItem menuItem) {
char shortcut = menuItem.getShortcut();
// yikes...
final int vKey = SystemTrayFixes.getVirtualKey(shortcut);
SwingUtil.invokeLater(new Runnable() {
2016-10-11 15:23:58 +02:00
@Override
public
void run() {
((AdjustedJMenu) _native).setMnemonic(vKey);
2016-10-11 15:23:58 +02:00
}
});
}
/**
* This removes all menu entries from this menu AND this menu from it's parent
*/
2016-10-11 15:23:58 +02:00
@Override
public synchronized
2016-10-11 15:23:58 +02:00
void remove() {
SwingUtil.invokeLater(new Runnable() {
2016-10-11 15:23:58 +02:00
@Override
public
void run() {
_native.setVisible(false);
_native.removeAll();
2016-10-11 15:23:58 +02:00
if (parent != null) {
parent._native.remove(_native);
}
else {
// have to dispose of the tray popup hidden frame, otherwise the app will never close (because this will hold it open)
((TrayPopup) _native).close();
2016-10-11 15:23:58 +02:00
}
}
});
}
// NOT ALWAYS CALLED ON EDT
protected
void remove__(final Object menuEntry) {
try {
// synchronized (menuEntries) {
// // null is passed in when a sub-menu is removing itself from us (because they have already called "remove" and have also
// // removed themselves from the menuEntries)
// if (menuEntry != null) {
// for (Iterator<Entry> iterator = menuEntries.iterator(); iterator.hasNext(); ) {
// final Entry entry = iterator.next();
// if (entry == menuEntry) {
// iterator.remove();
// entry.remove();
// break;
// }
// }
// }
//
// // now check to see if a spacer is at the top/bottom of the list (and remove it if so. This is a recursive function.
// if (!menuEntries.isEmpty()) {
// if (menuEntries.get(0) instanceof dorkbox.systemTray.Separator) {
// remove(menuEntries.get(0));
// }
// }
// // now check to see if a spacer is at the top/bottom of the list (and remove it if so. This is a recursive function.
// if (!menuEntries.isEmpty()) {
// if (menuEntries.get(menuEntries.size()-1) instanceof dorkbox.systemTray.Separator) {
// remove(menuEntries.get(menuEntries.size() - 1));
// }
// }
// }
} catch (Exception e) {
SystemTray.logger.error("Error removing entry from menu.", e);
}
}
2016-10-11 15:23:58 +02:00
}