/******************************************************************************* * GenPlay, Einstein Genome Analyzer * Copyright (C) 2009, 2014 Albert Einstein College of Medicine * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * Authors: Julien Lajugie <julien.lajugie@einstein.yu.edu> * Nicolas Fourel <nicolas.fourel@einstein.yu.edu> * Eric Bouhassira <eric.bouhassira@einstein.yu.edu> * * Website: <http://genplay.einstein.yu.edu> ******************************************************************************/ package edu.yu.einstein.genplay.gui.dialog.optionDialog; import java.awt.GridBagConstraints; import java.awt.GridBagLayout; import java.awt.Insets; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.ItemEvent; import java.awt.event.ItemListener; import java.io.File; import javax.swing.JButton; import javax.swing.JCheckBox; import javax.swing.JComboBox; import javax.swing.JLabel; import javax.swing.JTextField; import javax.swing.UIManager; import javax.swing.UIManager.LookAndFeelInfo; import javax.swing.event.ChangeEvent; import javax.swing.event.ChangeListener; import edu.yu.einstein.genplay.util.FileChooser; import edu.yu.einstein.genplay.util.Utils; /** * Panel of the {@link OptionDialog} that allows to <br/> * - choose the default directory <br/> * - choose the look and feel * @author Julien Lajugie */ final class GeneralOptionPanel extends OptionPanel { private static final long serialVersionUID = 3540849857411182507L; // generated ID private final JLabel jlDefaultDir; // label default directory private final JTextField jtfDefautlDir; // textField default directory private final JButton jbDefaultDirBrowse; // button browse default directory private final JLabel jlLookAndFeel; // label look and feel private final JComboBox jcbLookAndFeel; // comboBox look and feel private final JLabel jlShowMenu; // label show menu private final JCheckBox jcbShowMenu; // comboBox show menu /** * Creates an instance of {@link GeneralOptionPanel} */ GeneralOptionPanel() { super("General"); jlDefaultDir = new JLabel("Default directory: "); if (configurationManager.getDefaultDirectory() != null) { jtfDefautlDir = new JTextField(new File(configurationManager.getDefaultDirectory()).getPath()); } else { jtfDefautlDir = new JTextField(); } jtfDefautlDir.setColumns(30); jtfDefautlDir.setEditable(false); jbDefaultDirBrowse = new JButton("Browse"); jbDefaultDirBrowse.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent e) { File selectedDirectory = FileChooser.chooseFile(getRootPane(), FileChooser.OPEN_DIRECTORY_MODE, "Select Default Directory", null, false); if (selectedDirectory != null) { jtfDefautlDir.setText(selectedDirectory.toString()); configurationManager.setDefaultDirectory(selectedDirectory.toString()); } } }); jlLookAndFeel = new JLabel("Look and feel: "); // Retrieve the list of installed look and feel LookAndFeelInfo[] lafi = UIManager.getInstalledLookAndFeels(); String[] installedAndFeelClassNames = new String[lafi.length]; for (int i = 0; i < lafi.length; i++) { installedAndFeelClassNames[i] = lafi[i].getName(); } jcbLookAndFeel = new JComboBox(installedAndFeelClassNames); // Select the look and feel of the configuration for (int i = 0; i < lafi.length; i++) { if (lafi[i].getClassName().equals(configurationManager.getLookAndFeel())) { jcbLookAndFeel.setSelectedIndex(i); } } jcbLookAndFeel.addItemListener(new ItemListener() { @Override public void itemStateChanged(ItemEvent e) { configurationManager.setLookAndFeel(UIManager.getInstalledLookAndFeels()[jcbLookAndFeel.getSelectedIndex()].getClassName()); } }); jlShowMenu = new JLabel("Show main menu bar:"); jcbShowMenu = new JCheckBox(); jcbShowMenu.setSelected(configurationManager.isMenuBarShown()); jcbShowMenu.addChangeListener(new ChangeListener() { @Override public void stateChanged(ChangeEvent e) { configurationManager.setShowMenuBar(jcbShowMenu.isSelected()); } }); setLayout(new GridBagLayout()); GridBagConstraints c = new GridBagConstraints(); c.gridx = 0; c.gridy = 0; c.anchor = GridBagConstraints.LINE_START; c.insets = new Insets(10, 0, 0, 0); add(jlDefaultDir, c); c.gridx = 0; c.gridy = 1; c.gridwidth = 2; c.anchor = GridBagConstraints.CENTER; c.insets = new Insets(0, 0, 0, 0); add(jtfDefautlDir, c); c.gridx = 1; c.gridy = 2; c.gridwidth = 1; c.anchor = GridBagConstraints.FIRST_LINE_END; add(jbDefaultDirBrowse, c); c.gridx = 0; c.gridy = 3; c.anchor = GridBagConstraints.LINE_START; c.insets = new Insets(30, 0, 0, 0); add(jlLookAndFeel, c); c.gridx = 1; c.gridy = 3; c.gridwidth = 2; c.anchor = GridBagConstraints.LINE_END; c.insets = new Insets(30, 0, 0, 0); add(jcbLookAndFeel, c); // no option to hide or show the menu bar in mac os // because it's always visible if (!Utils.isMacOS()) { c.gridx = 0; c.gridy = 4; c.gridwidth = 2; c.anchor = GridBagConstraints.LINE_START; c.insets = new Insets(30, 0, 0, 0); add(jlShowMenu, c); c.gridx = 1; c.gridy = 4; c.gridwidth = 1; c.anchor = GridBagConstraints.LINE_END; c.insets = new Insets(30, 0, 0, 0); add(jcbShowMenu, c); } } }