source: AE/installer2/src/net/oni2/aeinstaller/gui/settings/SettingsDialog.java@ 643

Last change on this file since 643 was 641, checked in by alloc, 12 years ago

AEI2 0.98:

  • Reduced number+size of HTTP queries
  • Removed "submitter" field
  • Added output of dependencies to be selected before continuing
File size: 2.6 KB
RevLine 
[591]1package net.oni2.aeinstaller.gui.settings;
2
3import java.awt.event.ActionEvent;
4import java.awt.event.KeyEvent;
5import java.util.ResourceBundle;
6
7import javax.swing.AbstractAction;
[608]8import javax.swing.JCheckBox;
[591]9import javax.swing.JComboBox;
10import javax.swing.JComponent;
[593]11import javax.swing.JDialog;
[591]12import javax.swing.JOptionPane;
13import javax.swing.KeyStroke;
14import javax.swing.UIManager;
15
16import net.oni2.aeinstaller.backend.Settings;
17
18import org.javabuilders.BuildResult;
19import org.javabuilders.swing.SwingJavaBuilder;
20
21/**
22 * @author Christian Illy
23 */
[593]24public class SettingsDialog extends JDialog {
[591]25 private static final long serialVersionUID = -5719515325671846620L;
26
[629]27 private ResourceBundle bundle = ResourceBundle
28 .getBundle("net.oni2.aeinstaller.localization."
29 + getClass().getSimpleName());
[591]30 @SuppressWarnings("unused")
31 private BuildResult result = SwingJavaBuilder.build(this, bundle);
32
33 private JComboBox cmbLaF;
34 private LaFComboModel laFModel;
35
[608]36 private JCheckBox chkNotifyOnStart;
[625]37 private JCheckBox chkCopyIntro;
38 private JCheckBox chkCopyOutro;
[608]39
[591]40 /**
[593]41 * Open the settings
[591]42 */
[593]43 public SettingsDialog() {
[609]44 setResizable(false);
[591]45
46 AbstractAction closeAction = new AbstractAction() {
47
48 private static final long serialVersionUID = 1L;
49
50 public void actionPerformed(ActionEvent arg0) {
51 dispose();
52 }
53 };
54 KeyStroke ksCtrlW = KeyStroke
55 .getKeyStroke('W', KeyEvent.CTRL_DOWN_MASK);
56 getRootPane()
57 .getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT)
58 .put(ksCtrlW, "close");
59 getRootPane().getActionMap().put("close", closeAction);
60
61 initValues();
[641]62
63 setLocationRelativeTo(null);
[591]64 }
65
66 private void initValues() {
67 Settings set = Settings.getInstance();
68
69 laFModel = new LaFComboModel();
70 cmbLaF.setModel(laFModel);
[608]71
72 chkNotifyOnStart.setSelected(set.get("notifyupdates", true));
[625]73 chkCopyIntro.setSelected(set.get("copyintro", false));
74 chkCopyOutro.setSelected(set.get("copyoutro", true));
[591]75 }
76
77 @SuppressWarnings("unused")
78 private boolean save() {
79 Settings set = Settings.getInstance();
80
[625]81 set.put("notifyupdates", chkNotifyOnStart.isSelected());
82 set.put("copyintro", chkCopyIntro.isSelected());
83 set.put("copyoutro", chkCopyOutro.isSelected());
[608]84
85 String oldLaf = set.get("lookandfeel", UIManager.getLookAndFeel()
86 .getClass().getName());
[591]87 String newLaf = laFModel.getSelectedClassName();
88
89 if (!newLaf.equals(oldLaf)) {
90 set.put("lookandfeel", newLaf);
91 JOptionPane.showMessageDialog(this,
92 bundle.getString("newLaF.text"),
93 bundle.getString("newLaF.title"),
94 JOptionPane.INFORMATION_MESSAGE);
95 }
96
97 return true;
98 }
99
100}
Note: See TracBrowser for help on using the repository browser.