Package gov.nasa.arc.mct.fastplot.view.PlotControlsLayout

Examples of gov.nasa.arc.mct.fastplot.view.PlotControlsLayout.ResizersScrollPane


   
    setLayout(new GridLayout(1,1));
   
    PlotControlsLayout controlsLayout = new PlotControlsLayout();
    PlotControlsLayout.ResizersScrollPane scroller =
      new ResizersScrollPane(panel);
    scroller.setBorder(BorderFactory.createEmptyBorder());
   
    JPanel paddableOverallPanel = new JPanel(controlsLayout);
    paddableOverallPanel.add(scroller, PlotControlsLayout.MIDDLE);
    paddableOverallPanel.add(createApplyButtonPanel(panel), PlotControlsLayout.LOWER);
    add(paddableOverallPanel);
View Full Code Here


        JPanel lowerPanel = new JPanel(new FlowLayout(FlowLayout.TRAILING, 0, 0));
        lowerPanel.add(new JButton("Apply"));
        lowerPanel.add(new JButton("Reset"));

        ResizersScrollPane scroller = new ResizersScrollPane(upperPanel, innerPanel);
        panel.add(scroller, PlotControlsLayout.MIDDLE);
        panel.add(lowerPanel, PlotControlsLayout.LOWER);
        frame.add(panel);

        //Display the window.
View Full Code Here

TOP

Related Classes of gov.nasa.arc.mct.fastplot.view.PlotControlsLayout.ResizersScrollPane

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.