Package com.sshtools.ui.swing

Examples of com.sshtools.ui.swing.FolderBar


    public void setMainInsets(Insets insets) {
        pageContainer.setBorder(insets == null ? null : BorderFactory.createEmptyBorder(insets.top, insets.left, insets.bottom, insets.right));
    }
   
    void createComponents() {
        titleBar = new FolderBar();
        titleBar.setFont(titleBar.getFont().deriveFont(Font.BOLD).deriveFont((float)(titleBar.getFont().getSize() * 2)));
        pageContainer = new JPanel(pageCardLayout = new CardLayout());
        JPanel buttonBar = new JPanel(new FlowLayout(FlowLayout.RIGHT, 4, 0));
        buttonBar.setBorder(BorderFactory.createEmptyBorder(4, 0, 4, 0));
        buttonBar.add(new JButton(cancelAction));
View Full Code Here

TOP

Related Classes of com.sshtools.ui.swing.FolderBar

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.