Changeset 31569 in osm for applications/editors
- Timestamp:
- 2015-09-18T00:46:38+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 8 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/seachart
-
Property svn:ignore
set to
bin
build
-
Property svn:ignore
set to
-
applications/editors/josm/plugins/seachartedit
-
Property svn:ignore
set to
bin
build
-
Property svn:ignore
set to
-
applications/editors/josm/plugins/seachartedit/build.xml
r30895 r31569 14 14 <property name="plugin.icon" value="images/SC.png"/> 15 15 <property name="plugin.link" value="http://openseamap.org/"/> 16 <property name="plugin.requires" value="seachart"/> 16 17 17 18 <property name="josm" location="../../core/dist/josm-custom.jar"/> … … 21 22 <import file="../build-common.xml"/> 22 23 24 <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}"> 25 <include name="SeaChart.jar"/> 26 </fileset> 27 23 28 </project> -
applications/editors/josm/plugins/seachartedit/src/panels/ShowFrame.java
r31156 r31569 24 24 import render.ChartContext; 25 25 import render.Renderer; 26 import render.Rules.RuleSet;27 26 import s57.S57map; 28 27 import s57.S57map.*; … … 57 56 Rectangle rect = new Rectangle(0, 0, 300, 300); 58 57 g2.clearRect(rect.x, rect.y, rect.width, rect.height); 59 Renderer.reRender(g2, RuleSet.ALL,rect, 16, 32, showMap, this);58 Renderer.reRender(g2, rect, 16, 32, showMap, this); 60 59 } 61 60 … … 67 66 return 1000; 68 67 } 68 69 @Override 70 public boolean clip() { 71 // TODO Auto-generated method stub 72 return false; 73 } 74 75 @Override 76 public Color background() { 77 // TODO Auto-generated method stub 78 return null; 79 } 80 81 @Override 82 public RuleSet ruleset() { 83 // TODO Auto-generated method stub 84 return null; 85 } 69 86 } 70 87 … … 72 89 super(title); 73 90 picture = new Picture(); 74 91 picture.setVisible(true); 75 92 add(picture); 76 93 pack(); 77 94 } 78 95 … … 80 97 picture.drawPicture(osm, map); 81 98 } 82 83 84 99 }
Note:
See TracChangeset
for help on using the changeset viewer.