Changeset 22850 in osm for applications/editors/josm/plugins/videomapping/src/org
- Timestamp:
- 2010-08-29T13:26:12+02:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/videomapping/src/org/openstreetmap/josm/plugins/videomapping
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/videomapping/src/org/openstreetmap/josm/plugins/videomapping/PositionLayer.java
r22691 r22850 76 76 gpsTimeCode= new SimpleDateFormat("hh:mm:ss"); 77 77 Main.map.mapView.addMouseListener(this); 78 Main.map.mapView.addMouseMotionListener(this); 79 78 Main.map.mapView.addMouseMotionListener(this); 80 79 } 81 80 … … 96 95 97 96 @Override 98 public Component[] getMenuEntries() { 99 return new Component[]{ 100 new JMenuItem(LayerListDialog.getInstance().createShowHideLayerAction(this)), 101 new JMenuItem(LayerListDialog.getInstance().createDeleteLayerAction(this)), 102 new JSeparator(), 97 public Action[] getMenuEntries() { 98 return new Action[]{ 99 LayerListDialog.getInstance().createActivateLayerAction(this), 100 LayerListDialog.getInstance().createShowHideLayerAction(), 101 LayerListDialog.getInstance().createDeleteLayerAction(), 102 SeparatorLayerAction.INSTANCE, 103 103 //TODO here my stuff 104 new JSeparator(), 105 new JMenuItem(new LayerListPopup.InfoAction(this))};//TODO here infos about the linked videos 106 } 107 108 104 SeparatorLayerAction.INSTANCE, 105 new LayerListPopup.InfoAction(this)};//TODO here infos about the linked videos 106 } 109 107 110 108 @Override … … 123 121 124 122 } 125 126 127 123 128 124 @Override -
applications/editors/josm/plugins/videomapping/src/org/openstreetmap/josm/plugins/videomapping/VideoMappingPlugin.java
r22690 r22850 69 69 //TODO What more to store during sessions? Size/Position 70 70 71 72 71 public VideoMappingPlugin(PluginInformation info) { 73 72 super(info);
Note:
See TracChangeset
for help on using the changeset viewer.