Examples of zoom()


Examples of org.jfree.chart.plot.PolarPlot.zoom()

    public void actionPerformed(ActionEvent event) {
       String command = event.getActionCommand();

       if (command.equals(POLAR_ZOOM_IN_ACTION_COMMAND)) {
           PolarPlot plot = (PolarPlot) getChart().getPlot();
           plot.zoom(0.5);
       }
       else if (command.equals(POLAR_ZOOM_OUT_ACTION_COMMAND)) {
           PolarPlot plot = (PolarPlot) getChart().getPlot();
           plot.zoom(2.0);
       }
View Full Code Here

Examples of org.jfree.chart.plot.PolarPlot.zoom()

           PolarPlot plot = (PolarPlot) getChart().getPlot();
           plot.zoom(0.5);
       }
       else if (command.equals(POLAR_ZOOM_OUT_ACTION_COMMAND)) {
           PolarPlot plot = (PolarPlot) getChart().getPlot();
           plot.zoom(2.0);
       }
       else if (command.equals(POLAR_AUTO_RANGE_ACTION_COMMAND)) {
           PolarPlot plot = (PolarPlot) getChart().getPlot();
           plot.getAxis().setAutoRange(true);
       }
View Full Code Here

Examples of org.jfree.chart.plot.PolarPlot.zoom()

    public void actionPerformed(ActionEvent event) {
       String command = event.getActionCommand();
      
       if (command.equals(POLAR_ZOOM_IN_ACTION_COMMAND)) {
           PolarPlot plot = (PolarPlot) getChart().getPlot();
           plot.zoom(0.5);
       }
       else if (command.equals(POLAR_ZOOM_OUT_ACTION_COMMAND)) {
           PolarPlot plot = (PolarPlot) getChart().getPlot();
           plot.zoom(2.0);
       }
View Full Code Here

Examples of org.jfree.chart.plot.PolarPlot.zoom()

           PolarPlot plot = (PolarPlot) getChart().getPlot();
           plot.zoom(0.5);
       }
       else if (command.equals(POLAR_ZOOM_OUT_ACTION_COMMAND)) {
           PolarPlot plot = (PolarPlot) getChart().getPlot();
           plot.zoom(2.0);
       }
       else if (command.equals(POLAR_AUTO_RANGE_ACTION_COMMAND)) {
           PolarPlot plot = (PolarPlot) getChart().getPlot();
           plot.getAxis().setAutoRange(true);
       }
View Full Code Here

Examples of org.jpedal.examples.simpleviewer.gui.SwingGUI.zoom()

        int selection = scaling.getSelectedIndex();
        if(selection!=-1){
          SwingGUI swing = ((SwingGUI)decode_pdf.getExternalHandler(Options.SwingContainer));
                    if(swing!=null){
              swing.setSelectedComboIndex(Commands.SCALING, selection);
              swing.zoom(false);
                    }
        }
      }
      //<end-thin><end-adobe>
    }else if(name == PdfDictionary.FullScreen){
View Full Code Here

Examples of org.locationtech.udig.project.ui.commands.TransformDrawCommand.zoom()

                }
                transformDrawCommand.fixPoint(fixedPoint);
                this.fixedPoint = context.pixelToWorld(fixedPoint.x, fixedPoint.y);
                targetZoom = context.calculateZoomLevel(previousZoom, zoomChange,this.fixedPoint,false, change != 0);
                if(Math.abs(targetZoom - previousZoom) > 0.0001) {
                  transformDrawCommand.zoom(targetZoom, targetZoom);
                  context.sendASyncCommand(transformDrawCommand);
                }
            } else {
        targetZoom = context.calculateZoomLevel(previousZoom,zoomChange,this.fixedPoint,false, change != 0);
                command.zoom(targetZoom, targetZoom);
View Full Code Here

Examples of org.woped.editor.controller.vc.EditorVC.zoom()

        editor.updateNet();
        editor.getEditorPanel().autoRefreshAnalysisBar();
        editor.setSaved(false);
        break;
      case AbstractViewEvent.ZOOM_IN:
        editor.zoom(0.1, false);
        break;
      case AbstractViewEvent.ZOOM_OUT:
        editor.zoom(-0.1, false);
        break;
      case AbstractViewEvent.ZOOM_ABSOLUTE:
View Full Code Here

Examples of org.woped.editor.controller.vc.EditorVC.zoom()

        break;
      case AbstractViewEvent.ZOOM_IN:
        editor.zoom(0.1, false);
        break;
      case AbstractViewEvent.ZOOM_OUT:
        editor.zoom(-0.1, false);
        break;
      case AbstractViewEvent.ZOOM_ABSOLUTE:
        editor.zoom(Integer.parseInt((String) event.getData()), true);
        break;
      case AbstractViewEvent.COLORING:
View Full Code Here

Examples of org.woped.editor.controller.vc.EditorVC.zoom()

        break;
      case AbstractViewEvent.ZOOM_OUT:
        editor.zoom(-0.1, false);
        break;
      case AbstractViewEvent.ZOOM_ABSOLUTE:
        editor.zoom(Integer.parseInt((String) event.getData()), true);
        break;
      case AbstractViewEvent.COLORING:
        editor.toggleUnderstandColoring();       
        break;
      case AbstractViewEvent.OPEN_TOKENGAME:
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.