Package com.googlecode.jumpnevolve.graphics.gui.container

Examples of com.googlecode.jumpnevolve.graphics.gui.container.BorderContainer


      selectList.addButton(new InterfaceButton(obj,
          obj.editorSkinFileName));
    }

    // BorderContainer für die Oberfläche erstellen und befüllen
    BorderContainer border = new BorderContainer();
    border.maximizeSize();

    border.add(selectList, BorderContainer.POSITION_LOW_LEFT);
    border.add(this.settingsDialog, BorderContainer.POSITION_MIDDLE);
    border.add(this.playerDialog, BorderContainer.POSITION_MIDDLE);
    border.add(this.objectSettingsPlace, BorderContainer.POSITION_MIDDLE);
    border.add(this.dataDialog, BorderContainer.POSITION_MIDDLE);
    border.add(this.exitDialog, BorderContainer.POSITION_MIDDLE);
    border.add(deleteButton, BorderContainer.POSITION_LOW_RIGHT);

    // HeadlineContainer als übergeordneten Container erstellen, beinhaltet
    // die Kopfzeile und borderContainer
    HeadlineContainer headCon = new HeadlineContainer(topGrid, border);
View Full Code Here

TOP

Related Classes of com.googlecode.jumpnevolve.graphics.gui.container.BorderContainer

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.