Ignore:
Timestamp:
2010-09-07T15:04:45+02:00 (14 years ago)
Author:
malcolmh
Message:

save

Location:
applications/editors/josm/plugins/toms/src/toms
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/toms/src/toms/dialogs/SmpDialogAction.java

    r23047 r23050  
    814814                                                        buoy = new BuoySpec(dia, n);
    815815                                                        cbM01TopMark.removeAllItems();
    816                                                         cbM01TopMark.addItem("");
     816                                                        cbM01TopMark.addItem(Messages.getString("SmpDialogAction.212"));
    817817                                                        cbM01TopMark.addItem(Messages.getString("SmpDialogAction.210")); //$NON-NLS-1$
    818818                                                        cbM01TopMark.addItem(Messages.getString("SmpDialogAction.211")); //$NON-NLS-1$
  • applications/editors/josm/plugins/toms/src/toms/msg/messages.properties

    r23039 r23050  
    6363SmpDialogAction.28=Please select only one node
    6464SmpDialogAction.4=Edit OpenSeaMap
    65 SmpDialogAction.82=Parse-Error: Invalid colour
    6665SmpDialogAction.9=Seamap Editor
    6766SmpDialogAction.91=Seamark not set
     
    7473SmpDialogAction.210=Yellow X
    7574SmpDialogAction.211=Red X
     75SmpDialogAction.212=Not set
    7676
  • applications/editors/josm/plugins/toms/src/toms/seamarks/SeaMark.java

    r23047 r23050  
    112112       
    113113        public final static int UNKNOWN_RATYP = 0;
    114         public final static int RATYP_RACON = 0;
    115         public final static int RATYP_RAMARK = 0;
    116         public final static int RATYP_LEADING = 0;
     114        public final static int RATYP_RACON = 1;
     115        public final static int RATYP_RAMARK = 2;
     116        public final static int RATYP_LEADING = 3;
    117117
    118118        /**
  • applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/Buoy.java

    r23047 r23050  
    277277                        dlg.lM04Icon.setIcon(new ImageIcon(getClass().getResource("/images/Radar_Station.png")));
    278278                        dlg.cbM01Racon.setVisible(true);
    279                 } else
     279                        if (getRatyp() == RATYP_RACON) {
     280                                dlg.lM01Racon.setVisible(true);
     281                                dlg.tfM01Racon.setVisible(true);
     282                                dlg.tfM01Racon.setEnabled(true);
     283                        } else {
     284                                dlg.lM01Racon.setVisible(false);
     285                                dlg.tfM01Racon.setVisible(false);
     286                        }
     287                } else {
    280288                        dlg.cbM01Racon.setVisible(false);
     289                        dlg.lM01Racon.setVisible(false);
     290                        dlg.tfM01Racon.setVisible(false);
     291                }
    281292               
    282293                if (isFired()) {
  • applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/BuoySaw.java

    r23047 r23050  
    140140
    141141                if (!image.equals("/images/Safe_Water")) {
     142                        if (hasTopMark())
     143                                image += "_Sphere";
    142144                        image += ".png";
    143145                        dlg.lM01Icon.setIcon(new ImageIcon(getClass().getResource(image)));
    144 
    145                         if (hasTopMark())
    146                                 image += "_Sphere";
    147146
    148147                        if (isFired()) {
Note: See TracChangeset for help on using the changeset viewer.