Package com.lightcrafts.ui.browser.ctrls

Examples of com.lightcrafts.ui.browser.ctrls.NavigationPane


    private JPanel sort;

    public BrowserTest() {

        tree = new FolderBrowserPane();
        buttons = new NavigationPane(tree); // new NavigationButtons(tree);
        sort = new JPanel(new FlowLayout());

        images = new CenteringScrollPane();
        images.setHorizontalScrollBarPolicy(
            JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS
View Full Code Here


    public static void main(String[] args) {
        FolderBrowserPane browser = new FolderBrowserPane();
        browser.goToPicturesFolder();
       
        NavigationPane buttons = new NavigationPane(browser); // new NavigationButtons(browser);

        JFrame frame = new JFrame("Test");
        frame.getContentPane().setLayout(new BorderLayout());
        frame.getContentPane().add(browser);
        frame.getContentPane().add(buttons, BorderLayout.NORTH);
View Full Code Here

TOP

Related Classes of com.lightcrafts.ui.browser.ctrls.NavigationPane

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.