001: /*
002: * Copyright (c) 2005-2008 Substance Kirill Grouchnikov. All Rights Reserved.
003: *
004: * Redistribution and use in source and binary forms, with or without
005: * modification, are permitted provided that the following conditions are met:
006: *
007: * o Redistributions of source code must retain the above copyright notice,
008: * this list of conditions and the following disclaimer.
009: *
010: * o Redistributions in binary form must reproduce the above copyright notice,
011: * this list of conditions and the following disclaimer in the documentation
012: * and/or other materials provided with the distribution.
013: *
014: * o Neither the name of Substance Kirill Grouchnikov nor the names of
015: * its contributors may be used to endorse or promote products derived
016: * from this software without specific prior written permission.
017: *
018: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
019: * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
020: * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
021: * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
022: * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
023: * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
024: * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
025: * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
026: * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
027: * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
028: * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
029: */
030: package test.check;
031:
032: import java.awt.*;
033: import java.awt.event.ActionEvent;
034: import java.awt.event.ActionListener;
035: import java.util.Locale;
036:
037: import javax.swing.*;
038: import javax.swing.plaf.FontUIResource;
039:
040: import org.jvnet.substance.SubstanceLookAndFeel;
041: import org.jvnet.substance.fonts.FontPolicy;
042: import org.jvnet.substance.fonts.FontSet;
043:
044: /**
045: * Listener to change the current locale.
046: *
047: * @author Kirill Grouchnikov
048: */
049: public class MyLocaleChangeListener implements ActionListener {
050: /**
051: * Language code.
052: */
053: private String langCode;
054:
055: /**
056: * Country code.
057: */
058: private String countryCode;
059:
060: /**
061: * Main test frame.
062: */
063: private JFrame frame;
064:
065: /**
066: * Wrapper around the base Substance font set. Is used to create larger /
067: * smaller font sets.
068: *
069: * @author Kirill Grouchnikov
070: */
071: private static class DialogFontSet implements FontSet {
072: /**
073: * The base Substance font set.
074: */
075: private FontSet delegate;
076:
077: /**
078: * Creates a wrapper font set.
079: *
080: * @param delegate
081: * The base Substance font set.
082: */
083: public DialogFontSet(FontSet delegate) {
084: super ();
085: this .delegate = delegate;
086: }
087:
088: /**
089: * Returns the wrapped font.
090: *
091: * @param systemFont
092: * Original font.
093: * @return Wrapped font.
094: */
095: private FontUIResource getWrappedFont(FontUIResource systemFont) {
096: return new FontUIResource("Dialog", systemFont.getStyle(),
097: systemFont.getSize());
098: }
099:
100: public FontUIResource getControlFont() {
101: return this .getWrappedFont(this .delegate.getControlFont());
102: }
103:
104: public FontUIResource getMenuFont() {
105: return this .getWrappedFont(this .delegate.getMenuFont());
106: }
107:
108: public FontUIResource getMessageFont() {
109: return this .getWrappedFont(this .delegate.getMessageFont());
110: }
111:
112: public FontUIResource getSmallFont() {
113: return this .getWrappedFont(this .delegate.getSmallFont());
114: }
115:
116: public FontUIResource getTitleFont() {
117: return this .getWrappedFont(this .delegate.getTitleFont());
118: }
119:
120: public FontUIResource getWindowTitleFont() {
121: return this .getWrappedFont(this .delegate
122: .getWindowTitleFont());
123: }
124: }
125:
126: /**
127: * Creates the locale change listener.
128: *
129: * @param langCode
130: * Language code.
131: * @param countryCode
132: * Country code.
133: * @param frame
134: * Main test frame.
135: */
136: public MyLocaleChangeListener(String langCode, String countryCode,
137: JFrame frame) {
138: this .langCode = langCode;
139: this .countryCode = countryCode;
140: this .frame = frame;
141: }
142:
143: // String getDefaultPattern(Locale locale) {
144: // ResourceBundle r = LocaleData.getLocaleElements(locale);
145: // // ResourceBundle r = ResourceBundle.getBundle(
146: // // "java.text.resources.LocaleElements", locale);
147: // String[] dateTimePatterns = r.getStringArray("DateTimePatterns");
148: // Object[] dateTimeArgs = { dateTimePatterns[DateFormat.SHORT],
149: // dateTimePatterns[DateFormat.SHORT + 4] };
150: // return MessageFormat.format(dateTimePatterns[8], dateTimeArgs);
151: // }
152: //
153: /**
154: * Sets the specified locale on a component and all its children
155: * (recursively).
156: *
157: * @param component
158: * Component.
159: * @param locale
160: * Locale to set.
161: */
162: void setLocale(Component component, Locale locale) {
163: component.setLocale(locale);
164: // if (component instanceof JSpinner) {
165: // JSpinner spinner = (JSpinner) component;
166: // if (spinner.getModel() instanceof SpinnerDateModel) {
167: // // probably not the best way. Since this is test
168: // // application, this will do.
169: // spinner.setEditor(new JSpinner.DateEditor(spinner,
170: // getDefaultPattern(locale)));
171: // }
172: // }
173: if (component instanceof Container) {
174: Container cont = (Container) component;
175: for (int i = 0; i < cont.getComponentCount(); i++)
176: setLocale(cont.getComponent(i), locale);
177: }
178: }
179:
180: public void actionPerformed(ActionEvent e) {
181: SwingUtilities.invokeLater(new Runnable() {
182: public void run() {
183: LookAndFeel currLaf = UIManager.getLookAndFeel();
184: // Locale currLocale = Locale.getDefault();
185: Locale newLocale = new Locale(langCode, countryCode);
186: Locale.setDefault(newLocale);
187: frame.applyComponentOrientation(ComponentOrientation
188: .getOrientation(Locale.getDefault()));
189: if (currLaf instanceof SubstanceLookAndFeel) {
190: SubstanceLookAndFeel.resetLabelBundle();
191: if ("CN".equals(countryCode)) {
192: final FontSet currFontSet = SubstanceLookAndFeel
193: .getFontPolicy().getFontSet(
194: "Substance", null);
195: SubstanceLookAndFeel
196: .setFontPolicy(new FontPolicy() {
197: public FontSet getFontSet(
198: String lafName,
199: UIDefaults table) {
200: return new DialogFontSet(
201: currFontSet);
202: }
203: });
204: } else {
205: SubstanceLookAndFeel.setFontPolicy(null);
206: }
207: }
208: try {
209: UIManager.setLookAndFeel(currLaf.getClass()
210: .getName());
211: } catch (Exception exc) {
212: }
213: // this.setLocale(this.frame, newLocale);
214: SwingUtilities.updateComponentTreeUI(frame);
215: }
216: });
217: }
218: }
|