Changeset 31569 in osm for applications/editors


Ignore:
Timestamp:
2015-09-18T00:46:38+02:00 (9 years ago)
Author:
donvip
Message:

[josm_seachart] fix build

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
  • applications/editors/josm/plugins/seachartedit

    • Property svn:ignore set to
      bin
      build
  • applications/editors/josm/plugins/seachartedit/build.xml

    r30895 r31569  
    1414    <property name="plugin.icon" value="images/SC.png"/>
    1515    <property name="plugin.link" value="http://openseamap.org/"/>
     16    <property name="plugin.requires" value="seachart"/>
    1617
    1718    <property name="josm" location="../../core/dist/josm-custom.jar"/>
     
    2122    <import file="../build-common.xml"/>               
    2223
     24    <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
     25        <include name="SeaChart.jar"/>
     26    </fileset>
     27
    2328</project>
  • applications/editors/josm/plugins/seachartedit/src/panels/ShowFrame.java

    r31156 r31569  
    2424import render.ChartContext;
    2525import render.Renderer;
    26 import render.Rules.RuleSet;
    2726import s57.S57map;
    2827import s57.S57map.*;
     
    5756                        Rectangle rect =  new Rectangle(0, 0, 300, 300);
    5857                        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);
    6059                }
    6160
     
    6766                        return 1000;
    6867                }
     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                }
    6986        }
    7087
     
    7289                super(title);
    7390                picture = new Picture();
    74     picture.setVisible(true);
     91                picture.setVisible(true);
    7592                add(picture);
    76     pack();
     93                pack();
    7794        }
    7895       
     
    8097                picture.drawPicture(osm, map);
    8198        }
    82        
    83        
    8499}
Note: See TracChangeset for help on using the changeset viewer.