Package org.solarus.editor.gui.tree

Examples of org.solarus.editor.gui.tree.QuestTree


        GuiTools.setLookAndFeel();

        tabs = new EditorTabs();
        tabs.addChangeListener(this);

        questTree = new QuestTree(this);
        questTree.setVisible(true);
        final JScrollPane questTreeScroller = new JScrollPane(questTree);
        questTreeScroller.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
        questTreeScroller.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
        final JSplitPane mainSplitter = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, true, questTreeScroller, tabs);
View Full Code Here

TOP

Related Classes of org.solarus.editor.gui.tree.QuestTree

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.