/* $Id: SettingsTabAppearance.java 17841 2010-01-12 19:17:52Z linus $ ***************************************************************************** * Copyright (c) 2009 Contributors - see below * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * tfmorris ***************************************************************************** * * Some portions of this file was previously release using the BSD License: */ // Copyright (c) 1996-2008 The Regents of the University of California. All // Rights Reserved. Permission to use, copy, modify, and distribute this // software and its documentation without fee, and without a written // agreement is hereby granted, provided that the above copyright notice // and this paragraph appear in all copies. This software program and // documentation are copyrighted by The Regents of the University of // California. The software program and documentation are supplied "AS // IS", without any accompanying services from The Regents. The Regents // does not warrant that the operation of the program will be // uninterrupted or error-free. The end-user understands that the program // was developed for research purposes and is advised not to rely // exclusively on the program for any reason. IN NO EVENT SHALL THE // UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, // SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, // ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF // THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF // SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY // WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE // PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF // CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, // UPDATES, ENHANCEMENTS, OR MODIFICATIONS. package org.argouml.ui; import java.awt.BorderLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.Locale; import javax.swing.BorderFactory; import javax.swing.JCheckBox; import javax.swing.JComboBox; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.SwingConstants; import org.argouml.application.api.Argo; import org.argouml.application.api.GUISettingsTabInterface; import org.argouml.configuration.Configuration; import org.argouml.i18n.Translator; import org.tigris.swidgets.LabelledLayout; /** * Provides settings for altering the appearance of the Argo application. * * @author Linus Tolke * @author Jeremy Jones * @since 0.9.7 */ class SettingsTabAppearance extends JPanel implements GUISettingsTabInterface { private JComboBox lookAndFeel; private JComboBox metalTheme; private JComboBox language; private JLabel metalLabel; private JCheckBox smoothEdges; private Locale locale; private JPanel topPanel; /** * The constructor. * */ SettingsTabAppearance() { // Defer initialization until we're visible } private void buildPanel() { setLayout(new BorderLayout()); int labelGap = 10; int componentGap = 10; topPanel = new JPanel(new LabelledLayout(labelGap, componentGap)); JLabel label = new JLabel(Translator.localize("label.look-and-feel")); lookAndFeel = new JComboBox(LookAndFeelMgr.getInstance() .getAvailableLookAndFeelNames()); lookAndFeel.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { setMetalThemeState(); } }); label.setLabelFor(lookAndFeel); topPanel.add(label); topPanel.add(lookAndFeel); metalLabel = new JLabel(Translator.localize("label.metal-theme")); metalTheme = new JComboBox(LookAndFeelMgr.getInstance() .getAvailableThemeNames()); metalLabel.setLabelFor(metalTheme); topPanel.add(metalLabel); topPanel.add(metalTheme); JCheckBox j = new JCheckBox(Translator.localize("label.smooth-edges")); smoothEdges = j; JLabel emptyLabel = new JLabel(); emptyLabel.setLabelFor(smoothEdges); topPanel.add(emptyLabel); topPanel.add(smoothEdges); JLabel languageLabel = new JLabel(Translator.localize("label.language")); Collection<MyLocale> c = MyLocale.getLocales(); language = new JComboBox(c.toArray()); Object o = MyLocale.getDefault(c); if (o != null) { language.setSelectedItem(o); } else { language.setSelectedIndex(-1); } language.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { JComboBox combo = (JComboBox) e.getSource(); locale = ((MyLocale) combo.getSelectedItem()).getLocale(); } }); languageLabel.setLabelFor(language); topPanel.add(languageLabel); topPanel.add(language); topPanel.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10)); add(topPanel, BorderLayout.CENTER); JLabel restart = new JLabel(Translator.localize("label.restart-application")); restart.setHorizontalAlignment(SwingConstants.CENTER); restart.setVerticalAlignment(SwingConstants.CENTER); restart.setBorder(BorderFactory.createEmptyBorder(10, 2, 10, 2)); add(restart, BorderLayout.SOUTH); setMetalThemeState(); } /** * Enables or disables the metal theme controls depending on whether * or not themes are supported by the selected look and feel. */ private void setMetalThemeState() { String lafName = (String) lookAndFeel.getSelectedItem(); boolean enabled = LookAndFeelMgr.getInstance().isThemeCompatibleLookAndFeel( LookAndFeelMgr.getInstance().getLookAndFeelFromName(lafName)); metalLabel.setEnabled(enabled); metalTheme.setEnabled(enabled); } /* * @see GUISettingsTabInterface#handleSettingsTabRefresh() */ public void handleSettingsTabRefresh() { String laf = LookAndFeelMgr.getInstance().getCurrentLookAndFeelName(); String theme = LookAndFeelMgr.getInstance().getCurrentThemeName(); lookAndFeel.setSelectedItem(laf); metalTheme.setSelectedItem(theme); smoothEdges.setSelected(Configuration.getBoolean( Argo.KEY_SMOOTH_EDGES, false)); } /* * @see GUISettingsTabInterface#handleSettingsTabSave() */ public void handleSettingsTabSave() { LookAndFeelMgr.getInstance().setCurrentLAFAndThemeByName( (String) lookAndFeel.getSelectedItem(), (String) metalTheme.getSelectedItem()); // Make the result inmediately visible in case of apply: /* Disabled since it gives various problems: e.g. the toolbar icons * get too wide. Also the default does not give the new java 5.0 looks. SwingUtilities.updateComponentTreeUI(SwingUtilities.getRootPane(this)); */ Configuration.setBoolean(Argo.KEY_SMOOTH_EDGES, smoothEdges.isSelected()); if (locale != null) { Configuration.setString(Argo.KEY_LOCALE, locale.toString()); } } /* * @see GUISettingsTabInterface#handleSettingsTabCancel() */ public void handleSettingsTabCancel() { } /* * @see org.argouml.ui.GUISettingsTabInterface#handleResetToDefault() */ public void handleResetToDefault() { // Do nothing - these buttons are not shown. } /* * @see GUISettingsTabInterface#getTabKey() */ public String getTabKey() { return "tab.appearance"; } /* * @see GUISettingsTabInterface#getTabPanel() */ public JPanel getTabPanel() { if (topPanel == null) { buildPanel(); } return this; } /** * The UID. */ private static final long serialVersionUID = -6779214318672690570L; } class MyLocale { private Locale myLocale; /** * The constructor. * * @param locale the Locale */ MyLocale(Locale locale) { myLocale = locale; } /** * @return returns the locale */ Locale getLocale() { return myLocale; } /* * @see java.lang.Object#toString() */ public String toString() { StringBuffer displayString = new StringBuffer(myLocale.toString()); displayString.append(" ("); displayString.append(myLocale.getDisplayLanguage(myLocale)); if (myLocale.getDisplayCountry(myLocale) != null && myLocale.getDisplayCountry(myLocale).length() > 0) { displayString.append(" "); displayString.append(myLocale.getDisplayCountry(myLocale)); } displayString.append(")"); if (myLocale.equals(Translator.getSystemDefaultLocale())) { displayString.append(" - Default"); } return displayString.toString(); } static Collection<MyLocale> getLocales() { Collection<MyLocale> c = new ArrayList<MyLocale>(); for (Locale locale : Arrays.asList(Translator.getLocales())) { c.add(new MyLocale(locale)); } return c; } static MyLocale getDefault(Collection<MyLocale> c) { Locale locale = Locale.getDefault(); for (MyLocale ml : c) { if (locale.equals(ml.getLocale())) { return ml; } } return null; } }