Examples of Layouter


Examples of com.eclipsesource.tabris.passepartout.internal.Layouter

  @Override
  protected void layout( Composite composite, boolean flushCache ) {
    attachRelayoutListener( composite );
    UIEnvironment environment = createEnvironment( composite );
    notifier.notifyListeners( environment );
    Layouter layouter = new Layouter( environment, configuration );
    InstructionExtractor extractor = new InstructionExtractor( environment );
    layoutChildren( composite, extractor, layouter, flushCache );
  }
View Full Code Here

Examples of com.eclipsesource.tabris.passepartout.internal.Layouter

  @Override
  protected void layout( Composite composite, boolean flushCache ) {
    attachRelayoutListener( composite );
    UIEnvironment environment = createEnvironment( composite );
    notifier.notifyListeners( environment );
    Layouter layouter = new Layouter( environment, configuration );
    InstructionExtractor extractor = new InstructionExtractor( environment );
    layoutChildren( composite, extractor, layouter, flushCache );
  }
View Full Code Here

Examples of com.intellij.openapi.graph.layout.Layouter

  }

  protected void setSelected(Graph2D graph, boolean state, final Project project, final AnActionEvent e) {
    final Graph2DView view = AbstractGraphAction.getGraph2DView(graph);

    final Layouter layouter = getLayouter(graph, project);

    GraphSettingsProvider.getInstance(project).getSettings(graph).setCurrentLayouter(layouter);

    doLayout(view, layouter, project);
  }
View Full Code Here

Examples of net.sourceforge.jpowergraph.layout.Layouter

              public void run() {                 
                //update graph
                Graph graph = viewer.getGraph();
                graph.setNodeFilter(controller.getNodeFilter());

                Layouter m_layouter = new Layouter(new SpringLayoutStrategy(graph));
                m_layouter.start();

                controller.addManipulatorsAndSelectionModel(viewer);
                viewer.setPopupDisplayer(new SWTPopupDisplayer(display, new DefaultSWTToolTipListener(), new DefaultSWTContextMenuListener(graph, controller.getLensSet(), ZoomControlPanel.DEFAULT_ZOOM_LEVELS, RotateControlPanel.DEFAULT_ROTATE_ANGLES)));
                controller.setPainters(viewer);
                viewer.setAntialias(true);
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.