Package net.java.dev.designgridlayout

Examples of net.java.dev.designgridlayout.RowGroup


        panelSolutionText.add(this.jtextSolution, BorderLayout.CENTER);
        final JScrollPane scrollSolutionText = new JScrollPane(this.jtextSolution, ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
        scrollSolutionText.setPreferredSize(new Dimension(10, 10)); //workaround for layout problem ?!?!
        scrollSolutionText.setMinimumSize(new Dimension(10, 10));   //workaround for layout problem ?!?!
       
        final RowGroup playSolutionGroup = new RowGroup();
        final JCheckBox groupBox = new JCheckBox("show computed solutions");
        groupBox.addItemListener(new ShowHideAction(playSolutionGroup));
       
        final JPanel playPanel = new JPanel();
        final DesignGridLayout playLayout = new DesignGridLayout(playPanel);
View Full Code Here

TOP

Related Classes of net.java.dev.designgridlayout.RowGroup

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.