source: josm/trunk/src/org/openstreetmap/josm/gui/preferences/AudioPreference.java@ 6362

Last change on this file since 6362 was 6362, checked in by Don-vip, 10 years ago

Checkstyle:

  • private constructors for util classes
  • final classes
  • missing "else" statements
  • import cleanup
  • Property svn:eol-style set to native
File size: 8.0 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.preferences;
3
4import static org.openstreetmap.josm.tools.I18n.tr;
5
6import java.awt.GridBagLayout;
7
8import javax.swing.Box;
9import javax.swing.JCheckBox;
10import javax.swing.JLabel;
11import javax.swing.JPanel;
12
13import org.openstreetmap.josm.Main;
14import org.openstreetmap.josm.gui.widgets.JosmTextField;
15import org.openstreetmap.josm.tools.GBC;
16
17/*
18 * marker.audiosampleminsecs
19 * marker.audiosampleminmetres
20 * marker.buttonlabels
21 * markers.namedtrackpoints
22 * audio.forwardbackamount
23 * audio.leadin
24 * audio.menuinvisible
25 * marker.audiotraceVisible
26 * audio.toolbar ??
27 */
28
29public final class AudioPreference extends DefaultTabPreferenceSetting {
30
31 public static class Factory implements PreferenceSettingFactory {
32 @Override
33 public PreferenceSetting createPreferenceSetting() {
34 return new AudioPreference();
35 }
36 }
37
38 private AudioPreference() {
39 super("audio", tr("Audio Settings"), tr("Settings for the audio player and audio markers."));
40 }
41
42 private JCheckBox audioMenuVisible = new JCheckBox(tr("Display the Audio menu."));
43 private JCheckBox markerButtonLabels = new JCheckBox(tr("Label audio (and image and web) markers."));
44 private JCheckBox markerAudioTraceVisible = new JCheckBox(tr("Display live audio trace."));
45
46 // various methods of making markers on import audio
47 private JCheckBox audioMarkersFromExplicitWaypoints = new JCheckBox(tr("Explicit waypoints with valid timestamps."));
48 private JCheckBox audioMarkersFromUntimedWaypoints = new JCheckBox(tr("Explicit waypoints with time estimated from track position."));
49 private JCheckBox audioMarkersFromNamedTrackpoints = new JCheckBox(tr("Named trackpoints."));
50 private JCheckBox audioMarkersFromWavTimestamps = new JCheckBox(tr("Modified times (time stamps) of audio files."));
51 private JCheckBox audioMarkersFromStart = new JCheckBox(tr("Start of track (will always do this if no other markers available)."));
52
53 private JosmTextField audioLeadIn = new JosmTextField(8);
54 private JosmTextField audioForwardBackAmount = new JosmTextField(8);
55 private JosmTextField audioFastForwardMultiplier = new JosmTextField(8);
56 private JosmTextField audioCalibration = new JosmTextField(8);
57
58 @Override
59 public void addGui(PreferenceTabbedPane gui) {
60 JPanel audio = new JPanel(new GridBagLayout());
61
62 // audioMenuVisible
63 audioMenuVisible.setSelected(! Main.pref.getBoolean("audio.menuinvisible"));
64 audioMenuVisible.setToolTipText(tr("Show or hide the audio menu entry on the main menu bar."));
65 audio.add(audioMenuVisible, GBC.eol().insets(0,0,0,0));
66
67 // audioTraceVisible
68 markerAudioTraceVisible.setSelected(Main.pref.getBoolean("marker.traceaudio", true));
69 markerAudioTraceVisible.setToolTipText(tr("Display a moving icon representing the point on the synchronized track where the audio currently playing was recorded."));
70 audio.add(markerAudioTraceVisible, GBC.eol().insets(0,0,0,0));
71
72 // buttonLabels
73 markerButtonLabels.setSelected(Main.pref.getBoolean("marker.buttonlabels", true));
74 markerButtonLabels.setToolTipText(tr("Put text labels against audio (and image and web) markers as well as their button icons."));
75 audio.add(markerButtonLabels, GBC.eol().insets(0,0,0,0));
76
77 audio.add(new JLabel(tr("When importing audio, make markers from...")), GBC.eol());
78
79 // audioMarkersFromExplicitWaypoints
80 audioMarkersFromExplicitWaypoints.setSelected(Main.pref.getBoolean("marker.audiofromexplicitwaypoints", true));
81 audioMarkersFromExplicitWaypoints.setToolTipText(tr("When importing audio, apply it to any waypoints in the GPX layer."));
82 audio.add(audioMarkersFromExplicitWaypoints, GBC.eol().insets(10,0,0,0));
83
84 // audioMarkersFromUntimedWaypoints
85 audioMarkersFromUntimedWaypoints.setSelected(Main.pref.getBoolean("marker.audiofromuntimedwaypoints", true));
86 audioMarkersFromUntimedWaypoints.setToolTipText(tr("When importing audio, apply it to any waypoints in the GPX layer."));
87 audio.add(audioMarkersFromUntimedWaypoints, GBC.eol().insets(10,0,0,0));
88
89 // audioMarkersFromNamedTrackpoints
90 audioMarkersFromNamedTrackpoints.setSelected(Main.pref.getBoolean("marker.audiofromnamedtrackpoints", false));
91 audioMarkersFromNamedTrackpoints.setToolTipText(tr("Automatically create audio markers from trackpoints (rather than explicit waypoints) with names or descriptions."));
92 audio.add(audioMarkersFromNamedTrackpoints, GBC.eol().insets(10,0,0,0));
93
94 // audioMarkersFromWavTimestamps
95 audioMarkersFromWavTimestamps.setSelected(Main.pref.getBoolean("marker.audiofromwavtimestamps", false));
96 audioMarkersFromWavTimestamps.setToolTipText(tr("Create audio markers at the position on the track corresponding to the modified time of each audio WAV file imported."));
97 audio.add(audioMarkersFromWavTimestamps, GBC.eol().insets(10,0,0,0));
98
99 // audioMarkersFromStart
100 audioMarkersFromStart.setSelected(Main.pref.getBoolean("marker.audiofromstart"));
101 audioMarkersFromStart.setToolTipText(tr("Automatically create audio markers from trackpoints (rather than explicit waypoints) with names or descriptions."));
102 audio.add(audioMarkersFromStart, GBC.eol().insets(10,0,0,0));
103
104 audioForwardBackAmount.setText(Main.pref.get("audio.forwardbackamount", "10.0"));
105 audioForwardBackAmount.setToolTipText(tr("The number of seconds to jump forward or back when the relevant button is pressed"));
106 audio.add(new JLabel(tr("Forward/back time (seconds)")), GBC.std());
107 audio.add(audioForwardBackAmount, GBC.eol().fill(GBC.HORIZONTAL).insets(5,0,0,5));
108
109 audioFastForwardMultiplier.setText(Main.pref.get("audio.fastfwdmultiplier", "1.3"));
110 audioFastForwardMultiplier.setToolTipText(tr("The amount by which the speed is multiplied for fast forwarding"));
111 audio.add(new JLabel(tr("Fast forward multiplier")), GBC.std());
112 audio.add(audioFastForwardMultiplier, GBC.eol().fill(GBC.HORIZONTAL).insets(5,0,0,5));
113
114 audioLeadIn.setText(Main.pref.get("audio.leadin", "1.0"));
115 audioLeadIn.setToolTipText(tr("Playback starts this number of seconds before (or after, if negative) the audio track position requested"));
116 audio.add(new JLabel(tr("Lead-in time (seconds)")), GBC.std());
117 audio.add(audioLeadIn, GBC.eol().fill(GBC.HORIZONTAL).insets(5,0,0,5));
118
119 audioCalibration.setText(Main.pref.get("audio.calibration", "1.0"));
120 audioCalibration.setToolTipText(tr("The ratio of voice recorder elapsed time to true elapsed time"));
121 audio.add(new JLabel(tr("Voice recorder calibration")), GBC.std());
122 audio.add(audioCalibration, GBC.eol().fill(GBC.HORIZONTAL).insets(5,0,0,5));
123
124 audio.add(Box.createVerticalGlue(), GBC.eol().fill(GBC.VERTICAL));
125
126 createPreferenceTabWithScrollPane(gui, audio);
127 }
128
129 @Override
130 public boolean ok() {
131 Main.pref.put("audio.menuinvisible", ! audioMenuVisible.isSelected());
132 Main.pref.put("marker.traceaudio", markerAudioTraceVisible.isSelected());
133 Main.pref.put("marker.buttonlabels", markerButtonLabels.isSelected());
134 Main.pref.put("marker.audiofromexplicitwaypoints", audioMarkersFromExplicitWaypoints.isSelected());
135 Main.pref.put("marker.audiofromuntimedwaypoints", audioMarkersFromUntimedWaypoints.isSelected());
136 Main.pref.put("marker.audiofromnamedtrackpoints", audioMarkersFromNamedTrackpoints.isSelected());
137 Main.pref.put("marker.audiofromwavtimestamps", audioMarkersFromWavTimestamps.isSelected());
138 Main.pref.put("marker.audiofromstart", audioMarkersFromStart.isSelected());
139 Main.pref.put("audio.forwardbackamount", audioForwardBackAmount.getText());
140 Main.pref.put("audio.fastfwdmultiplier", audioFastForwardMultiplier.getText());
141 Main.pref.put("audio.leadin", audioLeadIn.getText());
142 Main.pref.put("audio.calibration", audioCalibration.getText());
143 return false;
144 }
145}
Note: See TracBrowser for help on using the repository browser.