/[schmitzm]/branches/2.3.x/src/skrueger/swing/TranslationAskJDialog.java
ViewVC logotype

Annotation of /branches/2.3.x/src/skrueger/swing/TranslationAskJDialog.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1136 - (hide annotations)
Fri Oct 15 01:08:46 2010 UTC (14 years, 4 months ago) by alfonx
Original Path: trunk/src/skrueger/swing/TranslationAskJDialog.java
File size: 8192 byte(s)
Removed getParentWindow from TranslationAskDialog
1 alfonx 244 /*******************************************************************************
2     * Copyright (c) 2009 Martin O. J. Schmitz.
3     *
4     * This file is part of the SCHMITZM library - a collection of utility
5 alfonx 256 * classes based on Java 1.6, focusing (not only) on Java Swing
6 alfonx 244 * and the Geotools library.
7     *
8     * The SCHMITZM project is hosted at:
9     * http://wald.intevation.org/projects/schmitzm/
10     *
11     * 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     * as published by the Free Software Foundation; either version 3
14     * of the License, or (at your option) any later version.
15     *
16     * This program is distributed in the hope that it will be useful,
17     * 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     *
21     * 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     * or try this link: http://www.gnu.org/licenses/lgpl.html
25     *
26     * Contributors:
27     * Martin O. J. Schmitz - initial API and implementation
28 alfonx 862 * Stefan A. Tzeggai - additional utility classes
29 alfonx 244 ******************************************************************************/
30     package skrueger.swing;
31    
32     import java.awt.BorderLayout;
33     import java.awt.Component;
34     import java.awt.FlowLayout;
35     import java.awt.Window;
36     import java.awt.event.ActionEvent;
37     import java.awt.event.ActionListener;
38     import java.awt.event.KeyEvent;
39     import java.awt.event.WindowAdapter;
40     import java.awt.event.WindowEvent;
41    
42     import javax.swing.AbstractAction;
43     import javax.swing.Action;
44     import javax.swing.JButton;
45     import javax.swing.JComponent;
46     import javax.swing.JDialog;
47     import javax.swing.JPanel;
48     import javax.swing.JRootPane;
49     import javax.swing.KeyStroke;
50    
51     import schmitzm.swing.SwingUtil;
52    
53 alfonx 420 public class TranslationAskJDialog extends CancellableDialogAdapter{
54 alfonx 244
55     private OkButton okButton;
56     private CancelButton cancelButton;
57    
58     public static final String PROPERTY_CANCEL_AND_CLOSE = "CANCEL";
59     public static final String PROPERTY_APPLY_AND_CLOSE = "APPLY";
60    
61     private JComponent[] translationEditJPanelsOrJustComponents;
62    
63     private boolean hasBeenCanceled;
64    
65     private JButton[] optionalButtons;
66 alfonx 420 private TranslationsAskJPanel translationsAskPane;
67 alfonx 244
68     /**
69     * Since the registerKeyboardAction() method is part of the JComponent class
70     * definition, you must define the Escape keystroke and register the
71     * keyboard action with a JComponent, not with a JDialog. The JRootPane for
72     * the JDialog serves as an excellent choice to associate the registration,
73     * as this will always be visible. If you override the protected
74     * createRootPane() method of JDialog, you can return your custom JRootPane
75     * with the keystroke enabled:
76     */
77     @Override
78     protected JRootPane createRootPane() {
79     KeyStroke stroke = KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0);
80     JRootPane rootPane = new JRootPane();
81     rootPane.registerKeyboardAction(new ActionListener() {
82    
83     public void actionPerformed(ActionEvent e) {
84     cancel();
85     }
86    
87     }, stroke, JComponent.WHEN_IN_FOCUSED_WINDOW);
88    
89     return rootPane;
90     }
91    
92     /**
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
96     * values and restore them if the dialog is canceled. Other
97     * {@link JComponent}s are just displayed.<br/>
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     */
102     public TranslationAskJDialog(Component owner,
103     final JComponent... translationEditJPanels) {
104 alfonx 1136 super(owner);
105 alfonx 244 setComponents(translationEditJPanels);
106     }
107    
108     /**
109     * The {@link TranslationAskJDialog} fills its content pane with an
110     * arbitrary number of components. If these {@link Component}s are
111     * {@link TranslationEditJPanel}s, the {@link JDialog} manages to backup the
112     * values and restore them if the dialog is canceled. Other
113     * {@link JComponent}s are just displayed.<br/>
114     * This class handles the cancel button itself. You may still want to listen
115     * to PROPERTY_APPLY_AND_CLOSE events. This dialog is modal. The dialog has
116     * to be set visible afterwards.<br/>
117     * Using this constructor, you have to call setComponents afterwards.
118     */
119     public TranslationAskJDialog(Component owner) {
120 alfonx 1136 super(owner);
121 alfonx 244 }
122    
123     /**
124     * The {@link TranslationAskJDialog} fills its content pane with an
125     * arbitrary number of components. If these {@link Component}s are
126     * {@link TranslationEditJPanel}s, the {@link JDialog} manages to backup the
127     * values and restore them if the dialog is canceled. Other
128     * {@link JComponent}s are just displayed.
129     *
130     * @param translationEditJPanels
131     * Arbitrary list of {@link JComponent}s and
132     * {@link TranslationEditJPanel}s.
133     */
134     public void setComponents(final JComponent... translationEditJPanels) {
135     this.translationEditJPanelsOrJustComponents = translationEditJPanels;
136    
137 alfonx 302 init();
138     }
139    
140 alfonx 244
141     private void init() {
142     setDefaultCloseOperation(JDialog.DO_NOTHING_ON_CLOSE);
143     addWindowListener(new WindowAdapter() {
144    
145     public void windowClosing(WindowEvent e) {
146     cancel();
147     }
148    
149     });
150 alfonx 420
151     translationsAskPane = new TranslationsAskJPanel(translationEditJPanelsOrJustComponents);
152 alfonx 244 JPanel cp = new JPanel(new BorderLayout());
153 alfonx 420 cp.add(translationsAskPane, BorderLayout.WEST);
154 alfonx 244 cp.add(getButtons(), BorderLayout.SOUTH);
155     setContentPane(cp);
156 alfonx 302
157     setTitle(SwingUtil.R("TranslationAskJDialog.Title"));
158 alfonx 244 setModal(true);
159     pack();
160 alfonx 617 SwingUtil.setRelativeFramePosition(this, getParent(), .5, .5);
161 alfonx 244 }
162    
163 alfonx 420 public void setOptionalButtons(JButton... optionalButtons) {
164 alfonx 244 this.optionalButtons = optionalButtons;
165     init();
166     }
167    
168 alfonx 302 /**
169 alfonx 419 * Called when the dilaog is closed using the cancel button. When
170     * overwriting this method, call super.cancel() after restoring your
171     * properties.
172 alfonx 302 */
173 alfonx 420 @Override
174 alfonx 419 public void cancel() {
175 alfonx 420 translationsAskPane.cancel();
176 alfonx 244 firePropertyChange(PROPERTY_CANCEL_AND_CLOSE, null, null);
177 alfonx 420 hasBeenCanceled = true;
178 alfonx 244 setVisible(false);
179     dispose();
180     }
181    
182    
183     private JComponent getButtons() {
184     JPanel jPanel = new JPanel(new FlowLayout(FlowLayout.RIGHT));
185    
186     if (optionalButtons != null)
187     for (JButton b : optionalButtons) {
188     jPanel.add(b);
189     }
190    
191     if (okButton == null) {
192     okButton = new OkButton(new AbstractAction() {
193     {
194     // Set a mnemonic character. In most look and feels, this
195     // causes the
196     // specified character to be underlined This indicates that
197     // if the component
198     // using this action has the focus and In some look and
199     // feels, this causes
200     // the specified character in the label to be underlined and
201     putValue(Action.MNEMONIC_KEY, new Integer(
202     java.awt.event.KeyEvent.VK_E));
203    
204 alfonx 302 // // Set tool tip text
205     // putValue(Action.SHORT_DESCRIPTION,
206     // "Accept the changes made to the translation."); //i8n
207 alfonx 244
208     }
209    
210     public void actionPerformed(ActionEvent evt) {
211    
212 alfonx 302 okClose();
213    
214 alfonx 244 }
215    
216     });
217    
218     }
219     jPanel.add(okButton);
220    
221     if (cancelButton == null) {
222     cancelButton = new CancelButton(new AbstractAction("") {
223     public void actionPerformed(ActionEvent evt) {
224 alfonx 302 cancel();
225 alfonx 244 }
226     });
227     }
228     jPanel.add(cancelButton);
229    
230     return jPanel;
231     }
232    
233     /**
234 alfonx 420 * This method is only called when the dialog is closed and not canceled.
235 alfonx 302 * Can be overwritten to do anything when the dialog has been accepted.
236     */
237 alfonx 420 public boolean okClose() {
238    
239     if (!translationsAskPane.checkValidInputs())
240     return false;
241    
242    
243 alfonx 302 dispose();
244 alfonx 420
245     TranslationAskJDialog.this.firePropertyChange(
246     PROPERTY_APPLY_AND_CLOSE, null, null);
247     return true;
248 alfonx 302 }
249    
250 alfonx 244
251    
252     /**
253     * After the modal dialog has been closed, this allows to find out, whether
254 alfonx 420 * the {@link Component} has been canceled.
255 alfonx 244 *
256     * @return <code>true</code> if the {@link JDialog} has been canceled.
257     */
258     public boolean isCancelled() {
259     return hasBeenCanceled;
260     }
261    
262     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26