Changeset 116 in josm for src/org/openstreetmap


Ignore:
Timestamp:
2006-07-20T00:43:51+02:00 (19 years ago)
Author:
imi
Message:
  • added color for scale bar
  • fixed scale bar in EPSG:4236 projection
  • added annotation preset system
Location:
src/org/openstreetmap/josm
Files:
1 added
11 edited

Legend:

Unmodified
Added
Removed
  • src/org/openstreetmap/josm/Main.java

    r110 r116  
    268268                        if (args.containsKey("reset-preferences")) {
    269269                                Main.pref.resetToDefault();
    270                         } else
     270                        } else {
    271271                                Main.pref.load();
     272                        }
    272273                } catch (final IOException e1) {
    273274                        e1.printStackTrace();
     
    276277                        Main.pref.resetToDefault();
    277278                }
     279
     280                try {
     281                Main.pref.upgrade(Integer.parseInt(AboutAction.version));
     282        } catch (NumberFormatException e1) {
     283        }
     284
     285               
    278286                if (errMsg != null)
    279287                        JOptionPane.showMessageDialog(null, errMsg);
  • src/org/openstreetmap/josm/actions/AboutAction.java

    r104 r116  
    3737public class AboutAction extends JosmAction {
    3838
     39        public static final String version;
     40       
     41        private static JTextArea revision;
     42        private static String time;
     43
     44        static {
     45                JTextArea revision = loadFile(Main.class.getResource("/REVISION"));
     46
     47                Pattern versionPattern = Pattern.compile(".*?Revision: ([0-9]*).*", Pattern.CASE_INSENSITIVE|Pattern.DOTALL);
     48                Matcher match = versionPattern.matcher(revision.getText());
     49                version = match.matches() ? match.group(1) : "UNKNOWN";
     50               
     51                Pattern timePattern = Pattern.compile(".*?Last Changed Date: ([^\n]*).*", Pattern.CASE_INSENSITIVE|Pattern.DOTALL);
     52                match = timePattern.matcher(revision.getText());
     53                time = match.matches() ? match.group(1) : "UNKNOWN";
     54        }
     55       
    3956        public AboutAction() {
    4057                super(tr("About"), "about",tr("Display the about screen."), KeyEvent.VK_A);
     
    4562               
    4663                JTextArea readme = loadFile(Main.class.getResource("/README"));
    47                 JTextArea revision = loadFile(Main.class.getResource("/REVISION"));
    48                
    49                 Pattern versionPattern = Pattern.compile(".*?Revision: ([0-9]*).*", Pattern.CASE_INSENSITIVE|Pattern.DOTALL);
    50                 Pattern timePattern = Pattern.compile(".*?Last Changed Date: ([^\n]*).*", Pattern.CASE_INSENSITIVE|Pattern.DOTALL);
    5164
    52                 Matcher match = versionPattern.matcher(revision.getText());
    53                 String version = match.matches() ? match.group(1) : "UNKNOWN";
    54                 match = timePattern.matcher(revision.getText());
    55                 String time = match.matches() ? match.group(1) : "UNKNOWN";
    56                
    5765                JPanel info = new JPanel(new GridBagLayout());
    5866                info.add(new JLabel(tr("Java OpenStreetMap Editor Version {0}",version)), GBC.eop());
     
    8088         * @return      An read-only text area with the content of "resource"
    8189         */
    82         private JTextArea loadFile(URL resource) {
     90        private static JTextArea loadFile(URL resource) {
    8391                JTextArea area = new JTextArea(tr("File could not be found."));
    8492                area.setEditable(false);
  • src/org/openstreetmap/josm/data/Preferences.java

    r113 r116  
    3232                void preferenceChanged(String key, String newValue);
    3333        }
    34        
     34
    3535        public final ArrayList<PreferenceChangedListener> listener = new ArrayList<PreferenceChangedListener>();
    36        
     36
    3737        /**
    3838         * Map the property name to the property object.
    3939         */
    4040        private final SortedMap<String, String> properties = new TreeMap<String, String>();
    41        
     41
    4242        /**
    4343         * Return the location of the preferences file
     
    112112        }
    113113
    114 
    115114        public void load() throws IOException {
    116115                properties.clear();
     
    138137                properties.put("color."+marktr("gps point"), ColorHelper.color2html(Color.gray));
    139138                properties.put("color."+marktr("conflict"), ColorHelper.color2html(Color.gray));
     139                properties.put("color."+marktr("scale"), ColorHelper.color2html(Color.white));
    140140                save();
    141141        }
     142
     143        public final void upgrade(int oldVersion) {
     144                if (oldVersion > 115) return;
     145                properties.put("color.scale", ColorHelper.color2html(Color.white));
     146        }
    142147}
  • src/org/openstreetmap/josm/data/projection/Epsg4326.java

    r86 r116  
    2626        return "epsg4326";
    2727    }
     28
     29        public double scaleFactor() {
     30            return 1.0/360;
     31    }
    2832}
  • src/org/openstreetmap/josm/data/projection/Mercator.java

    r99 r116  
    3434        return "mercator";
    3535    }
     36
     37        public double scaleFactor() {
     38            return 1/Math.PI/2;
     39    }
    3640}
  • src/org/openstreetmap/josm/data/projection/Projection.java

    r99 r116  
    4747     */
    4848    String getCacheDirectoryName();
     49   
     50    /**
     51     * The factor to multiply with an easting coordinate to get from "easting
     52     * units per pixel" to "meters per pixel"
     53     */
     54    double scaleFactor();
    4955}
  • src/org/openstreetmap/josm/gui/MapScaler.java

    r115 r116  
    11package org.openstreetmap.josm.gui;
    22
    3 import java.awt.Color;
    43import java.awt.Graphics;
    54import java.awt.geom.Rectangle2D;
    65
    76import javax.swing.JComponent;
     7
     8import org.openstreetmap.josm.Main;
     9import org.openstreetmap.josm.tools.ColorHelper;
    810
    911public class MapScaler extends JComponent {
     
    1820
    1921        @Override public void paint(Graphics g) {
    20                 double circum = mv.getScale()*100/Math.PI/2*40041455; // circumference of the earth in meter
     22                double circum = mv.getScale()*100*Main.proj.scaleFactor()*40041455; // circumference of the earth in meter
    2123                String text = circum > 1000 ? (Math.round(circum/100)/10.0)+"km" : Math.round(circum)+"m";
    22                 g.setColor(Color.white);
     24                g.setColor(ColorHelper.html2color(Main.pref.get("color.scale", "#ffffff")));
    2325                g.drawLine(0, 5, 99, 5);
    2426                g.drawLine(0, 0, 0, 10);
  • src/org/openstreetmap/josm/gui/MapView.java

    r115 r116  
    9898                MapSlider zoomSlider = new MapSlider(this);
    9999                add(zoomSlider);
    100                 zoomSlider.setBounds(0,0, 100, 30);
     100                zoomSlider.setBounds(3, 0, 114, 30);
    101101               
    102102                MapScaler scaler = new MapScaler(this);
  • src/org/openstreetmap/josm/gui/PreferenceDialog.java

    r115 r116  
    1111import java.awt.event.ActionListener;
    1212import java.util.Map;
     13import java.util.StringTokenizer;
    1314import java.util.TreeMap;
    1415import java.util.Vector;
     
    1920import javax.swing.Box;
    2021import javax.swing.DefaultListCellRenderer;
     22import javax.swing.DefaultListModel;
    2123import javax.swing.JButton;
    2224import javax.swing.JCheckBox;
     
    8183                        Main.pref.put("draw.segment.direction", directionHint.isSelected());
    8284
     85                        if (annotationSources.getModel().getSize() > 0) {
     86                                StringBuilder sb = new StringBuilder();
     87                                for (int i = 0; i < annotationSources.getModel().getSize(); ++i)
     88                                        sb.append(";"+annotationSources.getModel().getElementAt(i));
     89                                Main.pref.put("annotation.sources", sb.toString().substring(1));
     90                        }
     91
    8392                        for (int i = 0; i < colors.getRowCount(); ++i) {
    8493                                String name = (String)colors.getValueAt(i, 0);
     
    121130        private JComboBox lafCombo = new JComboBox(UIManager.getInstalledLookAndFeels());
    122131        /**
    123          * Combobox with all projections available
    124          */
    125         private JComboBox projectionCombo = new JComboBox(Projection.allProjections);
    126         /**
    127132         * The main tab panel.
    128133         */
     
    161166        private JCheckBox directionHint = new JCheckBox(tr("Draw Direction Arrows"));
    162167        private JTable colors;
     168
     169        /**
     170         * Combobox with all projections available
     171         */
     172        private JComboBox projectionCombo = new JComboBox(Projection.allProjections);
     173        private JList annotationSources = new JList(new DefaultListModel());
    163174
    164175
     
    227238                directionHint.setSelected(Main.pref.getBoolean("draw.segment.direction"));
    228239
     240                String annos = Main.pref.get("annotation.sources");
     241                StringTokenizer st = new StringTokenizer(annos, ";");
     242                while (st.hasMoreTokens())
     243                        ((DefaultListModel)annotationSources.getModel()).addElement(st.nextToken());
    229244
    230245
     
    275290                        }
    276291                });
     292
     293                // Annotation source panels
     294                JPanel annoButton = new JPanel(new GridBagLayout());
     295                JButton addAnno = new JButton(tr("Add"));
     296                addAnno.addActionListener(new ActionListener(){
     297                        public void actionPerformed(ActionEvent e) {
     298                                String source = JOptionPane.showInputDialog(Main.parent, tr("Annotation preset source"));
     299                                if (source == null)
     300                                        return;
     301                                ((DefaultListModel)annotationSources.getModel()).addElement(source);
     302                                requiresRestart = true;
     303                        }
     304                });
     305                GBC g = GBC.eol().fill(GBC.HORIZONTAL);
     306                g.weightx = 0;
     307                annoButton.add(addAnno,g);
     308
     309                JButton editAnno = new JButton(tr("Edit"));
     310                editAnno.addActionListener(new ActionListener(){
     311                        public void actionPerformed(ActionEvent e) {
     312                                if (annotationSources.getSelectedIndex() == -1)
     313                                        JOptionPane.showMessageDialog(Main.parent, tr("Please select the row to edit."));
     314                                else {
     315                                        String source = JOptionPane.showInputDialog(Main.parent, tr("Annotation preset source"), annotationSources.getSelectedValue());
     316                                        if (source == null)
     317                                                return;
     318                                        ((DefaultListModel)annotationSources.getModel()).setElementAt(source, annotationSources.getSelectedIndex());
     319                                        requiresRestart = true;
     320                                }
     321                        }
     322                });
     323                annoButton.add(GBC.glue(0, 2), GBC.eol());
     324                annoButton.add(editAnno,g);
     325
     326                JButton deleteAnno = new JButton(tr("Delete"));
     327                deleteAnno.addActionListener(new ActionListener(){
     328                        public void actionPerformed(ActionEvent e) {
     329                                if (annotationSources.getSelectedIndex() == -1)
     330                                        JOptionPane.showMessageDialog(Main.parent, tr("Please select the row to delete."));
     331                                else {
     332                                        ((DefaultListModel)annotationSources.getModel()).remove(annotationSources.getSelectedIndex());
     333                                        requiresRestart = true;
     334                                }
     335                        }
     336                });
     337                annoButton.add(GBC.glue(0, 2), GBC.eol());
     338                annoButton.add(deleteAnno,g);
     339                annotationSources.setVisibleRowCount(5);
     340
     341
    277342
    278343                // setting tooltips
     
    290355                drawRawGpsLines.setToolTipText(tr("If your gps device draw to few lines, select this to draw lines along your way."));
    291356                colors.setToolTipText(tr("Colors used by different objects in JOSM."));
     357                annotationSources.setToolTipText(tr("The sources (url or filename) of annotation preset definition files. See http://josm.eigenheimstrasse.de/wiki/AnnotationPresets for help."));
     358                addAnno.setToolTipText(tr("Add a new annotation preset source to the list."));
     359                deleteAnno.setToolTipText(tr("Delete the selected source from the list."));
    292360
    293361                // creating the gui
     
    333401                map.add(new JLabel(tr("Projection method")), GBC.std());
    334402                map.add(GBC.glue(5,0), GBC.std().fill(GBC.HORIZONTAL));
    335                 map.add(projectionCombo, GBC.eol().fill(GBC.HORIZONTAL).insets(0,0,0,5));
     403                map.add(projectionCombo, GBC.eop().fill(GBC.HORIZONTAL).insets(0,0,0,5));
     404                map.add(new JLabel(tr("Annotation preset sources")), GBC.eol());
     405                map.add(new JScrollPane(annotationSources), GBC.std().fill(GBC.HORIZONTAL).insets(10,0,10,0));
     406                map.add(annoButton, GBC.eol());
     407
    336408                map.add(Box.createVerticalGlue(), GBC.eol().fill(GBC.VERTICAL));
    337409
  • src/org/openstreetmap/josm/gui/WorldChooser.java

    r86 r116  
    7777            public String getCacheDirectoryName() {
    7878                throw new UnsupportedOperationException();
     79            }
     80                        public double scaleFactor() {
     81                    return 1;
    7982            }
    8083                };
  • src/org/openstreetmap/josm/gui/dialogs/PropertiesDialog.java

    r115 r116  
    1515import java.awt.event.MouseAdapter;
    1616import java.awt.event.MouseEvent;
     17import java.io.FileInputStream;
     18import java.io.IOException;
     19import java.io.InputStream;
     20import java.net.URL;
    1721import java.util.Collection;
    1822import java.util.HashMap;
    1923import java.util.Map;
     24import java.util.StringTokenizer;
    2025import java.util.TreeMap;
    2126import java.util.TreeSet;
     
    2328import java.util.Map.Entry;
    2429
     30import javax.swing.DefaultComboBoxModel;
    2531import javax.swing.JButton;
    2632import javax.swing.JComboBox;
     
    4248import org.openstreetmap.josm.gui.MapFrame;
    4349import org.openstreetmap.josm.tools.ImageProvider;
     50import org.xml.sax.SAXException;
    4451
    4552/**
     
    196203         */
    197204        private final JTable propertyTable = new JTable(data);
     205        private JComboBox annotationPresets = new JComboBox();
    198206
    199207        /**
     
    202210        public PropertiesDialog(MapFrame mapFrame) {
    203211                super(tr("Properties"), "propertiesdialog", tr("Property for selected objects."), KeyEvent.VK_P);
    204 
    205212                setPreferredSize(new Dimension(320,150));
     213               
     214                Vector<AnnotationPreset> allPresets = new Vector<AnnotationPreset>();
     215                String allAnnotations = Main.pref.get("annotation.sources");
     216                StringTokenizer st = new StringTokenizer(allAnnotations, ";");
     217                while (st.hasMoreTokens()) {
     218                        InputStream in = null;
     219                        String source = st.nextToken();
     220                        try {
     221                    if (source.startsWith("http") || source.startsWith("ftp") || source.startsWith("file"))
     222                        in = new URL(source).openStream();
     223                    else if (source.startsWith("resource://"))
     224                        in = Main.class.getResourceAsStream(source.substring("resource:/".length()));
     225                    else
     226                        in = new FileInputStream(source);
     227                    allPresets.addAll(AnnotationPreset.readAll(in));
     228            } catch (IOException e) {
     229                    e.printStackTrace();
     230                    JOptionPane.showMessageDialog(Main.parent, tr("Could not read annotation preset source: {0}",source));
     231            } catch (SAXException e) {
     232                    e.printStackTrace();
     233                    JOptionPane.showMessageDialog(Main.parent, tr("Error parsing {0}: ", source)+e.getMessage());
     234            }
     235                }
     236                if (allPresets.size() > 0) {
     237                        allPresets.add(0, new AnnotationPreset());
     238                        annotationPresets.setModel(new DefaultComboBoxModel(allPresets));
     239                        add(annotationPresets, BorderLayout.NORTH);
     240                }
     241                annotationPresets.addActionListener(new ActionListener(){
     242                        public void actionPerformed(ActionEvent e) {
     243                                Collection<OsmPrimitive> sel = Main.ds.getSelected();
     244                                AnnotationPreset preset = (AnnotationPreset)annotationPresets.getSelectedItem();
     245                                JPanel p = preset.createPanel();
     246                                if (p == null)
     247                                        return;
     248                                int answer;
     249                                if (p.getComponentCount() == 0)
     250                                        answer = JOptionPane.OK_OPTION;
     251                                else
     252                                        answer = JOptionPane.showConfirmDialog(Main.parent, p, trn("Change {0} object", "Change {0} objects", sel.size(), sel.size()), JOptionPane.OK_CANCEL_OPTION);
     253                                if (answer == JOptionPane.OK_OPTION) {
     254                                        Main.main.editLayer().add(preset.createCommand(sel));
     255                                        selectionChanged(sel); // update whole table
     256                                }
     257                                annotationPresets.setSelectedIndex(0);
     258            }
     259                });
    206260
    207261                data.setColumnIdentifiers(new String[]{tr("Key"),tr("Value")});
Note: See TracChangeset for help on using the changeset viewer.