Ignore:
Timestamp:
2010-09-16T17:54:52+02:00 (14 years ago)
Author:
malcolmh
Message:

topmark split

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  
    123123    public JLabel lM04Icon = null; // Racon
    124124    public JLabel lM05Icon = null; // Fog
     125    public JLabel lM06Icon = null; // Topmark
    125126    public JLabel lM01FireMark = null;
    126127    private JLabel lM01TypeOfMark = null;
     
    535536            lM05Icon.setText(""); //$NON-NLS-1$
    536537
     538            lM06Icon = new JLabel();
     539            lM06Icon.setBounds(new Rectangle(210, 20, 150, 200));
     540            lM06Icon.setIcon(null);
     541            lM06Icon.setText(""); //$NON-NLS-1$
     542
    537543            lM01FireMark = new JLabel();
    538544            lM01FireMark.setBounds(new Rectangle(300, 85, 95, 20));
     
    690696            pM01SeaMap.add(lM04Icon, null);
    691697            pM01SeaMap.add(lM05Icon, null);
     698            pM01SeaMap.add(lM06Icon, null);
    692699            pM01SeaMap.add(getCbM01TypeOfMark(), null);
    693700            pM01SeaMap.add(lM01TypeOfMark, null);
  • applications/editors/josm/plugins/toms/src/toms/plug/PluginApp.java

    r23193 r23223  
    2828        // wait
    2929        try {
    30             Thread.sleep(10000);
     30            Thread.sleep(1000);
    3131        } catch (InterruptedException e) {
    3232            e.printStackTrace();
  • applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/Buoy.java

    r23209 r23223  
    499499        dlg.lM04Icon.setIcon(null);
    500500        dlg.lM05Icon.setIcon(null);
     501                dlg.lM06Icon.setIcon(null);
    501502
    502503        dlg.rbM01RegionA.setSelected(!getRegion());
     
    965966        dlg.lM03Icon.setIcon(null);
    966967        dlg.lM04Icon.setIcon(null);
     968                dlg.lM05Icon.setIcon(null);
     969                dlg.lM06Icon.setIcon(null);
    967970
    968971        dlg.rbM01RegionA.setEnabled(false);
  • applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/BuoyLat.java

    r23193 r23223  
    613613            if (!image.equals("/images/Lateral")) { //$NON-NLS-1$
    614614
    615                 if (hasTopMark()) {
     615/*                if (hasTopMark()) {
    616616                    if (cat == PORT_HAND || cat == PREF_PORT_HAND)
    617617                        image += "_Can"; //$NON-NLS-1$
     
    619619                        image += "_Cone"; //$NON-NLS-1$
    620620                }
    621                 image += ".png"; //$NON-NLS-1$
     621*/                image += ".png"; //$NON-NLS-1$
    622622                dlg.lM01Icon.setIcon(new ImageIcon(getClass().getResource(image)));
    623623
  • applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/BuoySaw.java

    r23193 r23223  
    174174
    175175            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$
    178178                image += ".png"; //$NON-NLS-1$
    179179                dlg.lM01Icon.setIcon(new ImageIcon(getClass().getResource(image)));
     
    238238        default:
    239239        }
    240         saveTopMarkData("spherical", "red"); //$NON-NLS-1$ //$NON-NLS-2$
     240        saveTopMarkData("sphere", "red"); //$NON-NLS-1$ //$NON-NLS-2$
    241241        saveLightData(); //$NON-NLS-1$
    242242        saveRadarFogData();
Note: See TracChangeset for help on using the changeset viewer.