Package lupos.gui.operatorgraph.visualeditor.visualrif.util

Examples of lupos.gui.operatorgraph.visualeditor.visualrif.util.ScrollPane


    this.ruleEditorPane = new RuleEditorPane(this.visualRifEditor.getStatusBar(),this.visualRifEditor);
    this.ruleEditorPane.setVisualRifEditor(this.visualRifEditor);

    final JPanel leftPanel = new JPanel(new BorderLayout());
    // this.documentEditorPane.getVisualGraphs().get(0)
    leftPanel.add(new ScrollPane(this.ruleEditorPane.getVisualGraphs().get(
        0)));

    final JPanel rightPanel = new JPanel(new BorderLayout());
    // this.documentEditorPane.getVisualGraphs().get(1)
     rightPanel.add(new
     ScrollPane(this.ruleEditorPane.getVisualGraphs().get(1)));



    final JSplitPane splitPaneCanvas = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);
View Full Code Here



    this.setVisualRifEditor(visualRifEditor);
    this.setDocumentContainer(documentContainer);

    this.add("Explorer",new ScrollPane(this.generateComponent()));

  }
View Full Code Here

      this.documentEditorPane = new DocumentEditorPane(this.visualRifEditor);
      this.documentEditorPane.setDocumentName(this.documentName);


      final JPanel topPanel = new JPanel(new BorderLayout());
      topPanel.add(new ScrollPane(this.documentEditorPane.getVisualGraphs().get(0)));

      final JPanel bottomPanel = new JPanel(new BorderLayout());
      bottomPanel.add(new ScrollPane(new JTextField()));

      final JSplitPane splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT);
      splitPane.setContinuousLayout(true);
      splitPane.setOneTouchExpandable(true);
      splitPane.setResizeWeight(0.8);
View Full Code Here

        this.groupEditorPane.setVisualRifEditor(this.visualRifEditor);
        this.groupEditorPane.setGroupName(this.groupName);
       
       
        JPanel topPanel = new JPanel(new BorderLayout());
        topPanel.add(new ScrollPane(this.groupEditorPane.getVisualGraphs().get(0)));

        JPanel bottomPanel = new JPanel(new BorderLayout());
        bottomPanel.add(new ScrollPane(new JTextField()));

        JSplitPane splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT);
        splitPane.setContinuousLayout(true);
        splitPane.setOneTouchExpandable(true);
        splitPane.setResizeWeight(0.8);
View Full Code Here

TOP

Related Classes of lupos.gui.operatorgraph.visualeditor.visualrif.util.ScrollPane

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.