Ignore:
Timestamp:
2010-12-03T15:18:51+01:00 (14 years ago)
Author:
malcolmh
Message:

save

Location:
applications/editors/josm/plugins/smed/plugs/oseam/src/oseam
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/OSeaM.java

    r24546 r24556  
    7272        @Override
    7373        public String getInfo() {
    74                 return "Seamark editor";
     74                return Messages.getString("TabInfo");
    7575        }
    7676
  • applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/dialogs/OSeaMAction.java

    r24546 r24556  
    3838import oseam.OSeaM;
    3939
    40 
    4140public class OSeaMAction {
    4241
     
    4645        private JButton specButton = null;
    4746        private JButton lightButton = null;
    48        
     47
    4948        public OSeaMAction() {
    50                
     49
    5150                String str = Main.pref.get("mappaint.style.sources");
    5251                if (!str.contains("dev.openseamap.org")) {
     
    6766                        oseamPanel.setLayout(null);
    6867                        oseamPanel.setSize(new Dimension(400, 360));
    69 //System.out.println("file=" + Messages.getString("ChanButton"));
    70                         oseamPanel.add(getChanButton(),  null);
    71                         oseamPanel.add(getHazButton(),  null);
    72                         oseamPanel.add(getSpecButton(),  null);
    73                         oseamPanel.add(getLightButton(),  null);
     68                        // System.out.println("file=" + Messages.getString("ChanButton"));
     69                        oseamPanel.add(getChanButton(), null);
     70                        oseamPanel.add(getHazButton(), null);
     71                        oseamPanel.add(getSpecButton(), null);
     72                        oseamPanel.add(getLightButton(), null);
    7473                }
    7574                return oseamPanel;
     
    7978                if (chanButton == null) {
    8079                        chanButton = new JButton();
    81                         chanButton.setBounds(new Rectangle(340, 56, 50, 50));
     80                        chanButton.setBounds(new Rectangle(5, 5, 50, 50));
    8281                        chanButton.setText("");
    83                         chanButton.setIcon(new ImageIcon(getClass().getResource(Messages.getString("ChanButton"))));
    84                         chanButton.setToolTipText("Channel Marks");
     82                        chanButton.setIcon(new ImageIcon(getClass().getResource(
     83                                        Messages.getString("ChanButton"))));
     84                        chanButton.setToolTipText(Messages.getString("ChanTip"));
    8585                        chanButton.addActionListener(new java.awt.event.ActionListener() {
    8686                                public void actionPerformed(java.awt.event.ActionEvent e) {
    87 /*                                      panelLimits.setVisible(false);
    88                                         panelServices.setVisible(false);
    89                                         panelEnv.setVisible(false);
    90                                         panelRelations.setVisible(false);
    91                                         panelGeneral.setVisible(true);
    92 */                              }
     87                                        /*
     88                                         * panelLimits.setVisible(false);
     89                                         * panelServices.setVisible(false);
     90                                         * panelEnv.setVisible(false);
     91                                         * panelRelations.setVisible(false);
     92                                         * panelGeneral.setVisible(true);
     93                                         */}
    9394                        });
    9495                }
     
    99100                if (hazButton == null) {
    100101                        hazButton = new JButton();
    101                         hazButton.setBounds(new Rectangle(340, 111, 50, 50));
     102                        hazButton.setBounds(new Rectangle(60, 5, 50, 50));
    102103                        hazButton.setText("");
    103                         hazButton.setIcon(new ImageIcon(getClass().getResource(Messages.getString("HazButton"))));
    104                         hazButton.setToolTipText("Danger Marks");
     104                        hazButton.setIcon(new ImageIcon(getClass().getResource(
     105                                        Messages.getString("HazButton"))));
     106                        hazButton.setToolTipText(Messages.getString("HazTip"));
    105107                        hazButton.addActionListener(new java.awt.event.ActionListener() {
    106108                                public void actionPerformed(java.awt.event.ActionEvent e) {
    107 /*                                      panelLimits.setVisible(false);
    108                                         panelServices.setVisible(false);
    109                                         panelEnv.setVisible(false);
    110                                         panelRelations.setVisible(false);
    111                                         panelGeneral.setVisible(true);
    112 */                              }
     109                                        /*
     110                                         * panelLimits.setVisible(false);
     111                                         * panelServices.setVisible(false);
     112                                         * panelEnv.setVisible(false);
     113                                         * panelRelations.setVisible(false);
     114                                         * panelGeneral.setVisible(true);
     115                                         */}
    113116                        });
    114117                }
     
    119122                if (specButton == null) {
    120123                        specButton = new JButton();
    121                         specButton.setBounds(new Rectangle(340, 166, 50, 50));
     124                        specButton.setBounds(new Rectangle(115, 5, 50, 50));
    122125                        specButton.setText("");
    123                         specButton.setIcon(new ImageIcon(getClass().getResource(Messages.getString("SpecButton"))));
    124                         specButton.setToolTipText("Special Marks");
     126                        specButton.setIcon(new ImageIcon(getClass().getResource(
     127                                        Messages.getString("SpecButton"))));
     128                        specButton.setToolTipText(Messages.getString("SpecTip"));
    125129                        specButton.addActionListener(new java.awt.event.ActionListener() {
    126130                                public void actionPerformed(java.awt.event.ActionEvent e) {
    127 /*                                      panelLimits.setVisible(false);
    128                                         panelServices.setVisible(false);
    129                                         panelEnv.setVisible(false);
    130                                         panelRelations.setVisible(false);
    131                                         panelGeneral.setVisible(true);
    132 */                              }
     131                                        /*
     132                                         * panelLimits.setVisible(false);
     133                                         * panelServices.setVisible(false);
     134                                         * panelEnv.setVisible(false);
     135                                         * panelRelations.setVisible(false);
     136                                         * panelGeneral.setVisible(true);
     137                                         */}
    133138                        });
    134139                }
     
    139144                if (lightButton == null) {
    140145                        lightButton = new JButton();
    141                         lightButton.setBounds(new Rectangle(340, 221, 50, 50));
     146                        lightButton.setBounds(new Rectangle(170, 5, 50, 50));
    142147                        lightButton.setText("");
    143                         lightButton.setIcon(new ImageIcon(getClass().getResource(Messages.getString("LightsButton"))));
    144                         lightButton.setToolTipText("Light Marks");
     148                        lightButton.setIcon(new ImageIcon(getClass().getResource(
     149                                        Messages.getString("LightsButton"))));
     150                        lightButton.setToolTipText(Messages.getString("LightsTip"));
    145151                        lightButton.addActionListener(new java.awt.event.ActionListener() {
    146152                                public void actionPerformed(java.awt.event.ActionEvent e) {
    147 /*                                      panelLimits.setVisible(false);
    148                                         panelServices.setVisible(false);
    149                                         panelEnv.setVisible(false);
    150                                         panelRelations.setVisible(false);
    151                                         panelGeneral.setVisible(true);
    152 */                              }
     153                                        /*
     154                                         * panelLimits.setVisible(false);
     155                                         * panelServices.setVisible(false);
     156                                         * panelEnv.setVisible(false);
     157                                         * panelRelations.setVisible(false);
     158                                         * panelGeneral.setVisible(true);
     159                                         */}
    153160                        });
    154161                }
  • applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/msg/messages.properties

    r24546 r24556  
     1TabInfo=Seamark editor
    12TabName=Seamarks
    23ChanButton=/images/ChanButton.png
     4ChanTip=Channel marks
    35HazButton=/images/HazButton.png
     6HazTip=Danger marks
    47SpecButton=/images/SpecButton.png
     8SpecTip=Special marks
    59LightsButton=/images/LightsButton.png
     10LightsTip=Lights marks
  • applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/msg/messages_de.properties

    r24546 r24556  
     1TabInfo=Seamark editor
    12TabName=Seezeichen
    23ChanButton=/images/ChanButton_de.png
     4ChanTip=Channel marks
    35HazButton=/images/HazButton_de.png
     6HazTip=Danger marks
    47SpecButton=/images/SpecButton_de.png
     8SpecTip=Special marks
    59LightsButton=/images/LightsButton_de.png
     10LightsTip=Lights marks
  • applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/msg/messages_en.properties

    r24546 r24556  
     1TabInfo=Seamark editor
    12TabName=Seamarks
    23ChanButton=/images/ChanButton.png
     4ChanTip=Channel marks
    35HazButton=/images/HazButton.png
     6HazTip=Danger marks
    47SpecButton=/images/SpecButton.png
     8SpecTip=Special marks
    59LightsButton=/images/LightsButton.png
     10LightsTip=Lights marks
Note: See TracChangeset for help on using the changeset viewer.