/[schmitzm]/trunk/src/skrueger/swing/TranslationAskJDialog.java
ViewVC logotype

Diff of /trunk/src/skrueger/swing/TranslationAskJDialog.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 38 by alfonx, Sun Apr 5 15:06:56 2009 UTC revision 244 by alfonx, Wed Jul 29 09:33:33 2009 UTC
# Line 1  Line 1 
1  package skrueger.swing;  /*******************************************************************************
2     * Copyright (c) 2009 Martin O. J. Schmitz.
3  import java.awt.BorderLayout;   *
4  import java.awt.Component;   * This file is part of the SCHMITZM library - a collection of utility
5  import java.awt.FlowLayout;   * classes based on Java 1.6, focussing (not only) on Java Swing
6  import java.awt.Window;   * and the Geotools library.
7  import java.awt.event.ActionEvent;   *
8  import java.awt.event.ActionListener;   * The SCHMITZM project is hosted at:
9  import java.awt.event.KeyEvent;   * http://wald.intevation.org/projects/schmitzm/
10  import java.awt.event.WindowAdapter;   *
11  import java.awt.event.WindowEvent;   * This program is free software; you can redistribute it and/or
12  import java.util.Locale;   * modify it under the terms of the GNU Lesser General Public License
13     * as published by the Free Software Foundation; either version 3
14  import javax.swing.AbstractAction;   * of the License, or (at your option) any later version.
15  import javax.swing.Action;   *
16  import javax.swing.Box;   * This program is distributed in the hope that it will be useful,
17  import javax.swing.JComponent;   * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  import javax.swing.JDialog;   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  import javax.swing.JOptionPane;   * GNU General Public License for more details.
20  import javax.swing.JPanel;   *
21  import javax.swing.JRootPane;   * You should have received a copy of the GNU Lesser General Public License (license.txt)
22  import javax.swing.KeyStroke;   * along with this program; if not, write to the Free Software
23     * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
24  import schmitzm.lang.LangUtil;   * or try this link: http://www.gnu.org/licenses/lgpl.html
25  import schmitzm.lang.ResourceProvider;   *
26  import schmitzm.swing.SwingUtil;   * Contributors:
27  import skrueger.i8n.Translation;   *     Martin O. J. Schmitz - initial API and implementation
28     *     Stefan A. Krüger - additional utility classes
29  public class TranslationAskJDialog extends JDialog {   ******************************************************************************/
30    package skrueger.swing;
31          /**  
32           * {@link ResourceProvider}, der die Lokalisation fuer GUI-Komponenten des  import java.awt.BorderLayout;
33           * Package {@code skrueger.swing} zur Verfuegung stellt. Diese sind in  import java.awt.Component;
34           * properties-Datein unter {@code skrueger.swing.resource.locales}  import java.awt.FlowLayout;
35           * hinterlegt.  import java.awt.Window;
36           */  import java.awt.event.ActionEvent;
37          public static ResourceProvider RESOURCE = new ResourceProvider(LangUtil  import java.awt.event.ActionListener;
38                          .extendPackagePath(TranslationAskJDialog.class,  import java.awt.event.KeyEvent;
39                                          "resource.locales.SwingResourceBundle"), Locale.ENGLISH);  import java.awt.event.WindowAdapter;
40    import java.awt.event.WindowEvent;
41          private String[] backup = new String[50]; // Maximum 50 languages ;-)  import java.util.Locale;
42          private OkButton okButton;  
43          private CancelButton cancelButton;  import javax.swing.AbstractAction;
44    import javax.swing.Action;
45          public static final String PROPERTY_CANCEL_AND_CLOSE = "CANCEL";  import javax.swing.BorderFactory;
46          public static final String PROPERTY_APPLY_AND_CLOSE = "APPLY";  import javax.swing.Box;
47    import javax.swing.JButton;
48          private JComponent[] translationEditJPanelsOrJustComponents;  import javax.swing.JComponent;
49    import javax.swing.JDialog;
50          private boolean hasBeenCanceled;  import javax.swing.JOptionPane;
51    import javax.swing.JPanel;
52          /**  import javax.swing.JRootPane;
53           * Since the registerKeyboardAction() method is part of the JComponent class  import javax.swing.KeyStroke;
54           * definition, you must define the Escape keystroke and register the  
55           * keyboard action with a JComponent, not with a JDialog. The JRootPane for  import schmitzm.geotools.styling.StylingUtil;
56           * the JDialog serves as an excellent choice to associate the registration,  import schmitzm.lang.LangUtil;
57           * as this will always be visible. If you override the protected  import schmitzm.lang.ResourceProvider;
58           * createRootPane() method of JDialog, you can return your custom JRootPane  import schmitzm.swing.SwingUtil;
59           * with the keystroke enabled:  import skrueger.i8n.Translation;
60           */  
61          @Override  public class TranslationAskJDialog extends JDialog {
62          protected JRootPane createRootPane() {  
63                  KeyStroke stroke = KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0);          private String[] backup = new String[50]; // Maximum 50 languages ;-)
64                  JRootPane rootPane = new JRootPane();          private OkButton okButton;
65                  rootPane.registerKeyboardAction(new ActionListener() {          private CancelButton cancelButton;
66    
67                          public void actionPerformed(ActionEvent e) {          public static final String PROPERTY_CANCEL_AND_CLOSE = "CANCEL";
68                                  cancel();          public static final String PROPERTY_APPLY_AND_CLOSE = "APPLY";
69                          }  
70            private JComponent[] translationEditJPanelsOrJustComponents;
71                  }, stroke, JComponent.WHEN_IN_FOCUSED_WINDOW);  
72            private boolean hasBeenCanceled;
73                  return rootPane;  
74          }          private JButton[] optionalButtons;
75    
76          /**          /**
77           * The {@link TranslationAskJDialog} fills its content pane with an           * Since the registerKeyboardAction() method is part of the JComponent class
78           * arbitrary number of components. If these {@link Component}s are           * definition, you must define the Escape keystroke and register the
79           * {@link TranslationEditJPanel}s, the {@link JDialog} manages to backup the           * keyboard action with a JComponent, not with a JDialog. The JRootPane for
80           * values and restore them if the dialog is canceled. Other           * the JDialog serves as an excellent choice to associate the registration,
81           * {@link JComponent}s are just displayed.<br/>           * as this will always be visible. If you override the protected
82           * This class handles the cancel button itself. You may still want to listen           * createRootPane() method of JDialog, you can return your custom JRootPane
83           * to PROPERTY_APPLY_AND_CLOSE events. This dialog is modal. The dialog has           * with the keystroke enabled:
84           * to be set visible afterwards.<br/>           */
85           */          @Override
86          public TranslationAskJDialog(Window owner,          protected JRootPane createRootPane() {
87                          final JComponent... translationEditJPanels) {                  KeyStroke stroke = KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0);
88                  super(owner);                  JRootPane rootPane = new JRootPane();
89                  setComponents(translationEditJPanels);                  rootPane.registerKeyboardAction(new ActionListener() {
90          }  
91                            public void actionPerformed(ActionEvent e) {
92          /**                                  cancel();
93           * The {@link TranslationAskJDialog} fills its content pane with an                          }
94           * arbitrary number of components. If these {@link Component}s are  
95           * {@link TranslationEditJPanel}s, the {@link JDialog} manages to backup the                  }, stroke, JComponent.WHEN_IN_FOCUSED_WINDOW);
96           * values and restore them if the dialog is canceled. Other  
97           * {@link JComponent}s are just displayed.<br/>                  return rootPane;
98           * This class handles the cancel button itself. You may still want to listen          }
99           * to PROPERTY_APPLY_AND_CLOSE events. This dialog is modal. The dialog has  
100           * to be set visible afterwards.<br/>          /**
101           * Using this constructor, you have to call setComponents afterwards.           * The {@link TranslationAskJDialog} fills its content pane with an
102           */           * arbitrary number of components. If these {@link Component}s are
103          public TranslationAskJDialog(Window owner) {           * {@link TranslationEditJPanel}s, the {@link JDialog} manages to backup the
104                  super(owner);           * values and restore them if the dialog is canceled. Other
105          }           * {@link JComponent}s are just displayed.<br/>
106             * This class handles the cancel button itself. You may still want to listen
107          /**           * to PROPERTY_APPLY_AND_CLOSE events. This dialog is modal. The dialog has
108           * The {@link TranslationAskJDialog} fills its content pane with an           * to be set visible afterwards.<br/>
109           * arbitrary number of components. If these {@link Component}s are           *
110           * {@link TranslationEditJPanel}s, the {@link JDialog} manages to backup the           * @param owner
111           * values and restore them if the dialog is canceled. Other           *            A component of the GUI that this dialog is related to. If no
112           * {@link JComponent}s are just displayed.           *            {@link Window} is passed, SwingUtil.getParentWindow(owner) is
113           *           *            called.
114           * @param translationEditJPanels           */
115           *            Arbitrary list of {@link JComponent}s and          public TranslationAskJDialog(Component owner,
116           *            {@link TranslationEditJPanel}s.                          final JComponent... translationEditJPanels) {
117           */                  super(SwingUtil.getParentWindow(owner));
118          public void setComponents(final JComponent... translationEditJPanels) {                  setComponents(translationEditJPanels);
119                  this.translationEditJPanelsOrJustComponents = translationEditJPanels;          }
120    
121                  // Remember backups for all the TranslationEditJPanel          /**
122                  int count = 0;           * The {@link TranslationAskJDialog} fills its content pane with an
123                  for (JComponent component : translationEditJPanelsOrJustComponents) {           * arbitrary number of components. If these {@link Component}s are
124                          if (component instanceof TranslationEditJPanel) {           * {@link TranslationEditJPanel}s, the {@link JDialog} manages to backup the
125                                  TranslationEditJPanel tep = (TranslationEditJPanel) component;           * values and restore them if the dialog is canceled. Other
126                                  Translation orig = tep.getTranslation();           * {@link JComponent}s are just displayed.<br/>
127             * This class handles the cancel button itself. You may still want to listen
128                                  // We don't want to overwrite the Translation object on           * to PROPERTY_APPLY_AND_CLOSE events. This dialog is modal. The dialog has
129                                  // restore(). We just want to change its value.           * to be set visible afterwards.<br/>
130                                  backup[count++] = orig.toOneLine();           * Using this constructor, you have to call setComponents afterwards.
131                          }           */
132                  }          public TranslationAskJDialog(Component owner) {
133                    this(owner, new JComponent[] {});
134                  init();          }
135          }  
136            /**
137          private void init() {           * The {@link TranslationAskJDialog} fills its content pane with an
138                  setDefaultCloseOperation(JDialog.DO_NOTHING_ON_CLOSE);           * arbitrary number of components. If these {@link Component}s are
139                  addWindowListener(new WindowAdapter() {           * {@link TranslationEditJPanel}s, the {@link JDialog} manages to backup the
140             * values and restore them if the dialog is canceled. Other
141                          public void windowClosing(WindowEvent e) {           * {@link JComponent}s are just displayed.
142                                  cancel();           *
143                          }           * @param translationEditJPanels
144             *            Arbitrary list of {@link JComponent}s and
145                  });           *            {@link TranslationEditJPanel}s.
146                  SwingUtil.centerFrameOnScreen(this);           */
147                  Box box = Box.createVerticalBox();          public void setComponents(final JComponent... translationEditJPanels) {
148                  for (JComponent panel : translationEditJPanelsOrJustComponents) {                  this.translationEditJPanelsOrJustComponents = translationEditJPanels;
149                          box.add(panel);  
150                  }                  // Remember backups for all the TranslationEditJPanel
151                  JPanel cp = new JPanel(new BorderLayout());                  int count = 0;
152                  cp.add(box, BorderLayout.CENTER);                  for (JComponent component : translationEditJPanelsOrJustComponents) {
153                  cp.add(getButtons(), BorderLayout.SOUTH);                          if (component instanceof TranslationEditJPanel) {
154                  setContentPane(cp);                                  TranslationEditJPanel tep = (TranslationEditJPanel) component;
155                                    Translation orig = tep.getTranslation();
156                  setTitle(RESOURCE.getString("translation_dialog_title")); // i8n  
157                  setModal(true);                                  // We don't want to overwrite the Translation object on
158                  pack();                                  // restore(). We just want to change its value.
159          }                                  backup[count++] = orig.toOneLine();
160                            }
161          protected void cancel() {                  }
162                  firePropertyChange(PROPERTY_CANCEL_AND_CLOSE, null, null);  
163                  restore();                  init();
164                  setVisible(false);          }
165                  dispose();  
166          }          private void init() {
167                    setDefaultCloseOperation(JDialog.DO_NOTHING_ON_CLOSE);
168          protected void restore() {                  addWindowListener(new WindowAdapter() {
169                  int count = 0;  
170                  for (JComponent component : translationEditJPanelsOrJustComponents) {                          public void windowClosing(WindowEvent e) {
171                          if (component instanceof TranslationEditJPanel) {                                  cancel();
172                                  TranslationEditJPanel tep = (TranslationEditJPanel) component;                          }
173                                  tep.getTranslation().fromOneLine(backup[count++]);  
174                          }                  });
175                  }                  SwingUtil.centerFrameOnScreen(this);
176          }                  Box box = Box.createVerticalBox();
177                    for (JComponent panel : translationEditJPanelsOrJustComponents) {
178          private JComponent getButtons() {                          panel.setAlignmentX(java.awt.Component.LEFT_ALIGNMENT);
179                  JPanel jPanel = new JPanel(new FlowLayout(FlowLayout.RIGHT));                          panel.setBorder( BorderFactory.createEmptyBorder(5, 6, 5, 6));
180                  if (okButton == null) {                          box.add(panel);
181                          okButton = new OkButton(new AbstractAction() {                          
182                                  {                  }
183                                          // Set a mnemonic character. In most look and feels, this                  JPanel cp = new JPanel(new BorderLayout());
184                                          // causes the                  cp.add(box, BorderLayout.WEST);
185                                          // specified character to be underlined This indicates that                  cp.add(getButtons(), BorderLayout.SOUTH);
186                                          // if the component                  setContentPane(cp);
187                                          // using this action has the focus and In some look and                  
188                                          // feels, this causes                  setTitle(SwingUtil.R("TranslationAskJDialog.Title"));
189                                          // the specified character in the label to be underlined and                  setModal(true);
190                                          putValue(Action.MNEMONIC_KEY, new Integer(                  pack();
191                                                          java.awt.event.KeyEvent.VK_E));          }
192    
193                                          // Set tool tip text          public void setButtons(JButton... optionalButtons) {
194                                          putValue(Action.SHORT_DESCRIPTION,                  this.optionalButtons = optionalButtons;
195                                                          "Accept the changes made to the translation.");                  init();
196            }
197                                  }  
198            protected void cancel() {
199                                  public void actionPerformed(ActionEvent evt) {                  firePropertyChange(PROPERTY_CANCEL_AND_CLOSE, null, null);
200                                          TranslationAskJDialog.this.firePropertyChange(                  restore();
201                                                          PROPERTY_APPLY_AND_CLOSE, null, null);                  setVisible(false);
202                                                            dispose();
203                                          if (!checkValidInputs()) return;          }
204                                            
205                                          setVisible(false);          protected void restore() {
206                                          dispose();                  int count = 0;
207                                  }                  for (JComponent component : translationEditJPanelsOrJustComponents) {
208                            if (component instanceof TranslationEditJPanel) {
209                          });                                  TranslationEditJPanel tep = (TranslationEditJPanel) component;
210                                    tep.getTranslation().fromOneLine(backup[count++]);
211                  }                          }
212                  jPanel.add(okButton);                  }
213            }
214                  if (cancelButton == null) {  
215                          cancelButton = new CancelButton(new AbstractAction("") {          private JComponent getButtons() {
216                                  public void actionPerformed(ActionEvent evt) {                  JPanel jPanel = new JPanel(new FlowLayout(FlowLayout.RIGHT));
217                                          restore();  
218                                          TranslationAskJDialog.this.firePropertyChange(                  if (optionalButtons != null)
219                                                          PROPERTY_CANCEL_AND_CLOSE, null, null);                          for (JButton b : optionalButtons) {
220                                          setVisible(false);                                  jPanel.add(b);
221                                          setCancelled(true);                          }
222                                          dispose();  
223                                  }                  if (okButton == null) {
224                          });                          okButton = new OkButton(new AbstractAction() {
225                  }                                  {
226                  jPanel.add(cancelButton);                                          // Set a mnemonic character. In most look and feels, this
227                                            // causes the
228                  return jPanel;                                          // specified character to be underlined This indicates that
229          }                                          // if the component
230                                            // using this action has the focus and In some look and
231          /**                                          // feels, this causes
232           * @return <code>true</code> if none of the translations contains illegal characters.                                          // the specified character in the label to be underlined and
233           */                                          putValue(Action.MNEMONIC_KEY, new Integer(
234          protected boolean checkValidInputs() {                                                          java.awt.event.KeyEvent.VK_E));
235                    
236                  for (JComponent component : translationEditJPanelsOrJustComponents) {                                          // Set tool tip text
237                          if (component instanceof TranslationEditJPanel) {                                          putValue(Action.SHORT_DESCRIPTION,
238                                  TranslationEditJPanel tep = (TranslationEditJPanel) component;                                                          "Accept the changes made to the translation.");
239                                    
240                                  for (String l : tep.getTranslation().values()){                                  }
241                                          if ( l.contains("{") || l.contains("}")) {  
242                                                  JOptionPane.showMessageDialog(this, RESOURCE.getString("ErrorMsg.InvalidCharacterInTranslation"));                                  public void actionPerformed(ActionEvent evt) {
243                                                  return false;                                          TranslationAskJDialog.this.firePropertyChange(
244                                          }                                                          PROPERTY_APPLY_AND_CLOSE, null, null);
245                                  }  
246                                                                            if (!checkValidInputs())
247                          }                                                  return;
248                  }  
249                                                            setVisible(false);
250                                                            dispose();
251                  return true;                                  }
252          }  
253                            });
254          private void setCancelled(boolean hasBeenCanceled) {  
255                  this.hasBeenCanceled = hasBeenCanceled;                  }
256          }                  jPanel.add(okButton);
257    
258          /**                  if (cancelButton == null) {
259           * After the modal dialog has been closed, this allows to find out, whether                          cancelButton = new CancelButton(new AbstractAction("") {
260           * the dialog has been canceled.                                  public void actionPerformed(ActionEvent evt) {
261           *                                          restore();
262           * @return <code>true</code> if the {@link JDialog} has been canceled.                                          TranslationAskJDialog.this.firePropertyChange(
263           */                                                          PROPERTY_CANCEL_AND_CLOSE, null, null);
264          public boolean isCancelled() {                                          setVisible(false);
265                  return hasBeenCanceled;                                          setCancelled(true);
266          }                                          dispose();
267                                    }
268  }                          });
269                    }
270                    jPanel.add(cancelButton);
271    
272                    return jPanel;
273            }
274    
275            /**
276             * @return <code>true</code> if none of the translations contains illegal
277             *         characters.
278             */
279            protected boolean checkValidInputs() {
280    
281                    for (JComponent component : translationEditJPanelsOrJustComponents) {
282                            if (component instanceof TranslationEditJPanel) {
283                                    TranslationEditJPanel tep = (TranslationEditJPanel) component;
284    
285                                    for (String l : tep.getTranslation().values()) {
286                                            if (l.contains("{") || l.contains("}")) {
287                                                    JOptionPane
288                                                                    .showMessageDialog(
289                                                                                    this,
290                                                                                    SwingUtil.R("TranslationAskJDialog.ErrorMsg.InvalidCharacterInTranslation"));
291                                                    return false;
292                                            }
293                                    }
294    
295                            }
296                    }
297    
298                    return true;
299            }
300    
301            private void setCancelled(boolean hasBeenCanceled) {
302                    this.hasBeenCanceled = hasBeenCanceled;
303            }
304    
305            /**
306             * After the modal dialog has been closed, this allows to find out, whether
307             * the dialog has been canceled.
308             *
309             * @return <code>true</code> if the {@link JDialog} has been canceled.
310             */
311            public boolean isCancelled() {
312                    return hasBeenCanceled;
313            }
314    
315    }

Legend:
Removed from v.38  
changed lines
  Added in v.244

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26