SystemTray/test/dorkbox/TestTray.java

168 lines
5.8 KiB
Java
Raw Normal View History

2015-11-09 16:21:15 +01:00
/*
* Copyright 2015 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;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
2016-09-22 16:18:50 +02:00
import java.net.URL;
import dorkbox.systemTray.Checkbox;
import dorkbox.systemTray.Menu;
import dorkbox.systemTray.MenuItem;
import dorkbox.systemTray.Separator;
import dorkbox.systemTray.SystemTray;
2017-07-15 18:25:46 +02:00
import dorkbox.util.CacheUtil;
import dorkbox.util.SwingUtil;
2015-11-09 16:21:15 +01:00
/**
* Icons from 'SJJB Icons', public domain/CC0 icon set
*/
public
class TestTray {
public static final URL BLUE_CAMPING = TestTray.class.getResource("accommodation_camping.glow.0092DA.32.png");
public static final URL BLACK_FIRE = TestTray.class.getResource("amenity_firestation.p.000000.32.png");
public static final URL BLACK_MAIL = TestTray.class.getResource("amenity_post_box.p.000000.32.png");
public static final URL GREEN_MAIL = TestTray.class.getResource("amenity_post_box.p.39AC39.32.png");
public static final URL BLACK_BUS = TestTray.class.getResource("transport_bus_station.p.000000.32.png");
public static final URL LT_GRAY_BUS = TestTray.class.getResource("transport_bus_station.p.999999.32.png");
public static final URL BLACK_TRAIN = TestTray.class.getResource("transport_train_station.p.000000.32.png");
public static final URL GREEN_TRAIN = TestTray.class.getResource("transport_train_station.p.39AC39.32.png");
public static final URL LT_GRAY_TRAIN = TestTray.class.getResource("transport_train_station.p.666666.32.png");
2015-11-09 16:21:15 +01:00
public static
void main(String[] args) {
2016-04-05 14:05:53 +02:00
// make sure JNA jar is on the classpath!
2015-11-09 16:21:15 +01:00
new TestTray();
}
private SystemTray systemTray;
private ActionListener callbackGray;
2015-11-09 16:21:15 +01:00
public
TestTray() {
2017-07-15 18:25:46 +02:00
CacheUtil.clear(); // for test apps, make sure the cache is always reset. You should never do this in production.
2017-07-14 00:46:12 +02:00
2017-07-15 18:25:46 +02:00
SwingUtil.setLookAndFeel(null); // set Native L&F (this is the System L&F instead of CrossPlatform L&F)
2017-07-14 00:46:12 +02:00
// SystemTray.SWING_UI = new CustomSwingUI();
this.systemTray = SystemTray.get();
if (systemTray == null) {
throw new RuntimeException("Unable to load SystemTray!");
}
systemTray.setTooltip("Mail Checker");
systemTray.setImage(LT_GRAY_TRAIN);
2015-11-09 16:21:15 +01:00
systemTray.setStatus("No Mail");
callbackGray = new ActionListener() {
@Override
public
void actionPerformed(final ActionEvent e) {
final MenuItem entry = (MenuItem) e.getSource();
systemTray.setStatus(null);
systemTray.setImage(BLACK_TRAIN);
entry.setCallback(null);
// systemTray.setStatus("Mail Empty");
systemTray.getMenu().remove(entry);
System.err.println("POW");
}
};
Menu mainMenu = systemTray.getMenu();
MenuItem greenEntry = new MenuItem("Green Mail", new ActionListener() {
2015-11-09 16:21:15 +01:00
@Override
public
void actionPerformed(final ActionEvent e) {
final MenuItem entry = (MenuItem) e.getSource();
2015-11-09 16:21:15 +01:00
systemTray.setStatus("Some Mail!");
systemTray.setImage(GREEN_TRAIN);
2016-10-10 00:26:52 +02:00
entry.setCallback(callbackGray);
entry.setImage(BLACK_MAIL);
entry.setText("Delete Mail");
// systemTray.remove(menuEntry);
2015-11-09 16:21:15 +01:00
}
});
greenEntry.setImage(GREEN_MAIL);
// case does not matter
greenEntry.setShortcut('G');
mainMenu.add(greenEntry);
2015-11-09 16:21:15 +01:00
Checkbox checkbox = new Checkbox("Euro € Mail", new ActionListener() {
2015-11-09 16:21:15 +01:00
@Override
public
void actionPerformed(final ActionEvent e) {
System.err.println("Am i checked? " + ((Checkbox) e.getSource()).getChecked());
2015-11-09 16:21:15 +01:00
}
});
checkbox.setShortcut('€');
mainMenu.add(checkbox);
mainMenu.add(new Separator());
2015-11-09 16:21:15 +01:00
Menu submenu = new Menu("Options", BLUE_CAMPING);
submenu.setShortcut('t');
mainMenu.add(submenu);
MenuItem disableMenu = new MenuItem("Disable menu", BLACK_BUS, new ActionListener() {
2015-11-09 16:21:15 +01:00
@Override
public
void actionPerformed(final ActionEvent e) {
MenuItem source = (MenuItem) e.getSource();
source.getParent().setEnabled(false);
}
});
submenu.add(disableMenu);
submenu.add(new MenuItem("Hide tray", LT_GRAY_BUS, new ActionListener() {
@Override
public
void actionPerformed(final ActionEvent e) {
systemTray.setEnabled(false);
}
}));
submenu.add(new MenuItem("Remove menu", BLACK_FIRE, new ActionListener() {
@Override
public
void actionPerformed(final ActionEvent e) {
MenuItem source = (MenuItem) e.getSource();
source.getParent().remove();
}
}));
systemTray.getMenu().add(new MenuItem("Quit", new ActionListener() {
@Override
public
void actionPerformed(final ActionEvent e) {
systemTray.shutdown();
//System.exit(0); not necessary if all non-daemon threads have stopped.
2015-11-09 16:21:15 +01:00
}
})).setShortcut('q'); // case does not matter
2015-11-09 16:21:15 +01:00
}
}