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

Diff of /trunk/src/skrueger/swing/TranslationEditJPanel.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 298 by alfonx, Tue Aug 11 12:18:00 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.Dimension;   * This file is part of the SCHMITZM library - a collection of utility
5  import java.util.List;   * classes based on Java 1.6, focusing (not only) on Java Swing
6     * and the Geotools library.
7  import javax.swing.BorderFactory;   *
8  import javax.swing.JDialog;   * The SCHMITZM project is hosted at:
9  import javax.swing.JLabel;   * http://wald.intevation.org/projects/schmitzm/
10  import javax.swing.JPanel;   *
11  import javax.swing.SpringLayout;   * This program is free software; you can redistribute it and/or
12  import javax.swing.SwingConstants;   * 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 org.apache.log4j.Logger;   * of the License, or (at your option) any later version.
15     *
16  import schmitzm.swing.SpringUtilities;   * This program is distributed in the hope that it will be useful,
17  import skrueger.i8n.Translation;   * but WITHOUT ANY WARRANTY; without even the implied warranty of
18     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  /**   * GNU General Public License for more details.
20   * A {@link JPanel} that asks the user for translation of several strings   *
21   * @author Stefan Alfons Krüger   * You should have received a copy of the GNU Lesser General Public License (license.txt)
22   *   * 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  public class TranslationEditJPanel extends JPanel {   * or try this link: http://www.gnu.org/licenses/lgpl.html
25          static final protected Logger LOGGER = Logger.getLogger(TranslationEditJPanel.class);   *
26             * Contributors:
27          private final List<String> languages;   *     Martin O. J. Schmitz - initial API and implementation
28          private JPanel translationGrid;   *     Stefan A. Krüger - additional utility classes
29          private Translation trans;   ******************************************************************************/
30    package skrueger.swing;
31          public TranslationEditJPanel(Translation trans, List<String> languages_) {  
32                  this(null, trans, languages_);  import java.awt.BorderLayout;
33          }  import java.awt.Dimension;
34    import java.awt.event.ActionEvent;
35          public TranslationEditJPanel(String question, Translation trans,  import java.awt.event.ActionListener;
36                          List<String> languages_) {  import java.util.HashSet;
37                  super(new BorderLayout());  import java.util.List;
38                    import java.util.Random;
39                  if (trans == null) trans = new Translation();  import java.util.Set;
40    import java.util.WeakHashMap;
41                  this.trans = trans;  
42                  this.languages = languages_;  import javax.swing.BorderFactory;
43                    import javax.swing.JLabel;
44                  add(getTranslationGrid(), BorderLayout.CENTER);  import javax.swing.JTextField;
45    import javax.swing.SpringLayout;
46                  if (question != null) {  import javax.swing.SwingConstants;
47                          JLabel questionLable = new JLabel(question);  
48                          questionLable.setBorder(BorderFactory.createEmptyBorder(  import org.apache.log4j.Logger;
49                                          6, 6, 6, 6));  
50                          add(questionLable, BorderLayout.NORTH);  import schmitzm.swing.JPanel;
51                  }  import schmitzm.swing.SpringUtilities;
52          }  import skrueger.i8n.Translation;
53    
54          private JPanel getTranslationGrid() {  /**
55                  if (translationGrid == null) {   * A {@link JPanel} that asks the user for the translations of a String in
56                          translationGrid = new JPanel(new SpringLayout());   * several languages. Use {@link TranslationAskJDialog} to display.<br/>
57     * The class does not implement any backup/clong strategies. The
58                          for (String langId : languages) {   * {@link Translation} object is manipulated directly.<br/>
59     * {@link TranslationEditJPanel}s. {@link TranslationAskJDialog} implements a
60                                  // language code : entry field for translation   * transparent Apply/Cancel logic.
61                                  JLabel langDesc = new JLabel(langId.toUpperCase() + " :"); // i8n   *
62                                  langDesc.setHorizontalAlignment(SwingConstants.RIGHT);   * @author Stefan Alfons Krüger
63                                  langDesc.setVerticalAlignment(SwingConstants.NORTH);   */
64    public class TranslationEditJPanel extends JPanel {
65                                  TranslationJTextField langTextField = new TranslationJTextField(          static final protected Logger LOGGER = Logger
66                                                  trans, langId);                          .getLogger(TranslationEditJPanel.class);
67                                  // Setting a size  
68                                  langTextField.setPreferredSize( new Dimension(360,22));          private final List<String> languages;
69                                  langDesc.setLabelFor(langTextField);          private JPanel translationGrid;
70                                  translationGrid.add(langDesc);          private Translation trans;
71                                  translationGrid.add(langTextField);  
72                          }          /**
73             * Remembers all {@link JTextField} that have been created.
74                          // Lay out the panel.           */
75                          SpringUtilities.makeCompactGrid(translationGrid, languages.size(), // rows,           private Set<TranslationJTextField> langTextFields = new HashSet<TranslationJTextField>();
76                                          2, // cols          private WeakHashMap<ActionListener, ActionListener> actionListeners = new WeakHashMap<ActionListener, ActionListener>();
77                                          6, 6, // initX, initY  
78                                          6, 6); // xPad, yPad          /**
79             * Creates a {@link JPanel} that asks the user for the translation of a
80                  }           * String in several languages
81                  return translationGrid;           */
82          }          public TranslationEditJPanel(Translation trans, List<String> languages_) {
83                    this(null, trans, languages_);
84  //      /**          }
85  //       * Merges a few {@link TranslationEditJPanel}s and shows them together..  
86  //       * So far this is working on the Translation object directly, Cancel not possible.          /**
87  //       * @param translationEditJPanel           * Creates a {@link JPanel} that asks the user for the translation of a
88  //       *           * String in several languages and additionally puts a {@link JLabel} with a
89  //       * @deprecated Use {@link TranslationAskJDialog}           * question at the {@link JPanel}'s first row.
90  //       */           */
91  //      public static void ask(Frame parentFrame, final TranslationEditJPanel... translationEditJPanels) {          public TranslationEditJPanel(String question, Translation trans,
92  //              dialog = new JDialog(parentFrame);                          List<String> languages_) {
93  //      //      backup( translationEditJPanels );                  super(new BorderLayout());
94  //              showDialog(dialog, translationEditJPanels);  
95  //      }                  if (trans == null)
96  //                          trans = new Translation();
97  //        
98  //      /**                  this.trans = trans;
99  //       * Merges a few {@link TranslationEditJPanel}s and shows them together..                  this.languages = languages_;
100  //       * So far this is working on the Translation object directly, Cancel not possible.  
101  //       * @param translationEditJPanel                  add(getTranslationGrid(), BorderLayout.CENTER);
102  //  
103  //       * @deprecated User {@link TranslationAskJDialog}        *                  if (question != null) {
104  //       */                          JLabel questionLable = new JLabel(question);
105  //      public static void ask(Window parentWindow, TranslationEditJPanel... translationEditJPanels) {                          questionLable
106  //              dialog = new JDialog(parentWindow);                                          .setBorder(BorderFactory.createEmptyBorder(6, 6, 6, 6));
107  //      //      backup( translationEditJPanels );                          add(questionLable, BorderLayout.NORTH);
108  //              showDialog(dialog, translationEditJPanels);                  }
109  //      }  
110  //                        /**
111  //      /**                   * Add listeners
112  //       * Merges a few {@link TranslationEditJPanel}s and shows them together..                   */
113  //       * So far this is working on the Translation object directly, Cancel not possible.          }
114  //       * @param translationEditJPanel  
115  //       *          /**
116  //       *       * @deprecated User {@link TranslationAskJDialog}           * Creates a {@link JPanel} that asks the user for the translation of a
117  //       */           * String in several languages and additionally puts a {@link JLabel} with a
118  //      public static void ask(JDialog parentDialog, TranslationEditJPanel... translationEditJPanels) {           * question at the {@link JPanel}'s first row.
119  //              dialog = new JDialog(parentDialog);           *
120  //      //      backup( translationEditJPanels );           * <br/>
121  //              showDialog(dialog, translationEditJPanels);           * This constructor also sets a TitledBorder with the given title.
122  //      }           */
123  //                public TranslationEditJPanel(Translation title, List<String> languages2,
124  //                                String borderTitle) {
125  //      /**                  this(title, languages2);
126  //       *       * @deprecated User {@link TranslationAskJDialog}  
127  //       * @param d                  setBorder(BorderFactory.createTitledBorder(borderTitle));
128  //       * @param translationEditJPanels          }
129  //       * @author <a href="mailto:[email protected]">Stefan Alfons Kr&uuml;ger</a>  
130  //       */          private JPanel getTranslationGrid() {
131  //      public static void showDialog(JDialog d, JComponent... translationEditJPanels) {                  if (translationGrid == null) {
132  //              dialog = d;                          translationGrid = new JPanel(new SpringLayout());
133  //              dialog.setDefaultCloseOperation(JDialog.DO_NOTHING_ON_CLOSE);  
134  //              SwingUtil.centerFrameOnScreen(dialog);                          for (String langId : languages) {
135  //              Box box = Box.createVerticalBox();  
136  //              for (JComponent panel : translationEditJPanels) {                                  // language code : entry field for translation
137  //                      box.add(panel);                                  JLabel langDesc = new JLabel(langId.toUpperCase() + " :"); // i8n
138  //              }                                  langDesc.setHorizontalAlignment(SwingConstants.RIGHT);
139  //              JPanel cp = new JPanel( new BorderLayout());                                  langDesc.setVerticalAlignment(SwingConstants.NORTH);
140  //              cp.add( box, BorderLayout.CENTER);  
141  //              cp.add( getButtons(), BorderLayout.SOUTH  );                                  TranslationJTextField langTextField = new TranslationJTextField(
142  //              dialog.setContentPane(cp);                                                  trans, langId);
143  //                                                // Setting a size
144  //              // dialog.getRootPane().setDefaultButton(okButton);                                  langTextField.setPreferredSize(new Dimension(360, 22));
145  //                                                langDesc.setLabelFor(langTextField);
146  //              dialog.setTitle("Please translate"); //i8n                                  translationGrid.add(langDesc);
147  //              dialog.setModal(true);                                  translationGrid.add(langTextField);
148  //              dialog.pack();  
149  //              dialog.setVisible(true);                                   langTextFields.add(langTextField);
150  //      }                          }
151  //  
152  //      /**                          // Lay out the panel.
153  //       * @deprecated Use TranslationAskJDialog                          SpringUtilities.makeCompactGrid(translationGrid, languages.size(), // rows,
154  //       * @return                                          2, // cols
155  //       * @author <a href="mailto:[email protected]">Stefan Alfons Kr&uuml;ger</a>                                          6, 6, // initX, initY
156  //       */                                          6, 6); // xPad, yPad
157  //      private static JComponent getButtons() {  
158  //              JPanel jPanel = new JPanel();                  }
159  //              if (okButton == null) {                  return translationGrid;
160  //                      okButton = new OkButton(new AbstractAction("enter") {          }
161  //                  public void actionPerformed(ActionEvent evt) {  
162  //                      firePropertyChange(PROPERTY_APPLY_AND_CLOSE, null, null);          /**
163  //                      dialog.dispose();           * @return The {@link Translation} that this {@link TranslationEditJPanel}
164  //                  }           *         deals with.
165  //              } );           */
166  //              }          public Translation getTranslation() {
167  //              jPanel.add(okButton);                  return trans;
168  //          }
169  //              if (cancelButton == null) {  
170  //                      cancelButton = new CancelButton(new AbstractAction("") {          /**
171  //                  public void actionPerformed(ActionEvent evt) {           * TODO Is never called?!
172  //                      // restore();           */
173  //                      firePropertyChange(PROPERTY_CANCEL_AND_CLOSE, null, null);          public void dispose() {
174  //                      dialog.dispose();                  for (TranslationJTextField f: langTextFields) {
175  //                  }                          f.dispose();
176  //              } );                  }
177  //              }          }
178  //              jPanel.add(okButton);  
179  //          public void addTranslationChangeListener(final ActionListener al) {
180  //              return jPanel;                  final ActionListener actionListener = new ActionListener() {
181  //      }  
182                                    @Override
183          /**                          public void actionPerformed(ActionEvent e) {
184           * @return The {@link Translation} that this {@link TranslationEditJPanel} deals with.                                  al.actionPerformed(new ActionEvent(TranslationEditJPanel.this,
185           */                                                  new Random().nextInt(), ""));
186          public Translation getTranslation() {                          }
187                  return trans;  
188          }                  };
189                    actionListeners.put(al, actionListener);
190  }                  getTranslation().addTranslationChangeListener(actionListener);
191            }
192    
193            public void removeTranslationChangeListener(ActionListener al) {
194                    if (actionListeners.get(al) != null) {
195                            ActionListener actionListener = actionListeners.get(al);
196                            getTranslation().removeTranslationChangeListener(actionListener);
197                            actionListeners.remove(actionListener);
198                    }
199            }
200    
201    }

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26