Changeset 8475 in josm


Ignore:
Timestamp:
2015-06-07T15:46:39+02:00 (9 years ago)
Author:
Don-vip
Message:

fix #11219 - Open notes in browser with Ctrl-Shift-I: "Advanced info (web)"

Location:
trunk/src/org/openstreetmap/josm
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/AbstractInfoAction.java

    r8443 r8475  
    1414
    1515import org.openstreetmap.josm.Main;
     16import org.openstreetmap.josm.data.notes.Note;
    1617import org.openstreetmap.josm.data.osm.OsmPrimitive;
    1718import org.openstreetmap.josm.gui.HelpAwareOptionPane;
     
    6869    }
    6970
    70     protected void launchInfoBrowsersForSelectedPrimitives() {
    71         List<OsmPrimitive> primitivesToShow = new ArrayList<>(getCurrentDataSet().getAllSelected());
     71    protected void launchInfoBrowsersForSelectedPrimitivesAndNote() {
     72        List<OsmPrimitive> primitivesToShow = new ArrayList<>();
     73        if (getCurrentDataSet() != null) {
     74            primitivesToShow.addAll(getCurrentDataSet().getAllSelected());
     75        }
     76
     77        Note noteToShow = Main.isDisplayingMapView() ? Main.map.noteDialog.getSelectedNote() : null;
    7278
    7379        // filter out new primitives which are not yet uploaded to the server
     
    8086        }
    8187
    82         if (primitivesToShow.isEmpty()) {
     88        if (primitivesToShow.isEmpty() && noteToShow == null) {
    8389            JOptionPane.showMessageDialog(
    8490                    Main.parent,
     
    95101        if (primitivesToShow.size() > max && !confirmLaunchMultiple(primitivesToShow.size()))
    96102            return;
    97         for(int i = 0; i < max; i++) {
    98             OpenBrowser.displayUrl(createInfoUrl(primitivesToShow.get(i)));
     103        for (int i = 0; i < max; i++) {
     104            launchInfoBrowser(primitivesToShow.get(i));
     105        }
     106
     107        if (noteToShow != null) {
     108            launchInfoBrowser(noteToShow);
     109        }
     110    }
     111
     112    protected final void launchInfoBrowser(Object o) {
     113        String url = createInfoUrl(o);
     114        if (url != null) {
     115            String result = OpenBrowser.displayUrl(url);
     116            if (result != null) {
     117                Main.warn(result);
     118            }
    99119        }
    100120    }
     
    102122    @Override
    103123    public void actionPerformed(ActionEvent e) {
    104         launchInfoBrowsersForSelectedPrimitives();
     124        launchInfoBrowsersForSelectedPrimitivesAndNote();
    105125    }
    106126
  • trunk/src/org/openstreetmap/josm/actions/HistoryInfoWebAction.java

    r8378 r8475  
    2828    @Override
    2929    protected  String createInfoUrl(Object infoObject) {
    30         OsmPrimitive primitive = (OsmPrimitive) infoObject;
    31         return Main.getBaseBrowseUrl() + "/" + OsmPrimitiveType.from(primitive).getAPIName() + "/" + primitive.getId() + "/history";
     30        if (infoObject instanceof OsmPrimitive) {
     31            OsmPrimitive primitive = (OsmPrimitive) infoObject;
     32            return Main.getBaseBrowseUrl() + "/" + OsmPrimitiveType.from(primitive).getAPIName() + "/" + primitive.getId() + "/history";
     33        } else {
     34            return null;
     35        }
    3236    }
    3337}
  • trunk/src/org/openstreetmap/josm/actions/InfoWebAction.java

    r8378 r8475  
    66
    77import java.awt.event.KeyEvent;
     8import java.util.Collection;
    89
    910import org.openstreetmap.josm.Main;
     11import org.openstreetmap.josm.data.notes.Note;
    1012import org.openstreetmap.josm.data.osm.OsmPrimitive;
    1113import org.openstreetmap.josm.data.osm.OsmPrimitiveType;
     
    3133
    3234    @Override
    33     protected  String createInfoUrl(Object infoObject) {
    34         OsmPrimitive primitive = (OsmPrimitive)infoObject;
    35         return Main.getBaseBrowseUrl() + "/" + OsmPrimitiveType.from(primitive).getAPIName() + "/" + primitive.getId();
     35    protected String createInfoUrl(Object infoObject) {
     36        if (infoObject instanceof OsmPrimitive) {
     37            OsmPrimitive primitive = (OsmPrimitive)infoObject;
     38            return Main.getBaseBrowseUrl() + "/" + OsmPrimitiveType.from(primitive).getAPIName() + "/" + primitive.getId();
     39        } else if (infoObject instanceof Note) {
     40            Note note = (Note)infoObject;
     41            return Main.getBaseBrowseUrl() + "/note/" + note.getId();
     42        } else {
     43            return null;
     44        }
     45    }
     46
     47    @Override
     48    protected void updateEnabledState() {
     49        super.updateEnabledState();
     50        updateEnabledStateWithNotes();
     51    }
     52
     53    @Override
     54    protected void updateEnabledState(Collection<? extends OsmPrimitive> selection) {
     55        super.updateEnabledState(selection);
     56        updateEnabledStateWithNotes();
     57    }
     58
     59    private void updateEnabledStateWithNotes() {
     60        // Allows enabling if a note is selected, even if no OSM object is selected
     61        if (!isEnabled() && Main.isDisplayingMapView()) {
     62            if (Main.map.noteDialog.getSelectedNote() != null) {
     63                setEnabled(true);
     64            }
     65        }
     66    }
     67
     68    /**
     69     * Called when the note selection has changed.
     70     * TODO: make a proper listener mechanism to handle change of note selection
     71     * @since 8475
     72     */
     73    public final void noteSelectionChanged() {
     74        updateEnabledState();
    3675    }
    3776}
  • trunk/src/org/openstreetmap/josm/gui/dialogs/NotesDialog.java

    r8392 r8475  
    216216        }
    217217        updateButtonStates();
     218        // TODO make a proper listener mechanism to handle change of note selection
     219        Main.main.menu.infoweb.noteSelectionChanged();
     220    }
     221
     222    /**
     223     * Returns the currently selected note, if any.
     224     * @return currently selected note, or null
     225     * @since 8475
     226     */
     227    public Note getSelectedNote() {
     228        return noteData != null ? noteData.getSelectedNote() : null;
    218229    }
    219230
     
    254265        private transient List<Note> data;
    255266
     267        /**
     268         * Constructs a new {@code NoteTableModel}.
     269         */
    256270        public NoteTableModel() {
    257271            data = new ArrayList<>();
     
    286300    class AddCommentAction extends AbstractAction {
    287301
     302        /**
     303         * Constructs a new {@code AddCommentAction}.
     304         */
    288305        public AddCommentAction() {
    289306            putValue(SHORT_DESCRIPTION,tr("Add comment"));
     
    315332    class CloseAction extends AbstractAction {
    316333
     334        /**
     335         * Constructs a new {@code CloseAction}.
     336         */
    317337        public CloseAction() {
    318             putValue(SHORT_DESCRIPTION,tr("Close note"));
     338            putValue(SHORT_DESCRIPTION, tr("Close note"));
    319339            putValue(NAME, tr("Close"));
    320340            putValue(SMALL_ICON, ICON_CLOSED);
     
    337357    class NewAction extends AbstractAction {
    338358
     359        /**
     360         * Constructs a new {@code NewAction}.
     361         */
    339362        public NewAction() {
    340             putValue(SHORT_DESCRIPTION,tr("Create a new note"));
     363            putValue(SHORT_DESCRIPTION, tr("Create a new note"));
    341364            putValue(NAME, tr("Create"));
    342365            putValue(SMALL_ICON, ICON_NEW);
     
    354377    class ReopenAction extends AbstractAction {
    355378
     379        /**
     380         * Constructs a new {@code ReopenAction}.
     381         */
    356382        public ReopenAction() {
    357             putValue(SHORT_DESCRIPTION,tr("Reopen note"));
     383            putValue(SHORT_DESCRIPTION, tr("Reopen note"));
    358384            putValue(NAME, tr("Reopen"));
    359385            putValue(SMALL_ICON, ICON_OPEN);
     
    377403    class SortAction extends AbstractAction {
    378404
     405        /**
     406         * Constructs a new {@code SortAction}.
     407         */
    379408        public SortAction() {
    380409            putValue(SHORT_DESCRIPTION, tr("Sort notes"));
  • trunk/src/org/openstreetmap/josm/gui/dialogs/UserListDialog.java

    r8444 r8475  
    220220        @Override
    221221        protected String createInfoUrl(Object infoObject) {
    222             User user = (User)infoObject;
    223             return Main.getBaseUserUrl() + "/" + Utils.encodeUrl(user.getName()).replaceAll("\\+", "%20");
     222            if (infoObject instanceof User) {
     223                User user = (User)infoObject;
     224                return Main.getBaseUserUrl() + "/" + Utils.encodeUrl(user.getName()).replaceAll("\\+", "%20");
     225            } else {
     226                return null;
     227            }
    224228        }
    225229
  • trunk/src/org/openstreetmap/josm/gui/history/VersionTable.java

    r8419 r8475  
    162162        @Override
    163163        protected String createInfoUrl(Object infoObject) {
    164             HistoryOsmPrimitive primitive = (HistoryOsmPrimitive) infoObject;
    165             return Main.getBaseBrowseUrl() + "/changeset/" + primitive.getChangesetId();
     164            if (infoObject instanceof HistoryOsmPrimitive) {
     165                HistoryOsmPrimitive prim = (HistoryOsmPrimitive) infoObject;
     166                return Main.getBaseBrowseUrl() + "/changeset/" + prim.getChangesetId();
     167            } else {
     168                return null;
     169            }
    166170        }
    167171
     
    195199        @Override
    196200        protected String createInfoUrl(Object infoObject) {
    197             HistoryOsmPrimitive hp = (HistoryOsmPrimitive) infoObject;
    198             return hp.getUser() == null ? null : Main.getBaseUserUrl() + "/" + hp.getUser().getName();
     201            if (infoObject instanceof HistoryOsmPrimitive) {
     202                HistoryOsmPrimitive hp = (HistoryOsmPrimitive) infoObject;
     203                return hp.getUser() == null ? null : Main.getBaseUserUrl() + "/" + hp.getUser().getName();
     204            } else {
     205                return null;
     206            }
    199207        }
    200208
Note: See TracChangeset for help on using the changeset viewer.