Changeset 32060 in osm for applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/RasterImageGeoreferencer.java
- Timestamp:
- 2016-02-09T23:50:50+01:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/RasterImageGeoreferencer.java
r30859 r32060 68 68 69 69 /** 70 * 71 * @return false if all operations are canceled 72 */ 70 * 71 * @return false if all operations are canceled 72 */ 73 73 public boolean startGeoreferencing(WMSLayer wmsLayer) { 74 74 this.wmsLayer = wmsLayer; … … 91 91 } 92 92 93 94 93 public boolean isRunning() 95 94 { … … 98 97 99 98 @Override 100 public void mouseClicked(MouseEvent e) { 99 public void mouseClicked(MouseEvent e) { 101 100 if (System.currentTimeMillis() - mouseClickedTime < initialClickDelay) { 102 101 Main.info("mouse click bounce detected"); … … 147 146 148 147 /** 149 * 150 * @return false if all operations are canceled 151 */ 148 * 149 * @return false if all operations are canceled 150 */ 152 151 private boolean canceledOrRestartCurrAction(String action) { 153 152 Object[] options = { "Cancel", "Retry" }; … … 251 250 pane.addPropertyChangeListener(new PropertyChangeListener() { 252 251 @Override 253 public void propertyChange(PropertyChangeEvent evt) {252 public void propertyChange(PropertyChangeEvent evt) { 254 253 if (JOptionPane.VALUE_PROPERTY.equals(evt.getPropertyName())) { 255 254 ignoreMouseClick = false; … … 355 354 356 355 @Override 357 public void mouseEntered(MouseEvent arg0) { 356 public void mouseEntered(MouseEvent arg0) { 358 357 } 359 358 360 359 @Override 361 public void mouseExited(MouseEvent arg0) { 360 public void mouseExited(MouseEvent arg0) { 362 361 } 363 362 364 363 @Override 365 public void mousePressed(MouseEvent arg0) { 364 public void mousePressed(MouseEvent arg0) { 366 365 } 367 366 368 367 @Override 369 public void mouseReleased(MouseEvent arg0) { 370 } 371 368 public void mouseReleased(MouseEvent arg0) { 369 } 372 370 }
Note:
See TracChangeset
for help on using the changeset viewer.
