Ignore:
Timestamp:
2014-07-13T21:57:10+02:00 (10 years ago)
Author:
donvip
Message:

[josm_opendata] update to JOSM 7291

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/OdPlugin.java

    r30340 r30529  
    33
    44import java.awt.Image;
    5 import java.awt.Toolkit;
    65import java.io.File;
    76import java.net.URL;
     
    5857        private OdDialog dialog;
    5958       
    60         public OdPlugin(PluginInformation info) { // NO_UCD
     59        public OdPlugin(PluginInformation info) {
    6160                super(info);
    6261                if (instance == null) {
     
    102101       
    103102        private void buildMenu() {
    104         int screenHeight = Toolkit.getDefaultToolkit().getScreenSize().height;
    105103        for (Module module : ModuleHandler.moduleList) {
    106104                Map<DataSetCategory, JMenu> catMenus = new HashMap<DataSetCategory, JMenu>();
     
    141139                                        }
    142140                                        if (item != null) {
    143                                                 MenuScroller.setScrollerFor(handlerMenu, (screenHeight / item.getPreferredSize().height)-3);
     141                                                MenuScroller.setScrollerFor(handlerMenu,
     142                                                        MenuScroller.computeScrollCount(handlerMenu, item.getPreferredSize().height));
    144143                                                handlerItem = endMenu.add(handlerMenu);
    145144                                        }
     
    151150                }
    152151                if (moduleMenu != null) {
    153                         //MenuScroller.setScrollerFor(moduleMenu, screenHeight / moduleMenu.getItem(0).getPreferredSize().height);
    154152                        menu.add(moduleMenu);
    155153                }
    156154        }
    157155        menu.addSeparator();
    158         /*JMenuItem itemIcon =*/ MainMenu.add(menu, new OpenPreferencesActions());
    159         //MenuScroller.setScrollerFor(menu, screenHeight / itemIcon.getPreferredSize().height);
     156        MainMenu.add(menu, new OpenPreferencesActions());
    160157        }
    161158       
     
    212209        return dialog;
    213210    }
    214 
    215     /*
    216     private static final void fixUcDetectorTest() {
    217         FilterFactoryImpl n1 = new FilterFactoryImpl();
    218         DatumAliases n2 = new DatumAliases();
    219         EPSGCRSAuthorityFactory n3 = new EPSGCRSAuthorityFactory();
    220         DefaultFunctionFactory n4 = new DefaultFunctionFactory();
    221         ShapefileDirectoryFactory n5 = new ShapefileDirectoryFactory();
    222         ReferencingObjectFactory n6 = new ReferencingObjectFactory();
    223         BufferedCoordinateOperationFactory n7 = new BufferedCoordinateOperationFactory();
    224     }*/
    225211}
Note: See TracChangeset for help on using the changeset viewer.