Changeset 23223 in osm for applications/editors/josm/plugins
- Timestamp:
- 2010-09-16T17:54:52+02:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/toms/src
- Files:
-
- 60 added
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/toms/src/toms/dialogs/SmpDialogAction.java
r23193 r23223 123 123 public JLabel lM04Icon = null; // Racon 124 124 public JLabel lM05Icon = null; // Fog 125 public JLabel lM06Icon = null; // Topmark 125 126 public JLabel lM01FireMark = null; 126 127 private JLabel lM01TypeOfMark = null; … … 535 536 lM05Icon.setText(""); //$NON-NLS-1$ 536 537 538 lM06Icon = new JLabel(); 539 lM06Icon.setBounds(new Rectangle(210, 20, 150, 200)); 540 lM06Icon.setIcon(null); 541 lM06Icon.setText(""); //$NON-NLS-1$ 542 537 543 lM01FireMark = new JLabel(); 538 544 lM01FireMark.setBounds(new Rectangle(300, 85, 95, 20)); … … 690 696 pM01SeaMap.add(lM04Icon, null); 691 697 pM01SeaMap.add(lM05Icon, null); 698 pM01SeaMap.add(lM06Icon, null); 692 699 pM01SeaMap.add(getCbM01TypeOfMark(), null); 693 700 pM01SeaMap.add(lM01TypeOfMark, null); -
applications/editors/josm/plugins/toms/src/toms/plug/PluginApp.java
r23193 r23223 28 28 // wait 29 29 try { 30 Thread.sleep(1000 0);30 Thread.sleep(1000); 31 31 } catch (InterruptedException e) { 32 32 e.printStackTrace(); -
applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/Buoy.java
r23209 r23223 499 499 dlg.lM04Icon.setIcon(null); 500 500 dlg.lM05Icon.setIcon(null); 501 dlg.lM06Icon.setIcon(null); 501 502 502 503 dlg.rbM01RegionA.setSelected(!getRegion()); … … 965 966 dlg.lM03Icon.setIcon(null); 966 967 dlg.lM04Icon.setIcon(null); 968 dlg.lM05Icon.setIcon(null); 969 dlg.lM06Icon.setIcon(null); 967 970 968 971 dlg.rbM01RegionA.setEnabled(false); -
applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/BuoyLat.java
r23193 r23223 613 613 if (!image.equals("/images/Lateral")) { //$NON-NLS-1$ 614 614 615 if (hasTopMark()) {615 /* if (hasTopMark()) { 616 616 if (cat == PORT_HAND || cat == PREF_PORT_HAND) 617 617 image += "_Can"; //$NON-NLS-1$ … … 619 619 image += "_Cone"; //$NON-NLS-1$ 620 620 } 621 image += ".png"; //$NON-NLS-1$621 */ image += ".png"; //$NON-NLS-1$ 622 622 dlg.lM01Icon.setIcon(new ImageIcon(getClass().getResource(image))); 623 623 -
applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/BuoySaw.java
r23193 r23223 174 174 175 175 if (!image.equals("/images/Safe_Water")) { //$NON-NLS-1$ 176 if (hasTopMark())177 image += "_Sphere"; //$NON-NLS-1$176 // if (hasTopMark()) 177 // image += "_Sphere"; //$NON-NLS-1$ 178 178 image += ".png"; //$NON-NLS-1$ 179 179 dlg.lM01Icon.setIcon(new ImageIcon(getClass().getResource(image))); … … 238 238 default: 239 239 } 240 saveTopMarkData("spher ical", "red"); //$NON-NLS-1$ //$NON-NLS-2$240 saveTopMarkData("sphere", "red"); //$NON-NLS-1$ //$NON-NLS-2$ 241 241 saveLightData(); //$NON-NLS-1$ 242 242 saveRadarFogData();
Note:
See TracChangeset
for help on using the changeset viewer.