package org.fnppl.opensdx.gui; /* * Copyright (C) 2010-2015 * fine people e.V. <opensdx@fnppl.org> * Henning Thieß <ht@fnppl.org> * * http://fnppl.org */ /* * Software license * * As far as this file or parts of this file is/are software, rather than documentation, this software-license applies / shall be applied. * * This file is part of openSDX * openSDX is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * openSDX 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 Lesser General Public License * and GNU General Public License along with openSDX. * If not, see <http://www.gnu.org/licenses/>. * */ /* * Documentation license * * As far as this file or parts of this file is/are documentation, rather than software, this documentation-license applies / shall be applied. * * This file is part of openSDX. * Permission is granted to copy, distribute and/or modify this document * under the terms of the GNU Free Documentation License, Version 1.3 * or any later version published by the Free Software Foundation; * with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. * A copy of the license is included in the section entitled "GNU * Free Documentation License" resp. in the file called "FDL.txt". * */ /** * @author Bertram Boedeker <bboedeker@gmx.de> * */ import java.awt.BorderLayout; import java.awt.Dialog; import java.awt.Dimension; import java.awt.FlowLayout; import java.awt.Frame; import java.awt.GridBagConstraints; import java.awt.GridBagLayout; import java.awt.GridLayout; import java.awt.Insets; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.File; import java.util.Arrays; import java.util.Vector; import javax.swing.BoxLayout; import javax.swing.JButton; import javax.swing.JDialog; import javax.swing.JFileChooser; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JOptionPane; import javax.swing.JPanel; import javax.swing.JPasswordField; import javax.swing.JScrollPane; import javax.swing.JTextArea; import javax.swing.JTextField; import javax.swing.border.TitledBorder; import javax.swing.filechooser.FileFilter; public class Dialogs { public static int CANCEL = -2; public static int OK = 0; public static int YES = 1; public static int NO = -1; public static File lastDir = new File(System.getProperty("user.home")); public static Vector<File> lastDirs = new Vector<File>(); public static boolean saveLastDir = true; private static JFrame fst = null; public static int showYES_NO_Dialog(String title, String message) { if (message.contains("\n")) { message = "<HTML><BODY>"+message.replace("\n", "<BR>")+"</BODY><HTML>"; } int ans = JOptionPane.showConfirmDialog(null, message, title, JOptionPane.YES_NO_OPTION); if (ans == JOptionPane.YES_OPTION) return YES; return NO; } public static void showMessage(String message) { JOptionPane.showMessageDialog(null, message); } public static void showText(String title, String message) { JFrame f = new JFrame(title); f.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); JTextArea text = new JTextArea(); text.setText(message); f.getContentPane().add(new JScrollPane(text), BorderLayout.CENTER); f.setSize(500,600); f.setVisible(true); } public static void showTextFlex(String title, String message, int width, int height) { if(fst==null) { fst = new JFrame(title); fst.setSize(width,height); GridBagLayout gbl = new GridBagLayout(); fst.setLayout(gbl); GridBagConstraints gbc = new GridBagConstraints(); fst.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); JTextArea text = new JTextArea(message); JScrollPane sp = new JScrollPane(text); sp.setPreferredSize(new Dimension(width, height-50)); gbc.gridx = 0; gbc.gridy = 0; gbc.gridwidth = 2; gbc.gridheight = 1; gbc.weightx = 1.0; gbc.weighty = 1.0; gbc.anchor = GridBagConstraints.CENTER; gbc.fill = GridBagConstraints.BOTH; gbc.ipadx = 0; gbc.ipady = 0; gbc.insets = new Insets(2,2,2,2); gbl.setConstraints(sp,gbc); fst.add(sp); JButton btn = new JButton("Close"); btn.addActionListener( new ActionListener() { public void actionPerformed(ActionEvent e) { closeWindow(); } private void closeWindow(){ fst.dispose(); fst = null; } }); gbc.gridx = 1; gbc.gridy = 1; gbc.gridwidth = 1; gbc.gridheight = 1; gbc.weightx = 0.0; gbc.weighty = 0.0; gbc.anchor = GridBagConstraints.CENTER; gbc.fill = GridBagConstraints.BOTH; gbc.ipadx = 0; gbc.ipady = 0; gbl.setConstraints(btn,gbc); fst.add(btn); fst.setVisible(true); } else { fst.dispose(); fst = null; // dirty, but worth it... showTextFlex(title, message, width, height); } } public static String showInputDialog(String title, String message) { return JOptionPane.showInputDialog(null, message, title, JOptionPane.PLAIN_MESSAGE); } public static String showInputDialog(String title, String message, String value) { return JOptionPane.showInputDialog(null, message, value); //return JOptionPane.showInputDialog(null, message, title, value); } public static final String[] showUsageDialog(String head, String message) { JPanel p = new JPanel(); GridBagLayout gbl = new GridBagLayout(); p.setLayout(gbl); GridBagConstraints gbc = new GridBagConstraints(); if (message.contains("\n")) { message = "<HTML><BODY>"+message.replace("\n", "<BR>")+"</BODY><HTML>"; } JLabel lmsg = new JLabel(message); gbc.gridx = 0; gbc.gridy = 0; gbc.gridwidth = 2; gbc.gridheight = 1; gbc.weightx = 0.0; gbc.weighty = 0.0; gbc.anchor = GridBagConstraints.CENTER; gbc.fill = GridBagConstraints.BOTH; gbc.ipadx = 0; gbc.ipady = 0; gbc.insets = new Insets(2,2,2,2); gbl.setConstraints(lmsg,gbc); p.add(lmsg); JLabel l = new JLabel("usage restriction: "); gbc.gridx = 0; gbc.gridy = 1; gbc.gridwidth = 1; gbc.gridheight = 1; gbc.weightx = 0.0; gbc.weighty = 0.0; gbc.anchor = GridBagConstraints.CENTER; gbc.fill = GridBagConstraints.BOTH; gbc.ipadx = 0; gbc.ipady = 0; gbc.insets = new Insets(2,2,2,2); gbl.setConstraints(l,gbc); p.add(l); JTextField tR = new JTextField(""); gbc.gridx = 1; gbc.gridy = 1; gbc.gridwidth = 1; gbc.gridheight = 1; gbc.weightx = 1.0; gbc.weighty = 0.0; gbc.anchor = GridBagConstraints.CENTER; gbc.fill = GridBagConstraints.BOTH; gbc.ipadx = 0; gbc.ipady = 0; gbc.insets = new Insets(2,2,2,2); gbl.setConstraints(tR,gbc); p.add(tR); l = new JLabel("usage note: "); gbc.gridx = 0; gbc.gridy = 2; gbc.gridwidth = 1; gbc.gridheight = 1; gbc.weightx = 0.0; gbc.weighty = 0.0; gbc.anchor = GridBagConstraints.CENTER; gbc.fill = GridBagConstraints.BOTH; gbc.ipadx = 0; gbc.ipady = 0; gbc.insets = new Insets(2,2,2,2); gbl.setConstraints(l,gbc); p.add(l); JTextArea tN = new JTextArea(""); gbc.gridx = 1; gbc.gridy = 2; gbc.gridwidth = 1; gbc.gridheight = 1; gbc.weightx = 1.0; gbc.weighty = 0.0; gbc.anchor = GridBagConstraints.CENTER; gbc.fill = GridBagConstraints.BOTH; gbc.ipadx = 0; gbc.ipady = 0; gbc.insets = new Insets(2,2,2,2); gbl.setConstraints(tN,gbc); p.add(tN); int ans = JOptionPane.showConfirmDialog(null,p,head,JOptionPane.OK_CANCEL_OPTION); if (ans == JOptionPane.OK_OPTION) { return new String[] {tR.getText(), tN.getText()}; } return null; } public static final char[] showPasswordDialog(String head, String message) { JPanel p = new JPanel(); p.setLayout(new BorderLayout()); if (message.contains("\n")) { message = "<HTML><BODY>"+message.replace("\n", "<BR>")+"</BODY><HTML>"; } JLabel l = new JLabel(message); JPasswordField pf = new JPasswordField(); pf.setEchoChar('*'); p.add(l, BorderLayout.CENTER); p.add(pf, BorderLayout.SOUTH); int ans = JOptionPane.showConfirmDialog(null,p,head,JOptionPane.OK_CANCEL_OPTION); //JOptionPane.showMessageDialog(null,p,head,JOptionPane.OK_OPTION); if (ans == JOptionPane.OK_OPTION && pf.getPassword()!=null) { return pf.getPassword(); } return null; } public static final String[] showNewMantraPasswordDialogOld(String message) { if (message.contains("\n")) { message = "<HTML><BODY>"+message.replace("\n", "<BR>")+"</BODY><HTML>"; } JPanel p = new JPanel(); p.setLayout(new BorderLayout()); p.add(new JLabel(message),BorderLayout.NORTH); JPanel pMantra = new JPanel(); pMantra.setBorder(new TitledBorder("mantraname:")); pMantra.setPreferredSize(new Dimension(270,70)); JTextField text = new JTextField(); text.setPreferredSize(new Dimension(250,25)); pMantra.add(text,BorderLayout.CENTER); JPanel pPassword = new JPanel(); pPassword.setBorder(new TitledBorder("passphrase:")); pPassword.setPreferredSize(new Dimension(270,70)); JPasswordField pf = new JPasswordField(); pf.setEchoChar('*'); pf.setPreferredSize(new Dimension(250,25)); pPassword.add(pf,BorderLayout.SOUTH); JPanel pPassword2 = new JPanel(); pPassword2.setBorder(new TitledBorder("repeat passphrase:")); pPassword2.setPreferredSize(new Dimension(270,70)); JPasswordField pf2 = new JPasswordField(); pf2.setEchoChar('*'); pf2.setPreferredSize(new Dimension(250,25)); pPassword2.add(pf2,BorderLayout.SOUTH); JPanel pContent = new JPanel(); BoxLayout cLayout = new BoxLayout(pContent, BoxLayout.Y_AXIS); pContent.setLayout(cLayout); pContent.add(pMantra); pContent.add(pPassword); pContent.add(pPassword2); p.add(pContent, BorderLayout.CENTER); //JOptionPane.showMessageDialog(null,p,head,JOptionPane.OK_OPTION); boolean repeat = true; while (repeat) { int ans = JOptionPane.showConfirmDialog(null,p,"NEW PASSWORD",JOptionPane.OK_CANCEL_OPTION); if (ans == JOptionPane.OK_OPTION && pf.getPassword()!=null) { if (Arrays.equals(pf.getPassword(),pf2.getPassword())) { repeat = false; return new String[] {text.getText(),new String(pf.getPassword())}; } else { showMessage("repeated password does not match password, please reenter..."); pf.setText(""); pf2.setText(""); } } else { repeat = false; } } return null; } public static final String[] showNewMantraPasswordDialog(String message) { if (message.contains("\n")) { message = "<HTML><BODY>"+message.replace("\n", "<BR>")+"</BODY><HTML>"; } JPanel p = new JPanel(); GridBagLayout gbl = new GridBagLayout(); p.setLayout(gbl); GridBagConstraints gbc = new GridBagConstraints(); JLabel lMsg = new JLabel(message); gbc.gridx = 0; gbc.gridy = 0; gbc.gridwidth = 2; gbc.gridheight = 1; gbc.weightx = 0.0; gbc.weighty = 0.0; gbc.anchor = GridBagConstraints.CENTER; gbc.fill = GridBagConstraints.BOTH; gbc.ipadx = 0; gbc.ipady = 0; gbc.insets = new Insets(5,5,5,5); gbl.setConstraints(lMsg,gbc); p.add(lMsg); JLabel lMantra = new JLabel("mantraname"); gbc.gridwidth = 1; gbc.gridy = 1; gbc.gridx = 0; gbc.weightx = 0.0; gbl.setConstraints(lMantra,gbc); p.add(lMantra); final JTextField text = new JTextField(); gbc.gridx = 1; gbc.weightx = 1.0; gbl.setConstraints(text,gbc); p.add(text); JLabel lPw = new JLabel("passphrase"); gbc.gridy = 2; gbc.gridx = 0; gbc.weightx = 0.0; gbl.setConstraints(lPw,gbc); p.add(lPw); final JPasswordField pf = new JPasswordField(); pf.setEchoChar('*'); gbc.gridx = 1; gbc.weightx = 1.0; gbl.setConstraints(pf,gbc); p.add(pf); JLabel lPw2 = new JLabel("repeat passphrase"); gbc.gridy = 3; gbc.gridx = 0; gbc.weightx = 0.0; gbl.setConstraints(lPw2,gbc); p.add(lPw2); final JPasswordField pf2 = new JPasswordField(); pf2.setEchoChar('*'); gbc.gridx = 1; gbc.weightx = 1.0; gbl.setConstraints(pf2,gbc); p.add(pf2); //filler JLabel filler = new JLabel(""); gbc.gridy = 4; gbc.gridx = 0; gbc.weightx = 0.0; gbc.weighty = 1.0; gbl.setConstraints(filler,gbc); p.add(filler); final Dialog d = new Dialog((Frame)null,"NEW PASSWORD"); final Vector<String[]> result = new Vector<String[]>(); JButton bOk = new JButton("OK"); bOk.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { if (pf.getPassword()==null || pf.getPassword().length==0) { showMessage("Please enter a passphrase"); } else { if (Arrays.equals(pf.getPassword(),pf2.getPassword())) { result.add(new String[] {text.getText(),new String(pf.getPassword())}); d.dispose(); } else { showMessage("repeated password does not match password, please reenter..."); pf.setText(""); pf2.setText(""); } } } }); gbc.weighty = 0.0; gbc.gridy = 5; gbc.gridx = 0; gbc.weightx = 0.0; gbc.anchor = GridBagConstraints.LINE_START; gbc.fill = GridBagConstraints.NONE; gbl.setConstraints(bOk,gbc); p.add(bOk); JButton bNoPassword = new JButton("don't protect with passphrase"); bNoPassword.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { result.add(new String[] {"no password"}); d.dispose(); } }); gbc.gridy = 5; gbc.gridx = 1; gbc.weightx = 1.0; gbc.anchor = GridBagConstraints.LINE_START; gbc.fill = GridBagConstraints.NONE; gbl.setConstraints(bNoPassword,gbc); p.add(bNoPassword); d.setSize(600, 300); d.setLayout(new BorderLayout()); d.add(p,BorderLayout.CENTER); d.setModalityType(Dialog.ModalityType.APPLICATION_MODAL); Helper.centerMe(d, null); d.setVisible(true); if (result.size()==0) { return null; } return result.get(0); } public static JDialog getWaitDialog(final String message) { final String msg; if (message.contains("\n")) { msg = "<HTML><BODY>"+message.replace("\n", "<BR>")+"</BODY><HTML>"; } else { msg = message; } Object[] options = { "Cancel" } ; JOptionPane optionPane = new JOptionPane(msg,JOptionPane.INFORMATION_MESSAGE,JOptionPane.CANCEL_OPTION, null,options, options[0]); JDialog d = optionPane.createDialog(null, "Please wait..." ); return d; } public static int showSelectDialog(String title, String message, Vector values) { return showSelectDialog(title, message, values, 0); } public static int showSelectDialog(String title, String message, Vector values, int def) { Object[] os = values.toArray(); // File[] select = new File[values.size()]; // for (int i=0;i<select.length;i++) { // select[i] = values.get(i); // } Object ans = (Object)JOptionPane.showInputDialog(null,message,title,JOptionPane.QUESTION_MESSAGE, null, os, os[def]); if (ans==null) { return -1; } return values.indexOf(ans); // // if (ans != null) { // for (int i=0; i<select.length; i++) { // if (select[i].equals(ans)) { // return i; // } // } // } // return -1; } public static File chooseSaveFile(String title, File dir, String selname) { return chooseDialog(title,dir,selname,false,true); } public static File chooseSaveDirectory(String title, File dir, String selname) { return chooseDialog(title,dir,selname,false,false); } public static File chooseOpenDirectory(String title, File dir, String selname) { return chooseDialog(title,dir,selname,true,false); } public static File chooseOpenFile(String title, File dir, String selname) { return chooseDialog(title,dir,selname,true,true); } public static File chooseOpenFile(String title, File dir, String selname, String[] filter) { return chooseDialog(title,dir,selname,true,true, filter); } public static File[] chooseOpenMultiFile(String title, File dir, String selname, String[] filter) { return chooseDialog(title,dir,selname,true,true,true,filter); } public static File[] chooseOpenMultiDirs(String title, File dir, String selname, String[] filter) { return chooseDialog(title,dir,selname,true,false,true,filter); } private static File chooseDialog(String title, File dir, String selname ,boolean open, boolean filesonly) { File[] result = chooseDialog(title, dir, selname, open, filesonly,false,null); if ((result==null)||(result.length==0)) return null; else return result[0]; } private static File chooseDialog(String title, File dir, String selname ,boolean open, boolean filesonly, String[] filter) { File[] result = chooseDialog(title, dir, selname, open, filesonly,false,filter); if ((result==null)||(result.length==0)) return null; else return result[0]; } public static File[] chooseDialog( String title, File dir, String selname, boolean open, boolean filesonly, boolean multi, String[] filter ) { final JFileChooser fd = new JFileChooser(title); fd.setDialogTitle(title); if (lastDirs.size()>0) { final JButton buSel = new JButton("v"); buSel.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent arg0) { int sel = Dialogs.showSelectDialog( "Select Directory", "Last visited directories", lastDirs ); if (sel>=0) { fd.setCurrentDirectory(lastDirs.elementAt(sel)); } } }); fd.setAccessory(buSel); } fd.setCurrentDirectory(dir); if(selname != null && selname.length()>0) { fd.setSelectedFile(new File(dir, selname)); } if (filesonly) { fd.setFileSelectionMode(JFileChooser.FILES_ONLY); } else { fd.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY); } fd.setMultiSelectionEnabled(multi); if (filter == null) { filter = new String[] {"*.*","*.xml","*.csv"}; } FileFilter[] ff = new FileFilter[filter.length]; final String[] finalFilter = filter; for (int i=0;i<ff.length;i++) { final int nr = i; final String[] parts = finalFilter[i].split("; "); for (int j=0;j<parts.length;j++) { String regEx = parts[j].replace(".", "\\."); regEx = regEx.replace("*", ".ZAPPELDAP"); regEx = regEx.replace("ZAPPELDAP", "*"); parts[j] = regEx; } ff[i] = new FileFilter() { public boolean accept(File f) { if (f.isDirectory()) return true; for (int j=0;j<parts.length;j++) { if (f.getName().matches(parts[j])) { return true; } } return false; } public String getDescription() { return finalFilter[nr]; } }; fd.addChoosableFileFilter(ff[i]); } fd.setFileFilter(ff[0]); int returnVal = 0; if (open) { returnVal = fd.showOpenDialog(null); } else { returnVal = fd.showSaveDialog(null); } File[] result = null; if(returnVal == JFileChooser.APPROVE_OPTION) { if (multi) { result = fd.getSelectedFiles(); } else { result = new File[1]; result[0] = fd.getSelectedFile(); } if (saveLastDir) { if (result[0].isDirectory()) { lastDir = result[0]; } else { lastDir = result[0].getParentFile(); } int ind = lastDirs.indexOf(lastDir); if (ind >= 0) { lastDirs.remove(ind); } lastDirs.add(0,lastDir); if (lastDirs.size()>15) { lastDirs.setSize(15); } } } return result; } }