Package ch.rakudave.jnetmap.view.properties

Examples of ch.rakudave.jnetmap.view.properties.MapProperties


    menu.add(new JSeparator());
      i = new JMenuItem(new AbstractAction(Lang.getNoHTML("menu.file.properties"), Icons.get("properties")) {
        @Override
        public void actionPerformed(ActionEvent e) {
          if (Controller.getCurrentMap() == null) return;
          new MapProperties((Frame) Controller.getView(), Controller.getCurrentMap());
        }
      }); menu.add(i);
      i.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_P, InputEvent.CTRL_DOWN_MASK | InputEvent.SHIFT_DOWN_MASK));
    menu.add(new JSeparator());
    // Quit
View Full Code Here

TOP

Related Classes of ch.rakudave.jnetmap.view.properties.MapProperties

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.