package esmska.gui; import esmska.Context; import esmska.data.Icons; import esmska.data.SMS; import esmska.utils.L10N; import java.awt.Component; import java.awt.Image; import java.awt.Rectangle; import java.awt.Toolkit; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.ContainerAdapter; import java.awt.event.ContainerEvent; import java.awt.event.FocusAdapter; import java.awt.event.FocusEvent; import java.awt.event.KeyEvent; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; import java.util.ArrayList; import java.util.ResourceBundle; import java.util.logging.Level; import java.util.logging.Logger; import javax.swing.AbstractAction; import javax.swing.GroupLayout; import javax.swing.GroupLayout.Alignment; import javax.swing.JComponent; import javax.swing.JFrame; import javax.swing.JScrollPane; import javax.swing.KeyStroke; import javax.swing.WindowConstants; import org.jdesktop.swingx.JXTaskPane; import org.jdesktop.swingx.JXTaskPaneContainer; /** Dialog for various alerts from gateways * * @author ripper */ public class GatewayMessageFrame extends JFrame { //this would be better as a JDialog, but there is a focus problem after //application switching on Windows 7, and making it a JFrame solves it //see: http://code.google.com/p/esmska/issues/detail?id=341 private static GatewayMessageFrame instance; private static final ResourceBundle l10n = L10N.l10nBundle; private static final Logger logger = Logger.getLogger(GatewayMessageFrame.class.getName()); /** index of the last TaskPane removed from the taskContainer */ private int lastPaneRemovedIndex = 0; /** Creates new form GatewayMessageFrame */ private GatewayMessageFrame(java.awt.Frame parent) { super(); instance = this; initComponents(); setLocationRelativeTo(parent); //set window images ArrayList<Image> images = new ArrayList<Image>(); images.add(Icons.get("message-16.png").getImage()); images.add(Icons.get("message-22.png").getImage()); images.add(Icons.get("message-32.png").getImage()); images.add(Icons.get("message-48.png").getImage()); setIconImages(images); //close on Ctrl+W String command = "close"; getRootPane().getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put(KeyStroke.getKeyStroke( KeyEvent.VK_W, Toolkit.getDefaultToolkit().getMenuShortcutKeyMask()), command); getRootPane().getActionMap().put(command, new AbstractAction() { @Override public void actionPerformed(ActionEvent e) { close(); } }); // update container on change taskContainer.addContainerListener(new ContainerAdapter() { @Override public void componentAdded(ContainerEvent e) { containersChanged(); } @Override public void componentRemoved(ContainerEvent e) { containersChanged(); } private void containersChanged() { expandNextPane(); updateVisibility(); } }); } /* Get existing instance of GatewayMessageFrame or create a new instance */ public static GatewayMessageFrame getInstance() { if (instance == null) { instance = new GatewayMessageFrame(Context.mainFrame); } return instance; } /** Add a message about SMS sending error * @param sms sms that failed */ public void addErrorMsg(SMS sms) { logger.log(Level.FINER, "Adding error message: {0}", sms); GatewayErrorMessage gem = new GatewayErrorMessage(); final TaskPane taskPane = gem.showErrorMsg(sms); gem.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent e) { if (e.getID() == GatewayMessage.CLOSE_ME) { removeTaskPane(taskPane); } } }); taskContainer.add(taskPane); } /** Add a message with a security image that needs to be recognized * @param sms sms with security image that needs to be recognized */ public void addImageCodeMsg(SMS sms, final ActionListener callback) { logger.log(Level.FINER, "Adding image code message: {0}", sms); GatewayImageCodeMessage gicm = new GatewayImageCodeMessage(); final TaskPane taskPane = gicm.showImageCodeMsg(sms); gicm.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent e) { // remove the TaskPane when it wants to be removed if (e.getID() == GatewayMessage.CLOSE_ME) { removeTaskPane(taskPane); callback.actionPerformed(e); } } }); taskContainer.add(taskPane); } /** Hide and dispose this frame, but clean up first */ private void close() { formWindowClosing(null); setVisible(false); dispose(); //when window shown next time, expand the first task pane lastPaneRemovedIndex = 0; } /** Remove a taskPane from the container */ private void removeTaskPane(TaskPane taskPane) { // find the index of this taskPane to remember it lastPaneRemovedIndex = 0; Component[] comps = taskContainer.getComponents(); for (int i = 0; i < comps.length; i++) { if (comps[i] == taskPane) { lastPaneRemovedIndex = i; } } //and remove it taskContainer.remove(taskPane); } /** Expand the next TaskPane. * Call this after some TaskPane has been removed. */ private void expandNextPane() { Component[] comps = taskContainer.getComponents(); if (comps.length <= 0) { return; } // expand the TaskPane following the most recently removed one // otherwise the first one TaskPane taskPane = (TaskPane) comps[0]; if (lastPaneRemovedIndex < comps.length) { taskPane = (TaskPane) comps[lastPaneRemovedIndex]; } taskPane.setCollapsed(false); // focus components in the message taskPane.getGatewayMessage().setBestFocus(); } /** Transfer focus to the first expanded pane */ private void focusPane() { for (Component comp : taskContainer.getComponents()) { TaskPane taskPane = (TaskPane) comp; if (!taskPane.isCollapsed()) { taskPane.getGatewayMessage().setBestFocus(); break; } } } /** Update visibility of this dialog - show when having some TaskPanes, hide otherwise.*/ private void updateVisibility() { boolean wasVisible = isVisible(); setVisible(taskContainer.getComponentCount() > 0); if (wasVisible && !isVisible()) { close(); } if (!wasVisible && isVisible()) { logger.finer("Showing GatewayMessageFrame"); focusPane(); toFront(); } } /** This method is called from within the constructor to * initialize the form. * WARNING: Do NOT modify this code. The content of this method is * always regenerated by the Form Editor. */ @SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { jScrollPane1 = new JScrollPane(); taskContainer = new JXTaskPaneContainer(); setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE); setTitle(l10n.getString("GatewayMessageFrame.title")); // NOI18N addWindowListener(new WindowAdapter() { public void windowClosing(WindowEvent evt) { formWindowClosing(evt); } }); jScrollPane1.setBorder(null); taskContainer.setOpaque(false); jScrollPane1.setViewportView(taskContainer); GroupLayout layout = new GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(Alignment.LEADING) .addComponent(jScrollPane1, GroupLayout.DEFAULT_SIZE, 477, Short.MAX_VALUE) ); layout.setVerticalGroup( layout.createParallelGroup(Alignment.LEADING) .addComponent(jScrollPane1, GroupLayout.DEFAULT_SIZE, 317, Short.MAX_VALUE) ); pack(); }// </editor-fold>//GEN-END:initComponents private void formWindowClosing(WindowEvent evt) {//GEN-FIRST:event_formWindowClosing // cancel all TaskPanes when dialog closed logger.finer("Hiding GatewayMessageDialog, cancelling all requests"); for (Component comp : taskContainer.getComponents()) { TaskPane taskPane = (TaskPane) comp; taskPane.getGatewayMessage().cancel(); } }//GEN-LAST:event_formWindowClosing /** A JXTaskPane override that allows easy interaction with included GatewayMessage */ public static class TaskPane extends JXTaskPane { private GatewayMessage gm; /** Create new TaskPane containing GatewayMessage */ public TaskPane(GatewayMessage gm) { this.gm = gm; this.add(gm); //cancel on Escape String command = "cancel"; this.getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT).put( KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0), command); this.getActionMap().put(command, new AbstractAction() { @Override public void actionPerformed(ActionEvent e) { getGatewayMessage().cancel(); } }); // workaround bug where collapsible state is not toggled by keyboard // (will be fixed in more recent release of swingx) // https://substance-swingx.dev.java.net/issues/show_bug.cgi?id=17 command = "toggle-collapse"; this.getInputMap(JComponent.WHEN_FOCUSED).put( KeyStroke.getKeyStroke(KeyEvent.VK_SPACE, 0), command); this.getInputMap(JComponent.WHEN_FOCUSED).put( KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0), command); this.getActionMap().put(command, new AbstractAction() { @Override public void actionPerformed(ActionEvent e) { setCollapsed(!isCollapsed()); } }); // when this TaskPane is focused, scroll the scrollpane to have it visible this.addFocusListener(new FocusAdapter() { @Override public void focusGained(FocusEvent e) { if (e.isTemporary()) { return; } TaskPane.this.scrollRectToVisible(new Rectangle( TaskPane.this.getX(), TaskPane.this.getY(), 1, 1)); } }); } /** Get the GatewayMessage included in this TaskPane */ public GatewayMessage getGatewayMessage() { return gm; } } // Variables declaration - do not modify//GEN-BEGIN:variables private JScrollPane jScrollPane1; private JXTaskPaneContainer taskContainer; // End of variables declaration//GEN-END:variables }