Create radio buttons from actions.
[jSite.git] / src / de / todesbaum / jsite / gui / PreferencesPage.java
index 791c139..03910eb 100644 (file)
 
 package de.todesbaum.jsite.gui;
 
+import java.awt.BorderLayout;
+import java.awt.GridBagConstraints;
+import java.awt.GridBagLayout;
+import java.awt.Insets;
 import java.awt.event.ActionEvent;
 
 import javax.swing.AbstractAction;
 import javax.swing.Action;
+import javax.swing.ButtonGroup;
+import javax.swing.JButton;
+import javax.swing.JLabel;
+import javax.swing.JPanel;
+import javax.swing.JRadioButton;
+import javax.swing.JTextField;
 
 import de.todesbaum.jsite.i18n.I18n;
 import de.todesbaum.jsite.i18n.I18nContainer;
@@ -36,9 +46,21 @@ import de.todesbaum.util.swing.TWizardPage;
  */
 public class PreferencesPage extends TWizardPage {
 
+       /** Select default temp directory action. */
+       private Action selectDefaultTempDirectoryAction;
+
+       /** Select custom temp directory action. */
+       private Action selectCustomTempDirectoryAction;
+
        /** Action that chooses a new temp directory. */
        private Action chooseTempDirectoryAction;
 
+       /** The text field containing the directory. */
+       private JTextField tempDirectoryTextField;
+
+       /** The temp directory. */
+       private String tempDirectory;
+
        /**
         * Creates a new “preferences” page.
         *
@@ -63,18 +85,71 @@ public class PreferencesPage extends TWizardPage {
                });
        }
 
+       //
+       // ACCESSORS
+       //
+
+       /**
+        * Returns the temp directory.
+        *
+        * @return The temp directory, or {@code null} to use the default temp
+        *         directory
+        */
+       public String getTempDirectory() {
+               return tempDirectory;
+       }
+
+       /**
+        * Sets the temp directory.
+        *
+        * @param tempDirectory
+        *            The temp directory, or {@code null} to use the default temp
+        *            directory
+        */
+       public void setTempDirectory(String tempDirectory) {
+               this.tempDirectory = tempDirectory;
+       }
+
+       //
+       // PRIVATE METHODS
+       //
+
        /**
         * Initializes this page.
         */
        private void pageInit() {
                createActions();
+               setLayout(new BorderLayout(12, 12));
+               add(createPreferencesPanel(), BorderLayout.CENTER);
        }
 
        /**
         * Creates all actions.
         */
        private void createActions() {
-               chooseTempDirectoryAction = new AbstractAction(I18n.getMessage("jsite.preferences.choose-temp-directory")) {
+               selectDefaultTempDirectoryAction = new AbstractAction(I18n.getMessage("jsite.preferences.temp-directory.default")) {
+
+                       /**
+                        * {@inheritDoc}
+                        */
+                       @Override
+                       @SuppressWarnings("synthetic-access")
+                       public void actionPerformed(ActionEvent actionEvent) {
+                               selectDefaultTempDirectory();
+                       }
+               };
+               selectCustomTempDirectoryAction = new AbstractAction(I18n.getMessage("jsite.preferences.temp-directory.custom")) {
+
+                       /**
+                        * {@inheritDoc}
+                        */
+                       @Override
+                       @SuppressWarnings("synthetic-access")
+                       public void actionPerformed(ActionEvent actionEvent) {
+                               selectCustomTempDirectory();
+                       }
+               };
+               chooseTempDirectoryAction = new AbstractAction(I18n.getMessage("jsite.preferences.temp-directory.choose")) {
 
                        @Override
                        @SuppressWarnings("synthetic-access")
@@ -88,12 +163,74 @@ public class PreferencesPage extends TWizardPage {
                        @Override
                        @SuppressWarnings("synthetic-access")
                        public void run() {
-                               chooseTempDirectoryAction.putValue(Action.NAME, I18n.getMessage("jsite.preferences.choose-temp-directory"));
+                               selectDefaultTempDirectoryAction.putValue(Action.NAME, I18n.getMessage("jsite.preferences.temp-directory.default"));
+                               selectCustomTempDirectoryAction.putValue(Action.NAME, I18n.getMessage("jsite.preferences.temp-directory.custom"));
+                               chooseTempDirectoryAction.putValue(Action.NAME, I18n.getMessage("jsite.preferences.temp-directory.choose"));
                        }
                });
        }
 
        /**
+        * Creates the panel containing all preferences.
+        *
+        * @return The preferences panel
+        */
+       private JPanel createPreferencesPanel() {
+               JPanel preferencesPanel = new JPanel(new BorderLayout(12, 12));
+
+               JPanel tempDirectoryPanel = new JPanel(new GridBagLayout());
+               preferencesPanel.add(tempDirectoryPanel, BorderLayout.CENTER);
+
+               final JLabel tempDirectoryLabel = new JLabel("<html><b>" + I18n.getMessage("jsite.preferences.temp-directory") + "</b></html>");
+               tempDirectoryPanel.add(tempDirectoryLabel, new GridBagConstraints(0, 0, 3, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.BOTH, new Insets(0, 0, 0, 0), 0, 0));
+
+               final JRadioButton defaultTempDirectory = new JRadioButton(selectDefaultTempDirectoryAction);
+               tempDirectoryPanel.add(defaultTempDirectory, new GridBagConstraints(0, 1, 3, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.BOTH, new Insets(6, 18, 0, 0), 0, 0));
+
+               final JRadioButton customTempDirectory = new JRadioButton(selectCustomTempDirectoryAction);
+               tempDirectoryPanel.add(customTempDirectory, new GridBagConstraints(0, 2, 1, 1, 0.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.BOTH, new Insets(0, 18, 0, 0), 0, 0));
+
+               ButtonGroup tempDirectoryButtonGroup = new ButtonGroup();
+               defaultTempDirectory.getModel().setGroup(tempDirectoryButtonGroup);
+               customTempDirectory.getModel().setGroup(tempDirectoryButtonGroup);
+
+               tempDirectoryTextField = new JTextField();
+               tempDirectoryPanel.add(tempDirectoryTextField, new GridBagConstraints(1, 2, 1, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.BOTH, new Insets(0, 6, 0, 0), 0, 0));
+
+               JButton chooseButton = new JButton(chooseTempDirectoryAction);
+               tempDirectoryPanel.add(chooseButton, new GridBagConstraints(2, 2, 1, 1, 0.0, 0.0, GridBagConstraints.LINE_END, GridBagConstraints.BOTH, new Insets(0, 6, 0, 0), 0, 0));
+
+               I18nContainer.getInstance().registerRunnable(new Runnable() {
+
+                       /**
+                        * {@inheritDoc}
+                        */
+                       @Override
+                       public void run() {
+                               tempDirectoryLabel.setText("<html><b>" + I18n.getMessage("jsite.preferences.temp-directory") + "</b></html>");
+                       }
+               });
+
+               return preferencesPanel;
+       }
+
+       /**
+        * Activates the default temp directory radio button.
+        */
+       private void selectDefaultTempDirectory() {
+               tempDirectoryTextField.setEnabled(false);
+               chooseTempDirectoryAction.setEnabled(false);
+       }
+
+       /**
+        * Activates the custom temp directory radio button.
+        */
+       private void selectCustomTempDirectory() {
+               tempDirectoryTextField.setEnabled(true);
+               chooseTempDirectoryAction.setEnabled(true);
+       }
+
+       /**
         * Lets the user choose a new temp directory.
         */
        private void chooseTempDirectory() {