source: josm/trunk/src/org/openstreetmap/josm/actions/PreferencesAction.java @ 4920

Revision 2748, 1.2 KB checked in by Gubaer, 2 years ago (diff)

new: JOSM now supports OAuth

See also online help for server preferences and new OAuth Authorisation Wizard

  • Property svn:eol-style set to native
Line 
1// License: GPL. Copyright 2007 by Immanuel Scholz and others
2package org.openstreetmap.josm.actions;
3
4import static org.openstreetmap.josm.gui.help.HelpUtil.ht;
5import static org.openstreetmap.josm.tools.I18n.tr;
6
7import java.awt.event.ActionEvent;
8import java.awt.event.KeyEvent;
9
10import org.openstreetmap.josm.Main;
11import org.openstreetmap.josm.gui.preferences.PreferenceDialog;
12import org.openstreetmap.josm.tools.Shortcut;
13
14/**
15 * Open the Preferences dialog.
16 *
17 * @author imi
18 */
19public class PreferencesAction extends JosmAction implements Runnable {
20
21    /**
22     * Create the preference action with "&Preferences" as label.
23     */
24    public PreferencesAction() {
25        super(tr("Preferences..."), "preference", tr("Open a preferences dialog for global settings."),
26                Shortcut.registerShortcut("system:preferences", tr("Preferences"), KeyEvent.VK_F12, Shortcut.GROUP_DIRECT), true);
27        putValue("help", ht("/Action/Preferences"));
28    }
29
30    /**
31     * Launch the preferences dialog.
32     */
33    public void actionPerformed(ActionEvent e) {
34        run();
35    }
36
37    public void run() {
38        new PreferenceDialog(Main.parent).setVisible(true);
39    }
40}
Note: See TracBrowser for help on using the repository browser.