Changeset 23058 in osm for applications/editors/josm/plugins/toms/src/toms/dialogs/SmpDialogAction.java
- Timestamp:
- 2010-09-07T16:24:42+02:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/toms/src/toms/dialogs/SmpDialogAction.java
r23050 r23058 116 116 public JRadioButton rbM01RegionA = null; 117 117 public JRadioButton rbM01RegionB = null; 118 public JLabel lM01Icon = null; 119 public JLabel lM02Icon = null; 120 public JLabel lM03Icon = null; 121 public JLabel lM04Icon = null; 118 public JLabel lM01Icon = null; // Shape 119 public JLabel lM02Icon = null; // Light 120 public JLabel lM03Icon = null; // Reflector 121 public JLabel lM04Icon = null; // Racon 122 public JLabel lM05Icon = null; // Fog 122 123 public JLabel lM01FireMark = null; 123 124 private JLabel lM01TypeOfMark = null; … … 525 526 lM04Icon.setText(""); //$NON-NLS-1$ 526 527 528 lM05Icon = new JLabel(); 529 lM05Icon.setBounds(new Rectangle(210, 20, 150, 200)); 530 lM05Icon.setIcon(null); 531 lM05Icon.setText(""); //$NON-NLS-1$ 532 527 533 lM01FireMark = new JLabel(); 528 534 lM01FireMark.setBounds(new Rectangle(300, 85, 95, 20)); … … 676 682 pM01SeaMap.add(lM03Icon, null); 677 683 pM01SeaMap.add(lM04Icon, null); 684 pM01SeaMap.add(lM05Icon, null); 678 685 pM01SeaMap.add(getCbM01TypeOfMark(), null); 679 686 pM01SeaMap.add(lM01TypeOfMark, null); … … 830 837 cbM01CatOfMark.addItem(Messages.getString("SmpDialogAction.207")); //$NON-NLS-1$ 831 838 cbM01CatOfMark.addItem(Messages.getString("SmpDialogAction.208")); //$NON-NLS-1$ 832 cbM01CatOfMark.addItem(Messages.getString("SmpDialogAction.209")); //$NON-NLS-1$833 839 } 834 840 break; … … 1044 1050 cM01Fog.setFont(new Font("Dialog", Font.PLAIN, 12)); //$NON-NLS-1$ 1045 1051 cM01Fog.setText(Messages.getString("SmpDialogAction.174")); //$NON-NLS-1$ 1052 cM01Fog.addActionListener(new ActionListener() { 1053 public void actionPerformed(ActionEvent e) { 1054 buoy.setFog(cM01Fog.isSelected()); 1055 buoy.paintSign(); 1056 } 1057 }); 1046 1058 } 1047 1059 return cM01Fog;
Note:
See TracChangeset
for help on using the changeset viewer.
