Changeset 27479 in osm for applications


Ignore:
Timestamp:
2012-01-17T17:36:18+01:00 (13 years ago)
Author:
malcolmh
Message:

save

Location:
applications/editors/josm/plugins/smed/plugs
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/smed/plugs/harbour/build.xml

    r26605 r27479  
    4040     -->
    4141    <property name="josm" location="../../../../core/dist/josm-custom.jar"/>
    42     <property name="smed" location="../../core/dist/smed.jar"/>
     42    <property name="smed" location="../../core/dist/SeaMapEditor.jar"/>
    4343    <property name="plugin.build.dir" value="build"/>
    4444    <property name="plugin.src.dir" value="src"/>
  • applications/editors/josm/plugins/smed/plugs/smed_about/build.xml

    r26605 r27479  
    4040     -->
    4141    <property name="josm" location="../../../../core/dist/josm-custom.jar"/>
    42     <property name="smed" location="../../core/dist/smed.jar"/>
     42    <property name="smed" location="../../core/dist/SeaMapEditor.jar"/>
    4343    <property name="plugin.build.dir" value="build"/>
    4444    <property name="plugin.src.dir" value="src"/>
  • applications/editors/josm/plugins/smed/plugs/smed_about/src/smed_about/SmedAbout.java

    r27155 r27479  
    9191            aboutCopyright.setBounds(new Rectangle(125, 0, 245, 55));
    9292            aboutCopyright.setText("<HTML><BODY>Copyright (c) 2009/10/11<BR><center>by" +
    93                                         "<BR>Werner König & Malcolm Herring</BODY></HTML>");
     93                                        "<BR>Werner Kšnig & Malcolm Herring</BODY></HTML>");
    9494
    9595            aboutAuthors = new JLabel();
    9696            aboutAuthors.setBounds(new Rectangle(30, 50
    9797                        , 340, 30));
    98             aboutAuthors.setText("Authors: Werner König and Malcolm Herring");
     98            aboutAuthors.setText("Authors: Werner Kšnig and Malcolm Herring");
    9999
    100100            aboutVersion = new JLabel();
     
    117117            aboutPlugins.setBounds(new Rectangle(58, 135, 303, 60));
    118118            aboutPlugins.setText("<HTML><BODY>SeaMark Editor" +
     119                        "<BR>Way & Area Editor" +
    119120                        "<BR>Harbour Editor" +
    120121                        "<BR>About - this tab</BODY></HTML>");
  • applications/editors/josm/plugins/smed/plugs/wayarea/build.xml

    r27477 r27479  
    8383            <fileset dir="images"/>
    8484        </copy>
    85         <copy todir="${plugin.build.dir}/oseam/msg">
    86             <fileset dir="${plugin.src.dir}/oseam/msg"/>
     85        <copy todir="${plugin.build.dir}/wayarea/msg">
     86            <fileset dir="${plugin.src.dir}/wayarea/msg"/>
    8787        </copy>
    8888        <copy todir="${plugin.build.dir}">
     
    110110                <attribute name="Plugin-Class" value="toms.Toms"/>
    111111                <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
    112                 <attribute name="Plugin-Description" value="Create and edit seamarks for OpenSeaMap"/>
    113                 <attribute name="Plugin-Icon" value="images/Smp.png"/>
     112                <attribute name="Plugin-Description" value="Create and edit ways and areas for OpenSeaMap"/>
     113                <attribute name="Plugin-Icon" value="images/wayarea.png"/>
    114114                <attribute name="Plugin-Link" value="http://openseamap.org/"/>
    115115                <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
  • applications/editors/josm/plugins/smed/plugs/wayarea/src/wayarea/Messages.java

    r27477 r27479  
    55
    66public class Messages {
    7         private static final String BUNDLE_NAME = "oseam.msg.messages";
     7        private static final String BUNDLE_NAME = "wayarea.msg.messages";
    88
    99        private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME);
  • applications/editors/josm/plugins/smed/plugs/wayarea/src/wayarea/dialogs/WayAreaAction.java

    r27477 r27479  
    3939                                                node = null;
    4040//                                              panelMain.mark.clrMark();
    41                                                 manager.showVisualMessage(Messages.getString("OneNode"));
     41//                                              manager.showVisualMessage(Messages.getString("OneNode"));
    4242                                        }
    4343                                }
     
    4646                                node = null;
    4747//                              panelMain.mark.clrMark();
    48                                 manager.showVisualMessage(Messages.getString("SelectNode"));
     48//                              manager.showVisualMessage(Messages.getString("SelectNode"));
    4949                        }
    5050                }
  • applications/editors/josm/plugins/smed/plugs/wayarea/src/wayarea/panels/PanelMain.java

    r27477 r27479  
    1313
    1414        private WayAreaAction dlg;
     15//      public PanelF panelF = null;
     16//      public PanelJ panelJ = null;
     17//      public PanelK panelK = null;
     18//      public PanelL panelL = null;
     19//      public PanelM panelM = null;
     20//      public PanelN panelN = null;
    1521        public JButton saveButton = null;
    1622        private ActionListener alSave = new ActionListener() {
     
    8793
    8894        public void syncPanel() {
    89                 typeButtons.clearSelection();
    90                 fButton.setBorderPainted(false);
    91                 jButton.setEnabled(false);
    92                 kButton.setBorderPainted(false);
    93                 lButton.setEnabled(false);
    94                 mButton.setBorderPainted(false);
    95                 nButton.setEnabled(false);
     95//              typeButtons.clearSelection();
     96//              fButton.setBorderPainted(false);
     97//              jButton.setEnabled(false);
     98//              kButton.setBorderPainted(false);
     99//              lButton.setEnabled(false);
     100//              mButton.setBorderPainted(false);
     101//              nButton.setEnabled(false);
    96102        }
    97103
Note: See TracChangeset for help on using the changeset viewer.