Source Code Cross Referenced for MyLocaleChangeListener.java in  » Swing-Library » substance-look-feel » test » check » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Swing Library » substance look feel » test.check 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


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:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.