/[schmitzm]/trunk/src/skrueger/i8n/SwitchLanguageDialog.java
ViewVC logotype

Diff of /trunk/src/skrueger/i8n/SwitchLanguageDialog.java

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

revision 39 by alfonx, Mon Apr 6 19:14:55 2009 UTC revision 1150 by alfonx, Mon Oct 18 12:28:24 2010 UTC
# Line 1  Line 1 
1  package skrueger.i8n;  /*******************************************************************************
2     * Copyright (c) 2009 Martin O. J. Schmitz.
3  import java.awt.GridBagConstraints;   *
4  import java.awt.GridBagLayout;   * This file is part of the SCHMITZM library - a collection of utility
5  import java.awt.Insets;   * classes based on Java 1.6, focusing (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.MouseWheelListener;   * http://wald.intevation.org/projects/schmitzm/
10  import java.util.List;   *
11  import java.util.Locale;   * This program is free software; you can redistribute it and/or
12     * modify it under the terms of the GNU Lesser General Public License
13  import javax.swing.DefaultComboBoxModel;   * as published by the Free Software Foundation; either version 3
14  import javax.swing.ImageIcon;   * of the License, or (at your option) any later version.
15  import javax.swing.JButton;   *
16  import javax.swing.JComboBox;   * This program is distributed in the hope that it will be useful,
17  import javax.swing.JDialog;   * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  import javax.swing.JLabel;   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  import javax.swing.JPanel;   * GNU General Public License for more details.
20     *
21  import org.apache.log4j.Logger;   * 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  import schmitzm.swing.SwingUtil;   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
24  import skrueger.swing.OkButton;   * or try this link: http://www.gnu.org/licenses/lgpl.html
25  import skrueger.swing.TranslationEditJPanel;   *
26     * Contributors:
27  public class SwitchLanguageDialog extends JDialog {   *     Martin O. J. Schmitz - initial API and implementation
28          protected Logger LOGGER = Logger.getLogger(SwitchLanguageDialog.class);   *     Stefan A. Tzeggai - additional utility classes
29     ******************************************************************************/
30          private static final long serialVersionUID = 1L;  package skrueger.i8n;
31    
32          private JPanel jContentPane = null;  import java.awt.Component;
33    import java.awt.GridBagConstraints;
34          private JLabel jLabelFlagimage = null;  import java.awt.GridBagLayout;
35    import java.awt.Insets;
36          private JPanel jPanel = null;  import java.awt.event.ActionEvent;
37    import java.awt.event.ActionListener;
38          private JButton jButton = null;  import java.util.ArrayList;
39    import java.util.List;
40          private JPanel jPanel1 = null;  
41    import javax.swing.ImageIcon;
42          private JLabel jLabel = null;  import javax.swing.JButton;
43    import javax.swing.JComboBox;
44          private JComboBox jComboBox = null;  import javax.swing.JLabel;
45    import javax.swing.JPanel;
46          private final List<String> languages;  
47    import org.apache.log4j.Logger;
48          /**  
49           * A dialog to select one of the available languages. If only one language  import schmitzm.swing.SwingUtil;
50           * is available, select it directly. Creating this object automatically  import skrueger.swing.AtlasDialog;
51           * makes it visible.  import skrueger.swing.OkButton;
52           *  import skrueger.swing.TranslationEditJPanel;
53           * @param owner  
54           * @param atlasConfig  /**
55           */   * This dialog ask the user to select one of list of given languages. The dialog
56          public SwitchLanguageDialog(final Window owner, final List<String> languages) {   * is modal and not visible after construction.
57                  super(owner);   *
58                  this.languages = languages;   * @author Stefan A. Tzeggai
59     */
60                  Translation.setActiveLang(languages.get(0));  public class SwitchLanguageDialog extends AtlasDialog {
61            protected Logger LOGGER = Logger.getLogger(SwitchLanguageDialog.class);
62                  if (languages.size() == 1) {  
63                          LOGGER.debug("Only language '" + languages.get(0)          private JPanel jContentPane = null;
64                                          + "' is available. It has been selected automatically.");  
65                          return;          private JLabel jLabelFlagimage = null;
66                  }  
67            private JPanel jPanel = null;
68                  initialize();  
69            private JButton jButton = null;
70                  setVisible(true);  
71          }          private JPanel jPanel1 = null;
72    
73          /**          private JLabel jLabel = null;
74           * This method initializes this  
75           *          private LanguagesComboBox jComboBox = null;
76           * @return void  
77           */          private final List<String> languages;
78          private void initialize() {  
79                  this.setContentPane(getJContentPane());          /**
80                  setModal(true);           * if <code>true</code>, the default locale will also be changed during a
81                  SwingUtil.centerFrameOnScreenRandom(this);           * language selection
82                  pack();           **/
83          }          protected boolean setLocale;
84    
85          /**          /**
86           * This method initializes jContentPane           * A dialog to select one of the available languages. If only one language
87           *           * is available, select it directly. Creating this object automatically
88           * @return javax.swing.JPanel           * makes it visible, unless there is only one language to choose from.. it
89           */           * that case it disposes itself automatically.
90          private JPanel getJContentPane() {           *
91                  if (jContentPane == null) {           * @param setLocale
92                          final GridBagConstraints gridBagConstraints11 = new GridBagConstraints();           *            if <code>true</code>, the default locale will also be changed
93                          gridBagConstraints11.gridx = 1;           *            during a language selection
94                          gridBagConstraints11.fill = GridBagConstraints.HORIZONTAL;           */
95                          gridBagConstraints11.gridy = 1;          public SwitchLanguageDialog(final Component owner,
96                          final GridBagConstraints gridBagConstraints3 = new GridBagConstraints();                          final List<String> languages, boolean setLocale) {
97                          gridBagConstraints3.gridx = 1;                  super(owner);
98                          gridBagConstraints3.fill = GridBagConstraints.HORIZONTAL;                  this.languages = languages;
99                          gridBagConstraints3.gridy = 2;                  this.setLocale = setLocale;
100                          final GridBagConstraints gridBagConstraints1 = new GridBagConstraints();  
101                          gridBagConstraints1.gridx = 0;                  if (languages == null || languages.size() == 0) {
102                          gridBagConstraints1.fill = GridBagConstraints.BOTH;                          // No language is available.
103                          gridBagConstraints1.gridwidth = 2;                          return;
104                          gridBagConstraints1.anchor = GridBagConstraints.NORTH;                  }
105                          gridBagConstraints1.gridy = 0;  
106                          jLabelFlagimage = new JLabel(new ImageIcon(                  Translation.setActiveLang(languages.get(0), setLocale);
107                                          TranslationEditJPanel.class                  if (languages.size() == 1) {
108                                                          .getResource("resource/flags.jpg")));                          // Only language one language is available. It has been selected
109                          jContentPane = new JPanel();                          // automatically.
110                          jContentPane.setLayout(new GridBagLayout());                          return;
111                          jContentPane.add(jLabelFlagimage, gridBagConstraints1);                  }
112                          jContentPane.add(getJPanel(), gridBagConstraints3);  
113                          jContentPane.add(getJPanel1(), gridBagConstraints11);                  initialize();
114                  }          }
115                  return jContentPane;  
116          }          @Override
117            /**
118          /**           * This modal dialog will not appear if there is <= one language to select from.
119           * This method initializes jPanel           */
120           *          public void setVisible(boolean b) {
121           * @return javax.swing.JPanel                  if (b == true && (languages == null || languages.size() <= 1)) {
122           */                          return;
123          private JPanel getJPanel() {                  }
124                  if (jPanel == null) {                  super.setVisible(b);
125                          final GridBagConstraints gridBagConstraints4 = new GridBagConstraints();          }
126                          gridBagConstraints4.gridx = 0;  
127                          gridBagConstraints4.anchor = GridBagConstraints.EAST;          /**
128                          gridBagConstraints4.weightx = 1.0;           * This method initializes this
129                          gridBagConstraints4.insets = new Insets(5, 5, 5, 5);           *
130                          gridBagConstraints4.gridy = 0;           * @return void
131                          jPanel = new JPanel();           */
132                          jPanel.setLayout(new GridBagLayout());          private void initialize() {
133                          jPanel.add(getJButton(), gridBagConstraints4);                  this.setContentPane(getJContentPane());
134                  }  
135                  return jPanel;                  pack();
136          }  
137                    SwingUtil.centerFrameOnScreenRandom(this);
138          /**                  setModal(true);
139           * This method initializes jButton          }
140           *  
141           * @return javax.swing.JButton          public boolean close() {
142           */                  // Only close by ESC and window-close if a valid selection is made
143          private JButton getJButton() {                  if (jComboBox.getSelectedIndex() == languages.size()
144                  if (jButton == null) {                                  || jComboBox.getSelectedIndex() == -1)
145                          jButton = new OkButton();                          return false;
146                          jButton.setEnabled(false);                  else
147                            return super.close();
148                          jButton.addActionListener(new ActionListener() {          }
149    
150                                  public void actionPerformed(ActionEvent e) {          /**
151                                          dispose();           * This method initializes jContentPane
152                                  }           *
153             * @return javax.swing.JPanel
154                          });           */
155                  }          private JPanel getJContentPane() {
156                  return jButton;                  if (jContentPane == null) {
157          }                          final GridBagConstraints gridBagConstraints11 = new GridBagConstraints();
158                            gridBagConstraints11.gridx = 1;
159          /**                          gridBagConstraints11.fill = GridBagConstraints.HORIZONTAL;
160           * This method initializes jPanel1                          gridBagConstraints11.gridy = 1;
161           *                          final GridBagConstraints gridBagConstraints3 = new GridBagConstraints();
162           * @return javax.swing.JPanel                          gridBagConstraints3.gridx = 1;
163           */                          gridBagConstraints3.fill = GridBagConstraints.HORIZONTAL;
164          private JPanel getJPanel1() {                          gridBagConstraints3.gridy = 2;
165                  if (jPanel1 == null) {                          final GridBagConstraints gridBagConstraints1 = new GridBagConstraints();
166                          final GridBagConstraints gridBagConstraints2 = new GridBagConstraints();                          gridBagConstraints1.gridx = 0;
167                          gridBagConstraints2.fill = GridBagConstraints.VERTICAL;                          gridBagConstraints1.fill = GridBagConstraints.BOTH;
168                          gridBagConstraints2.gridy = 0;                          gridBagConstraints1.gridwidth = 2;
169                          gridBagConstraints2.weightx = 1.0;                          gridBagConstraints1.anchor = GridBagConstraints.NORTH;
170                          gridBagConstraints2.insets = new Insets(5, 5, 5, 5);                          gridBagConstraints1.gridy = 0;
171                          gridBagConstraints2.anchor = GridBagConstraints.WEST;                          jLabelFlagimage = new JLabel(new ImageIcon(
172                          gridBagConstraints2.gridx = 1;                                          TranslationEditJPanel.class
173                          final GridBagConstraints gridBagConstraints = new GridBagConstraints();                                                          .getResource("resource/flags.jpg")));
174                          gridBagConstraints.gridx = 0;                          jContentPane = new JPanel();
175                          gridBagConstraints.insets = new Insets(0, 5, 0, 0);                          jContentPane.setLayout(new GridBagLayout());
176                          gridBagConstraints.gridy = 0;                          jContentPane.add(jLabelFlagimage, gridBagConstraints1);
177                          jLabel = new JLabel();                          jContentPane.add(getJPanel(), gridBagConstraints3);
178                          jLabel.setText("Select language: ");                          jContentPane.add(getJPanel1(), gridBagConstraints11);
179                          jPanel1 = new JPanel();                  }
180                          jPanel1.setLayout(new GridBagLayout());                  return jContentPane;
181                          jPanel1.add(jLabel, gridBagConstraints);          }
182                          jPanel1.add(getJComboBox(), gridBagConstraints2);  
183                  }          /**
184                  return jPanel1;           * This method initializes jPanel
185          }           *
186             * @return javax.swing.JPanel
187          /**           */
188           * This method initializes jComboBox          private JPanel getJPanel() {
189           *                  if (jPanel == null) {
190           * @return javax.swing.JComboBox                          final GridBagConstraints gridBagConstraints4 = new GridBagConstraints();
191           */                          gridBagConstraints4.gridx = 0;
192          private JComboBox getJComboBox() {                          gridBagConstraints4.anchor = GridBagConstraints.EAST;
193                  if (jComboBox == null) {                          gridBagConstraints4.weightx = 1.0;
194                          jComboBox = new JComboBox();                          gridBagConstraints4.insets = new Insets(5, 5, 5, 5);
195                            gridBagConstraints4.gridy = 0;
196                          jComboBox.addMouseWheelListener(new MouseWheelListener() {                          jPanel = new JPanel();
197                                  public void mouseWheelMoved(java.awt.event.MouseWheelEvent e) {                          jPanel.setLayout(new GridBagLayout());
198                            jPanel.add(getJButton(), gridBagConstraints4);
199                                          if ((e.getWheelRotation() < 0)) {                  }
200                                                  if (jComboBox.getSelectedIndex() < jComboBox                  return jPanel;
201                                                                  .getItemCount() - 1)          }
202                                                          jComboBox.setSelectedIndex(jComboBox  
203                                                                          .getSelectedIndex() + 1);          /**
204                                          } else {           * This method initializes jButton
205                                                  if (jComboBox.getSelectedIndex() > 0)           *
206                                                          jComboBox.setSelectedIndex(jComboBox           * @return javax.swing.JButton
207                                                                          .getSelectedIndex() - 1);           */
208                                          }          private JButton getJButton() {
209                                  }                  if (jButton == null) {
210                          });                          jButton = new OkButton();
211                            jButton.setEnabled(false);
212                          String[] langNames = new String[languages.size() + 1];  
213                          for (int i = 0; i < languages.size(); i++) {                          jButton.addActionListener(new ActionListener() {
214    
215                                  Locale locale = I8NUtil.getLocaleFor(languages.get(i));                                  public void actionPerformed(ActionEvent e) {
216                                            dispose();
217                                  langNames[i] = locale.getDisplayLanguage(locale) + " / "                                  }
218                                                  + locale.getDisplayLanguage() + " / "  
219                                                  + languages.get(i);                          });
220                          }                  }
221                          langNames[languages.size()] = "?";                  return jButton;
222            }
223                          jComboBox.setModel(new DefaultComboBoxModel(langNames));  
224                          jComboBox.setSelectedItem(langNames[languages.size()]);          /**
225             * This method initializes jPanel1
226                          jComboBox.addActionListener(new ActionListener() {           *
227             * @return javax.swing.JPanel
228                                  public void actionPerformed(final ActionEvent e) {           */
229                                          if (jComboBox.getSelectedIndex() == languages.size()) {          private JPanel getJPanel1() {
230                                                  getJButton().setEnabled(false);                  if (jPanel1 == null) {
231                                                  return;                          final GridBagConstraints gridBagConstraints2 = new GridBagConstraints();
232                                          }                          gridBagConstraints2.fill = GridBagConstraints.VERTICAL;
233                                          Translation.setActiveLang(languages.get(jComboBox                          gridBagConstraints2.gridy = 0;
234                                                          .getSelectedIndex()));                          gridBagConstraints2.weightx = 1.0;
235                                          getJButton().setEnabled(true);                          gridBagConstraints2.insets = new Insets(5, 5, 5, 5);
236                                  }                          gridBagConstraints2.anchor = GridBagConstraints.WEST;
237                            gridBagConstraints2.gridx = 1;
238                          });                          final GridBagConstraints gridBagConstraints = new GridBagConstraints();
239                  }                          gridBagConstraints.gridx = 0;
240                  return jComboBox;                          gridBagConstraints.insets = new Insets(0, 5, 0, 0);
241          }                          gridBagConstraints.gridy = 0;
242                            jLabel = new JLabel();
243  } // @jve:decl-index=0:visual-constraint="0,0"                          jLabel.setText("Select language: "); // i8n!?! Maybe replace with an
244                            // icon of an index finger
245                            jPanel1 = new JPanel();
246                            jPanel1.setLayout(new GridBagLayout());
247                            jPanel1.add(jLabel, gridBagConstraints);
248                            jPanel1.add(getJComboBox(), gridBagConstraints2);
249                    }
250                    return jPanel1;
251            }
252    
253            /**
254             * This method initializes jComboBox
255             *
256             * @return javax.swing.JComboBox
257             */
258            private JComboBox getJComboBox() {
259                    if (jComboBox == null) {
260                            ArrayList<String> languagesPlusOne = new ArrayList<String>(
261                                            languages);
262                            languagesPlusOne.add("?");
263    
264                            jComboBox = new LanguagesComboBox(languages);
265    
266                            SwingUtil.addMouseWheelForCombobox(jComboBox);
267                            jComboBox.addActionListener(new ActionListener() {
268    
269                                    public void actionPerformed(final ActionEvent e) {
270                                            if (jComboBox.getSelectedIndex() == languages.size()) {
271                                                    getJButton().setEnabled(false);
272                                                    return;
273                                            }
274    
275                                            String l = languages.get(jComboBox.getSelectedIndex());
276                                            try {
277                                                    Translation.setActiveLang(l, setLocale);
278    
279                                                    getJButton().setEnabled(true);
280                                            } catch (java.lang.IllegalArgumentException ee) {
281                                                    LOGGER.warn("The language " + l + " is not valid", ee);
282                                                    getJButton().setEnabled(false);
283                                            }
284    
285                                    }
286    
287                            });
288                    }
289                    return jComboBox;
290            }
291    
292    }

Legend:
Removed from v.39  
changed lines
  Added in v.1150

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26