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

Examples of com.googlecode.jumpnevolve.graphics.gui.container.ButtonList.addButton()


    this.gui = new MainGUI(this);
    this.gui.maximizeSize();

    // Liste mit Spielfiguren erstellen
    ButtonList selectList = new ButtonList(2, 10);
    selectList.addButton(new InterfaceButton(
        InterfaceFunctions.FIGURE_ROLLING_BALL, Input.KEY_1,
        "object-pictures/figure-rolling-ball.png"));
    selectList.addButton(new InterfaceButton(
        InterfaceFunctions.FIGURE_JUMPING_CROSS, Input.KEY_2,
        "object-pictures/figure-cross.png"));
View Full Code Here


    // Liste mit Spielfiguren erstellen
    ButtonList selectList = new ButtonList(2, 10);
    selectList.addButton(new InterfaceButton(
        InterfaceFunctions.FIGURE_ROLLING_BALL, Input.KEY_1,
        "object-pictures/figure-rolling-ball.png"));
    selectList.addButton(new InterfaceButton(
        InterfaceFunctions.FIGURE_JUMPING_CROSS, Input.KEY_2,
        "object-pictures/figure-cross.png"));

    // Finish-Dialog erstellen
    this.finishDialog = new Dialog();
View Full Code Here

        InterfaceFunctions.EDITOR_DELETE, "interface-icons/delete.png");

    // Auswahlliste für die GameObjects erstellen
    ButtonList selectList = new ButtonList(6, 10);
    for (GameObjects obj : GameObjects.values()) {
      selectList.addButton(new InterfaceButton(obj,
          obj.editorSkinFileName));
    }

    // BorderContainer für die Oberfläche erstellen und befüllen
    BorderContainer border = new BorderContainer();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.