Package ch.rakudave.jnetmap.view.components

Examples of ch.rakudave.jnetmap.view.components.TabPanel


    }
    setDefaultCloseOperation(DO_NOTHING_ON_CLOSE);
    setIconImage(Icons.get("jnetmap").getImage());
    addWindowListener(Listeners.windowQuitListener());
    // SplitPane (Map | Sidebar)
    mapPanel = new TabPanel(JTabbedPane.TOP, JTabbedPane.SCROLL_TAB_LAYOUT, this);
    sideBar = new JTabbedPane(JTabbedPane.TOP, JTabbedPane.WRAP_TAB_LAYOUT);
    splitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, true, mapPanel, sideBar);
    splitPane.setDividerSize(3);
    setSidebarVisible(Settings.getBoolean("mapview.sidebar.visible", true));
    add(splitPane, BorderLayout.CENTER);
View Full Code Here

TOP

Related Classes of ch.rakudave.jnetmap.view.components.TabPanel

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.