1 | // License: GPL. Copyright 2007 by Immanuel Scholz and others
|
---|
2 | package org.openstreetmap.josm.gui.preferences;
|
---|
3 |
|
---|
4 | import static org.openstreetmap.josm.tools.I18n.tr;
|
---|
5 |
|
---|
6 | import java.awt.Font;
|
---|
7 | import java.awt.GridBagLayout;
|
---|
8 | import java.awt.ScrollPane;
|
---|
9 | import java.awt.event.ActionEvent;
|
---|
10 | import java.awt.event.ActionListener;
|
---|
11 | import java.util.Collection;
|
---|
12 | import java.util.Iterator;
|
---|
13 | import java.util.LinkedList;
|
---|
14 |
|
---|
15 | import javax.swing.BorderFactory;
|
---|
16 | import javax.swing.JComponent;
|
---|
17 | import javax.swing.JLabel;
|
---|
18 | import javax.swing.JOptionPane;
|
---|
19 | import javax.swing.JPanel;
|
---|
20 | import javax.swing.JScrollPane;
|
---|
21 | import javax.swing.JTabbedPane;
|
---|
22 |
|
---|
23 | import org.openstreetmap.josm.Main;
|
---|
24 | import org.openstreetmap.josm.plugins.PluginProxy;
|
---|
25 | import org.openstreetmap.josm.tools.GBC;
|
---|
26 | import org.openstreetmap.josm.tools.I18n;
|
---|
27 | import org.openstreetmap.josm.tools.ImageProvider;
|
---|
28 |
|
---|
29 | /**
|
---|
30 | * The preference settings.
|
---|
31 | *
|
---|
32 | * @author imi
|
---|
33 | */
|
---|
34 | public class PreferenceDialog extends JTabbedPane {
|
---|
35 |
|
---|
36 | public final static Collection<PreferenceSetting> settings = new LinkedList<PreferenceSetting>();
|
---|
37 |
|
---|
38 | public boolean requiresRestart = false;
|
---|
39 | public final RequireRestartAction requireRestartAction = new RequireRestartAction();
|
---|
40 |
|
---|
41 | // some common tabs
|
---|
42 | public final JPanel display = createPreferenceTab("display", tr("Display Settings"), tr("Various settings that influence the visual representation of the whole program."));
|
---|
43 | public final JPanel connection = createPreferenceTab("connection", I18n.tr("Connection Settings"), I18n.tr("Connection Settings for the OSM server."));
|
---|
44 | public final JPanel map = createPreferenceTab("map", I18n.tr("Map Settings"), I18n.tr("Settings for the map projection and data interpretation."));
|
---|
45 | public final JPanel audio = createPreferenceTab("audio", I18n.tr("Audio Settings"), I18n.tr("Settings for the audio player and audio markers."));
|
---|
46 |
|
---|
47 | public final javax.swing.JTabbedPane displaycontent = new javax.swing.JTabbedPane();
|
---|
48 |
|
---|
49 | /**
|
---|
50 | * Construct a JPanel for the preference settings. Layout is GridBagLayout
|
---|
51 | * and a centered title label and the description are added. The panel
|
---|
52 | * will be shown inside a {@link ScrollPane}
|
---|
53 | * @param icon The name of the icon.
|
---|
54 | * @param title The title of this preference tab.
|
---|
55 | * @param desc A description in one sentence for this tab. Will be displayed
|
---|
56 | * italic under the title.
|
---|
57 | * @return The created panel ready to add other controls.
|
---|
58 | */
|
---|
59 | public JPanel createPreferenceTab(String icon, String title, String desc) {
|
---|
60 | return createPreferenceTab(icon, title, desc, true);
|
---|
61 | }
|
---|
62 |
|
---|
63 | /**
|
---|
64 | * Construct a JPanel for the preference settings. Layout is GridBagLayout
|
---|
65 | * and a centered title label and the description are added.
|
---|
66 | * @param icon The name of the icon.
|
---|
67 | * @param title The title of this preference tab.
|
---|
68 | * @param desc A description in one sentence for this tab. Will be displayed
|
---|
69 | * italic under the title.
|
---|
70 | * @param inScrollPane if <code>true</code> the added tab will show scroll bars
|
---|
71 | * if the panel content is larger than the available space
|
---|
72 | * @return The created panel ready to add other controls.
|
---|
73 | */
|
---|
74 | public JPanel createPreferenceTab(String icon, String title, String desc, boolean inScrollPane) {
|
---|
75 | JPanel p = new JPanel(new GridBagLayout());
|
---|
76 | p.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
|
---|
77 | p.add(new JLabel(title), GBC.eol().anchor(GBC.CENTER).insets(0,5,0,10));
|
---|
78 |
|
---|
79 | JLabel descLabel = new JLabel("<html>"+desc+"</html>");
|
---|
80 | descLabel.setFont(descLabel.getFont().deriveFont(Font.ITALIC));
|
---|
81 | p.add(descLabel, GBC.eol().insets(5,0,5,20).fill(GBC.HORIZONTAL));
|
---|
82 |
|
---|
83 | JComponent tab = p;
|
---|
84 | if (inScrollPane) {
|
---|
85 | JScrollPane sp = new JScrollPane(p);
|
---|
86 | tab = sp;
|
---|
87 | }
|
---|
88 | addTab(null, ImageProvider.get("preferences", icon), tab);
|
---|
89 | setToolTipTextAt(getTabCount()-1, "<html>"+desc+"</html>");
|
---|
90 | return p;
|
---|
91 | }
|
---|
92 |
|
---|
93 |
|
---|
94 |
|
---|
95 | private final class RequireRestartAction implements ActionListener {
|
---|
96 | public void actionPerformed(ActionEvent e) {
|
---|
97 | requiresRestart = true;
|
---|
98 | }
|
---|
99 | }
|
---|
100 |
|
---|
101 | public void ok() {
|
---|
102 | for (PreferenceSetting setting : settings)
|
---|
103 | setting.ok();
|
---|
104 | if (requiresRestart)
|
---|
105 | JOptionPane.showMessageDialog(Main.parent,tr("You have to restart JOSM for some settings to take effect."));
|
---|
106 | Main.parent.repaint();
|
---|
107 | }
|
---|
108 |
|
---|
109 | /**
|
---|
110 | * If the dialog is closed with Ok, the preferences will be stored to the preferences-
|
---|
111 | * file, otherwise no change of the file happens.
|
---|
112 | */
|
---|
113 | public PreferenceDialog() {
|
---|
114 | super(JTabbedPane.LEFT, JTabbedPane.SCROLL_TAB_LAYOUT);
|
---|
115 | display.add(displaycontent, GBC.eol().fill(GBC.BOTH));
|
---|
116 | for (Iterator<PreferenceSetting> it = settings.iterator(); it.hasNext();) {
|
---|
117 | try {
|
---|
118 | it.next().addGui(this);
|
---|
119 | } catch (SecurityException e) {
|
---|
120 | it.remove();
|
---|
121 | }
|
---|
122 | }
|
---|
123 | }
|
---|
124 |
|
---|
125 | static {
|
---|
126 | // order is important!
|
---|
127 | settings.add(new DrawingPreference());
|
---|
128 | settings.add(new ColorPreference());
|
---|
129 | settings.add(new LafPreference());
|
---|
130 | settings.add(new LanguagePreference());
|
---|
131 | settings.add(new MapPaintPreference());
|
---|
132 | settings.add(new ServerAccessPreference());
|
---|
133 | settings.add(new FilePreferences());
|
---|
134 | settings.add(new ProxyPreferences());
|
---|
135 | settings.add(new ProjectionPreference());
|
---|
136 | settings.add(new TaggingPresetPreference());
|
---|
137 | settings.add(new PluginPreference());
|
---|
138 | settings.add(Main.toolbar);
|
---|
139 | settings.add(new AudioPreference());
|
---|
140 | settings.add(new ShortcutPreference());
|
---|
141 |
|
---|
142 | for (PluginProxy plugin : Main.plugins) {
|
---|
143 | PreferenceSetting p = plugin.getPreferenceSetting();
|
---|
144 | if (p != null)
|
---|
145 | settings.add(p);
|
---|
146 | }
|
---|
147 |
|
---|
148 | // always the last: advanced tab
|
---|
149 | settings.add(new AdvancedPreference());
|
---|
150 | }
|
---|
151 | }
|
---|