Examples of ScaleCommand


Examples of com.ribomation.droidAtScreen.cmd.ScaleCommand

  protected JComponent createToolBar() {
    JPanel buttons = new JPanel(new GridLayout(6, 1, 0, 8));
    buttons.add(new OrientationCommand(this).newButton());
    buttons.add(new UpsideDownCommand(this).newButton());
    buttons.add(new ScaleCommand(this).newButton());
    buttons.add(new ScreenshotCommand(this).newButton());
    buttons.add(new RecordingCommand(this).newButton());
    buttons.add(new PropertiesCommand(this).newButton());

    JPanel tb = new JPanel(new FlowLayout());
View Full Code Here

Examples of org.openstreetmap.josm.command.ScaleCommand

                }
            } else if (mode == Mode.scale) {
                if (c instanceof ScaleCommand && affectedNodes.equals(((ScaleCommand) c).getTransformedNodes())) {
                    ((ScaleCommand) c).handleEvent(currentEN);
                } else {
                    Main.main.undoRedo.add(new ScaleCommand(selection, currentEN));
                }
            }

            Collection<Way> ways = getCurrentDataSet().getSelectedWays();
            if (doesImpactStatusLine(affectedNodes, ways)) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.