Ignore:
Timestamp:
2011-08-25T20:25:19+02:00 (13 years ago)
Author:
malcolmh
Message:

save

Location:
applications/editors/josm/plugins/smed/plugs/oseam/src
Files:
8 edited
2 moved

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/msg/messages.properties

    r26173 r26573  
    8888Range=Range
    8989Category=Category
     90SSCategory=Signal Station
     91UKCategory=Unknown Category
    9092NoneSpecified=None specified
    9193Vert2=Vertically disposed x2
    9294Visibility=Visibility
    93 Intensified=intensified
    94 Unintensified=unintensified
     95Intensified=Intensified
     96Unintensified=Unintensified
    9597PartiallyObscured=Partially obscured
    9698Orientation=Orientation
    9799Exhibition=Exhibition
    9810024h=24h
    99 Day=day
    100 Night=night
    101 Fog=fog
     101Day=Day
     102Night=Night
     103Fog=Fog
    102104
    103105NoColour=No colour
     
    111113Violet=Violet
    112114Black=Black
     115Grey=Grey
     116Brown=Brown
     117Magenta=Magenta
     118Pink=Pink
     119
     120Lock=Lock
     121Storm=Storm
     122
  • applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/panels/PanelHaz.java

    r26572 r26573  
    111111                                        button.setBorderPainted(false);
    112112                        }
    113                         if (dlg.mark != null)
     113                        if (dlg.mark != null) {
     114                                dlg.panelMain.moreButton.setVisible(true);
    114115                                dlg.mark.paintSign();
     116                        }
    115117                }
    116118        };
  • applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/panels/PanelLights.java

    r26572 r26573  
    6262                                warningCatBox.setVisible(false);
    6363                        }
    64                         if (dlg.mark != null)
     64                        if (dlg.mark != null) {
     65                                dlg.panelMain.moreButton.setVisible(true);
    6566                                dlg.mark.paintSign();
     67                        }
    6668                }
    6769        };
     
    8789                this.add(trafficCatBox, null);
    8890                trafficCatBox.addActionListener(alTrafficCatBox);
    89                 trafficCatBox.addItem(Messages.getString("NoneSpecified"));
     91                trafficCatBox.addItem(Messages.getString("UKCategory"));
    9092                trafficCatBox.addItem(Messages.getString("Lock"));
    9193                trafficCatBox.setVisible(false);
     
    9597                this.add(warningCatBox, null);
    9698                warningCatBox.addActionListener(alWarningCatBox);
    97                 warningCatBox.addItem(Messages.getString("NoneSpecified"));
     99                warningCatBox.addItem(Messages.getString("UKCategory"));
    98100                warningCatBox.addItem(Messages.getString("Storm"));
    99101                warningCatBox.setVisible(false);
  • applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/panels/PanelMain.java

    r26572 r26573  
    2323        private JButton saveButton = null;
    2424        private ActionListener alSave = null;
    25         private JButton moreButton = null;
     25        public JButton moreButton = null;
    2626        private ActionListener alMore = null;
    2727        public ButtonGroup typeButtons = null;
     
    103103                this.add(panelSpec, null);
    104104                this.add(panelLights, null);
     105                this.add(panelMore, null);
    105106                this.add(panelTop, null);
    106107                this.add(panelFog, null);
     
    304305        public void clearSelections() {
    305306                typeButtons.clearSelection();
     307                moreButton.setVisible(false);
    306308                alType.actionPerformed(null);
    307309                nameBox.setText("");
  • applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/panels/PanelPort.java

    r26572 r26573  
    8989                                        button.setBorderPainted(false);
    9090                        }
    91                         if (dlg.mark != null)
     91                        if (dlg.mark != null) {
     92                                dlg.panelMain.moreButton.setVisible(true);
    9293                                dlg.mark.paintSign();
     94                        }
    9395                }
    9496        };
  • applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/panels/PanelSpec.java

    r26562 r26573  
    5151                                        button.setBorderPainted(false);
    5252                        }
    53                         if (dlg.mark != null)
     53                        if (dlg.mark != null) {
     54                                dlg.panelMain.moreButton.setVisible(true);
    5455                                dlg.mark.paintSign();
     56                        }
    5557                }
    5658        };
  • applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/panels/PanelStbd.java

    r26572 r26573  
    8989                                        button.setBorderPainted(false);
    9090                        }
    91                         if (dlg.mark != null)
     91                        if (dlg.mark != null) {
     92                                dlg.panelMain.moreButton.setVisible(true);
    9293                                dlg.mark.paintSign();
     94                        }
    9395                }
    9496        };
  • applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/panels/PanelTop.java

    r26561 r26573  
    1515        public PanelCol panelCol = null;
    1616        private ButtonGroup topButtons = new ButtonGroup();
    17         public JRadioButton noTopButton = new JRadioButton(new ImageIcon(getClass().getResource("/images/NoTopButton.png")));
     17        public JRadioButton noTopButton = new JRadioButton(new ImageIcon(getClass().getResource("/images/NoneButton.png")));
    1818        public JRadioButton canTopButton = new JRadioButton(new ImageIcon(getClass().getResource("/images/CanTopButton.png")));
    1919        public JRadioButton coneTopButton = new JRadioButton(new ImageIcon(getClass().getResource("/images/ConeTopButton.png")));
Note: See TracChangeset for help on using the changeset viewer.