Package com.googlecode.jumpnevolve.graphics.gui

Examples of com.googlecode.jumpnevolve.graphics.gui.MainGUI


  private boolean menuButtonCreated = false;

  public Player(Level parent, Vector startPosition, String avaiableFigures,
      String startFigure, boolean cameraOnPlayer) {
    this.parent = parent;
    this.gui = new MainGUI(this);
    this.gui.maximizeSize();

    // Liste mit Spielfiguren erstellen
    ButtonList selectList = new ButtonList(2, 10);
    selectList.addButton(new InterfaceButton(
View Full Code Here


  public Menu() {
    this("default");
  }

  public Menu(String background) {
    this.gui = new MainGUI(this);
    this.mainCon = new GridContainer(1, 1, GridContainer.MODUS_X_LEFT,
        GridContainer.MODUS_Y_UP);
    this.gui.setMainContainer(mainCon);
    this.setBackground(background);
  }
View Full Code Here

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

    // MainGUI erstellen, MainContainer ist der HeadlineContainer
    this.gui = new MainGUI(this);
    this.gui.setMainContainer(headCon);

    // Kamera setzen
    this.setCamera(new EditorCamera(this));
    this.setCameraPosition(new Vector(this.getWidth(), this.getHeight())
View Full Code Here

TOP

Related Classes of com.googlecode.jumpnevolve.graphics.gui.MainGUI

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.