davmail/src/java/davmail/ui/tray/FrameGatewayTray.java

330 lines
11 KiB
Java

/*
* DavMail POP/IMAP/SMTP/CalDav/LDAP Exchange Gateway
* Copyright (C) 2009 Mickael Guessant
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package davmail.ui.tray;
import davmail.BundleMessage;
import davmail.DavGateway;
import davmail.Settings;
import davmail.ui.AboutFrame;
import davmail.ui.SettingsFrame;
import org.apache.log4j.Level;
import org.apache.log4j.Logger;
import org.apache.log4j.lf5.LF5Appender;
import org.apache.log4j.lf5.LogLevel;
import org.apache.log4j.lf5.viewer.LogBrokerMonitor;
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
/**
* Failover GUI for Java 1.5 without SWT
*/
public class FrameGatewayTray implements DavGatewayTrayInterface {
protected FrameGatewayTray() {
}
static JFrame mainFrame;
static AboutFrame aboutFrame;
static SettingsFrame settingsFrame;
LogBrokerMonitor logBrokerMonitor;
private static JEditorPane errorArea;
private static JLabel errorLabel;
private static JEditorPane messageArea;
private static Image image;
private static Image image2;
private static Image inactiveImage;
private boolean isActive = true;
/**
* Return AWT Image icon for frame title.
*
* @return frame icon
*/
public Image getFrameIcon() {
return image;
}
/**
* Switch tray icon between active and standby icon.
*/
public void switchIcon() {
isActive = true;
SwingUtilities.invokeLater(new Runnable() {
public void run() {
Image currentImage = mainFrame.getIconImage();
if (currentImage != null && currentImage.equals(image)) {
mainFrame.setIconImage(image2);
} else {
mainFrame.setIconImage(image);
}
}
});
}
/**
* Set tray icon to inactive (network down)
*/
public void resetIcon() {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
mainFrame.setIconImage(image);
}
});
}
/**
* Set tray icon to inactive (network down)
*/
public void inactiveIcon() {
isActive = false;
SwingUtilities.invokeLater(new Runnable() {
public void run() {
mainFrame.setIconImage(inactiveImage);
}
});
}
/**
* Check if current tray status is inactive (network down).
*
* @return true if inactive
*/
public boolean isActive() {
return isActive;
}
/**
* Log and display balloon message according to log level.
*
* @param message text message
* @param level log level
*/
public void displayMessage(final String message, final Level level) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
if (errorArea != null && messageArea != null) {
if (level.equals(Level.INFO)) {
errorLabel.setIcon(UIManager.getIcon("OptionPane.informationIcon"));
errorArea.setText(message);
} else if (level.equals(Level.WARN)) {
errorLabel.setIcon(UIManager.getIcon("OptionPane.warningIcon"));
errorArea.setText(message);
} else if (level.equals(Level.ERROR)) {
errorLabel.setIcon(UIManager.getIcon("OptionPane.errorIcon"));
errorArea.setText(message);
}
messageArea.setText(message);
}
}
});
}
/**
* Open about window
*/
public void about() {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
aboutFrame.update();
aboutFrame.setVisible(true);
aboutFrame.toFront();
aboutFrame.requestFocus();
}
});
}
/**
* Open settings window
*/
public void preferences() {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
settingsFrame.reload();
settingsFrame.setVisible(true);
settingsFrame.toFront();
settingsFrame.repaint();
settingsFrame.requestFocus();
}
});
}
/**
* Open logging window.
*/
public void showLogs() {
Logger rootLogger = Logger.getRootLogger();
LF5Appender lf5Appender = (LF5Appender) rootLogger.getAppender("LF5Appender");
if (lf5Appender == null) {
logBrokerMonitor = new LogBrokerMonitor(LogLevel.getLog4JLevels()) {
@Override
protected void closeAfterConfirm() {
hide();
}
};
lf5Appender = new LF5Appender(logBrokerMonitor);
lf5Appender.setName("LF5Appender");
rootLogger.addAppender(lf5Appender);
}
lf5Appender.getLogBrokerMonitor().show();
}
/**
* Create tray icon and register frame listeners.
*/
public void init() {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGUI();
}
});
}
public void dispose() {
// dispose frames
settingsFrame.dispose();
aboutFrame.dispose();
if (logBrokerMonitor != null) {
logBrokerMonitor.dispose();
}
}
protected void buildMenu() {
// create a popup menu
JMenu menu = new JMenu(BundleMessage.format("UI_DAVMAIL_GATEWAY"));
JMenuBar menuBar = new JMenuBar();
menuBar.add(menu);
mainFrame.setJMenuBar(menuBar);
// create an action settingsListener to listen for settings action executed on the tray icon
ActionListener aboutListener = new ActionListener() {
public void actionPerformed(ActionEvent e) {
about();
}
};
// create menu item for the default action
JMenuItem aboutItem = new JMenuItem(BundleMessage.format("UI_ABOUT"));
aboutItem.addActionListener(aboutListener);
menu.add(aboutItem);
// create an action settingsListener to listen for settings action executed on the tray icon
ActionListener settingsListener = new ActionListener() {
public void actionPerformed(ActionEvent e) {
preferences();
}
};
// create menu item for the default action
JMenuItem defaultItem = new JMenuItem(BundleMessage.format("UI_SETTINGS"));
defaultItem.addActionListener(settingsListener);
menu.add(defaultItem);
JMenuItem logItem = new JMenuItem(BundleMessage.format("UI_SHOW_LOGS"));
logItem.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
showLogs();
}
});
menu.add(logItem);
// create an action exitListener to listen for exit action executed on the tray icon
ActionListener exitListener = new ActionListener() {
public void actionPerformed(ActionEvent e) {
try {
DavGateway.stop();
} catch (Exception exc) {
DavGatewayTray.error(exc);
}
// make sure we do exit
System.exit(0);
}
};
// create menu item for the exit action
JMenuItem exitItem = new JMenuItem(BundleMessage.format("UI_EXIT"));
exitItem.addActionListener(exitListener);
menu.add(exitItem);
}
protected void createAndShowGUI() {
System.setProperty("swing.defaultlaf", UIManager.getSystemLookAndFeelClassName());
image = DavGatewayTray.loadImage("tray.png");
image2 = DavGatewayTray.loadImage(AwtGatewayTray.TRAY_ACTIVE_PNG);
inactiveImage = DavGatewayTray.loadImage(AwtGatewayTray.TRAY_INACTIVE_PNG);
mainFrame = new JFrame();
mainFrame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
mainFrame.setTitle(BundleMessage.format("UI_DAVMAIL_GATEWAY"));
mainFrame.setIconImage(image);
JPanel errorPanel = new JPanel();
errorPanel.setBorder(BorderFactory.createTitledBorder(BundleMessage.format("UI_LAST_MESSAGE")));
errorPanel.setLayout(new BoxLayout(errorPanel, BoxLayout.X_AXIS));
errorArea = new JTextPane();
errorArea.setEditable(false);
errorArea.setBackground(mainFrame.getBackground());
errorLabel = new JLabel();
errorPanel.add(errorLabel);
errorPanel.add(errorArea);
JPanel messagePanel = new JPanel();
messagePanel.setBorder(BorderFactory.createTitledBorder(BundleMessage.format("UI_LAST_LOG")));
messagePanel.setLayout(new BoxLayout(messagePanel, BoxLayout.X_AXIS));
messageArea = new JTextPane();
messageArea.setText(BundleMessage.format("LOG_STARTING_DAVMAIL"));
messageArea.setEditable(false);
messageArea.setBackground(mainFrame.getBackground());
messagePanel.add(messageArea);
JPanel mainPanel = new JPanel();
mainPanel.setLayout(new BoxLayout(mainPanel, BoxLayout.Y_AXIS));
mainPanel.add(errorPanel);
mainPanel.add(messagePanel);
mainFrame.add(mainPanel);
aboutFrame = new AboutFrame();
settingsFrame = new SettingsFrame();
buildMenu();
mainFrame.setMinimumSize(new Dimension(400, 180));
mainFrame.pack();
// workaround MacOSX
if (mainFrame.getSize().width < 400 || mainFrame.getSize().height < 180) {
mainFrame.setSize(Math.max(mainFrame.getSize().width, 400),
Math.max(mainFrame.getSize().height, 180));
}
// center frame
mainFrame.setLocation(mainFrame.getToolkit().getScreenSize().width / 2 -
mainFrame.getSize().width / 2,
mainFrame.getToolkit().getScreenSize().height / 2 -
mainFrame.getSize().height / 2);
mainFrame.setVisible(true);
// display settings frame on first start
if (Settings.isFirstStart()) {
settingsFrame.setVisible(true);
settingsFrame.toFront();
settingsFrame.repaint();
settingsFrame.requestFocus();
}
}
}