Changeset 27479 in osm for applications
- Timestamp:
- 2012-01-17T17:36:18+01:00 (13 years ago)
- 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 40 40 --> 41 41 <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"/> 43 43 <property name="plugin.build.dir" value="build"/> 44 44 <property name="plugin.src.dir" value="src"/> -
applications/editors/josm/plugins/smed/plugs/smed_about/build.xml
r26605 r27479 40 40 --> 41 41 <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"/> 43 43 <property name="plugin.build.dir" value="build"/> 44 44 <property name="plugin.src.dir" value="src"/> -
applications/editors/josm/plugins/smed/plugs/smed_about/src/smed_about/SmedAbout.java
r27155 r27479 91 91 aboutCopyright.setBounds(new Rectangle(125, 0, 245, 55)); 92 92 aboutCopyright.setText("<HTML><BODY>Copyright (c) 2009/10/11<BR><center>by" + 93 "<BR>Werner K önig & Malcolm Herring</BODY></HTML>");93 "<BR>Werner Knig & Malcolm Herring</BODY></HTML>"); 94 94 95 95 aboutAuthors = new JLabel(); 96 96 aboutAuthors.setBounds(new Rectangle(30, 50 97 97 , 340, 30)); 98 aboutAuthors.setText("Authors: Werner K önig and Malcolm Herring");98 aboutAuthors.setText("Authors: Werner Knig and Malcolm Herring"); 99 99 100 100 aboutVersion = new JLabel(); … … 117 117 aboutPlugins.setBounds(new Rectangle(58, 135, 303, 60)); 118 118 aboutPlugins.setText("<HTML><BODY>SeaMark Editor" + 119 "<BR>Way & Area Editor" + 119 120 "<BR>Harbour Editor" + 120 121 "<BR>About - this tab</BODY></HTML>"); -
applications/editors/josm/plugins/smed/plugs/wayarea/build.xml
r27477 r27479 83 83 <fileset dir="images"/> 84 84 </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"/> 87 87 </copy> 88 88 <copy todir="${plugin.build.dir}"> … … 110 110 <attribute name="Plugin-Class" value="toms.Toms"/> 111 111 <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"/> 114 114 <attribute name="Plugin-Link" value="http://openseamap.org/"/> 115 115 <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/> -
applications/editors/josm/plugins/smed/plugs/wayarea/src/wayarea/Messages.java
r27477 r27479 5 5 6 6 public class Messages { 7 private static final String BUNDLE_NAME = " oseam.msg.messages";7 private static final String BUNDLE_NAME = "wayarea.msg.messages"; 8 8 9 9 private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME); -
applications/editors/josm/plugins/smed/plugs/wayarea/src/wayarea/dialogs/WayAreaAction.java
r27477 r27479 39 39 node = null; 40 40 // panelMain.mark.clrMark(); 41 manager.showVisualMessage(Messages.getString("OneNode"));41 // manager.showVisualMessage(Messages.getString("OneNode")); 42 42 } 43 43 } … … 46 46 node = null; 47 47 // panelMain.mark.clrMark(); 48 manager.showVisualMessage(Messages.getString("SelectNode"));48 // manager.showVisualMessage(Messages.getString("SelectNode")); 49 49 } 50 50 } -
applications/editors/josm/plugins/smed/plugs/wayarea/src/wayarea/panels/PanelMain.java
r27477 r27479 13 13 14 14 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; 15 21 public JButton saveButton = null; 16 22 private ActionListener alSave = new ActionListener() { … … 87 93 88 94 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); 96 102 } 97 103
Note:
See TracChangeset
for help on using the changeset viewer.