Changeset 34433 in osm for applications/editors/josm/plugins/MicrosoftStreetside/src
- Timestamp:
- 2018-07-22T03:40:39+02:00 (7 years ago)
- Location:
- applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside
- Files:
-
- 1 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside/gui/StreetsidePreferenceSetting.java
r34399 r34433 220 220 221 221 LoginAction(StreetsideLoginListener loginCallback) { 222 // TODO tr( RRH223 222 super(I18n.tr("Login")); 224 223 callback = loginCallback; -
applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside/gui/StreetsideViewerDialog.java
r34429 r34433 8 8 import org.openstreetmap.josm.gui.SideButton; 9 9 import org.openstreetmap.josm.gui.dialogs.ToggleDialog; 10 import org.openstreetmap.josm.plugins.streetside.gui.imageinfo.StreetsideViewerHelpPopup;11 10 import org.openstreetmap.josm.plugins.streetside.gui.imageinfo.StreetsideViewerPanel; 12 11 … … 25 24 26 25 private static StreetsideViewerDialog instance; 27 28 // TODO: enable help without StreetsideViewerPanel being a ToggleDialog29 private StreetsideViewerHelpPopup streetsideViewerHelpPopup;30 26 31 27 /** … … 84 80 return streetsideViewerPanel; 85 81 } 86 87 public void setStreetsideViewerHelpPopup(StreetsideViewerHelpPopup svhp) {88 streetsideViewerHelpPopup = svhp;89 }90 91 82 } -
applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside/gui/imageinfo/ClipboardAction.java
r34317 r34433 50 50 // Init popup 51 51 popup = new JPopupMenu(); 52 // TODO: tr( RRH53 52 JLabel label = new JLabel(I18n.tr("Key copied to clipboard") + '…'); 54 53 label.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5)); -
applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside/io/download/SequenceDownloadRunnable.java
r34432 r34433 42 42 } 43 43 44 // TODO: Revise sequence creation algorithm - compare bubble query results with bubbleId list45 // and analyze discrepancies.46 44 @Override 47 45 public void run(final URLConnection con) throws IOException { … … 149 147 * unpredictably. 150 148 **/ 151 int x = bubbleImages.size();152 149 seq.add(bubbleImages); 153 150 -
applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside/utils/GraphicsUtils.java
r34431 r34433 90 90 height, BufferedImage.TYPE_INT_ARGB); 91 91 92 // TODO: mirror image93 92 // Create mirror image pixel by pixel 94 93 for (int y = 0; y < height; y++) { -
applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside/utils/StreetsideProperties.java
r34431 r34433 61 61 new StringProperty("streetside.start-directory", System.getProperty("user.home")); 62 62 public static final StringProperty URL_CLIENT_ID = 63 new StringProperty("streetside.url-clientid", "T1Fzd20xZjdtR0s1VDk5OFNIOXpYdzoxNDYyOGRkYzUyYTFiMzgz"); 63 new StringProperty("streetside.url-clientid", System.getProperty("T1Fzd20xZjdtR0s1VDk5OFNIOXpYdzoxNDYyOGRkYzUyYTFiMzgz")); 64 64 public static final StringProperty BING_MAPS_KEY = 65 new StringProperty("streetside.bing-maps-key", "AuftgJsO0Xs8Ts4M1xZUQJQXJNsvmh3IV8DkNieCiy3tCwCUMq76-WpkrBtNAuEm"); 65 new StringProperty("streetside.bing-maps-key", System.getProperty("AuftgJsO0Xs8Ts4M1xZUQJQXJNsvmh3IV8DkNieCiy3tCwCUMq76-WpkrBtNAuEm")); 66 66 public static final StringProperty TEST_BUBBLE_ID = 67 new StringProperty("streetside.test-bubble-id", "80848005"); 67 new StringProperty("streetside.test-bubble-id", System.getProperty("80848005")); 68 68 69 69 /**
Note:
See TracChangeset
for help on using the changeset viewer.