/* * Initiative - A role playing utility to track turns * Copyright (C) 2002 Devon D Jones * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * PreferencesTrackingPanel.java * * Created on August 29, 2002, 2:41 PM */ package plugin.initiative.gui; import java.awt.BorderLayout; import javax.swing.BoxLayout; import javax.swing.JCheckBox; import javax.swing.JPanel; import javax.swing.JScrollPane; import pcgen.core.SettingsHandler; import pcgen.system.LanguageBundle; import plugin.initiative.InitiativePlugin; /** * Panel that tracks the misc preferences * * @author devon */ public class PreferencesPerformancePanel extends gmgen.gui.PreferencesPanel { private static final String OPTION_NAME = InitiativePlugin.LOG_NAME + ".refreshOnStateChange"; //$NON-NLS-1$ private JPanel mainPanel; private JCheckBox refreshOnStateChange; /** Creates new form PreferencesMiscPanel */ public PreferencesPerformancePanel() { initComponents(); initPreferences(); } @Override public void applyPreferences() { SettingsHandler.setGMGenOption(OPTION_NAME, getRefreshOnStateChange()); } @Override public void initPreferences() { setRefreshOnStateChange(SettingsHandler.getGMGenOption( OPTION_NAME, true)); } /** * <p> * Turns on or off refresh on state cange * </p> * * @param b */ private void setRefreshOnStateChange(boolean b) { refreshOnStateChange.setSelected(b); } /** * <p> * Gets current setting of refresh on state change * </p> * * @return true or false */ private boolean getRefreshOnStateChange() { return refreshOnStateChange.isSelected(); } @Override public String toString() { return LanguageBundle.getString("in_plugin_init_performance"); //$NON-NLS-1$ } private void initComponents() { setLayout(new BorderLayout()); mainPanel = new JPanel(); refreshOnStateChange = new JCheckBox(); mainPanel.setLayout(new BoxLayout(mainPanel, BoxLayout.Y_AXIS)); refreshOnStateChange.setText(LanguageBundle.getString("in_plugin_init_refreshOnChange")); //$NON-NLS-1$ mainPanel.add(refreshOnStateChange); JScrollPane jScrollPane1 = new JScrollPane(); jScrollPane1.setViewportView(mainPanel); add(jScrollPane1, BorderLayout.CENTER); } }