Package de.yaams.core.helper.gui

Examples of de.yaams.core.helper.gui.YHeader


  private final ArrayList<BaseTab> tabs;

  public ConfigWindow() {
    JFrame f = new JFrame(I18N.t("Options"));
    f.setLayout(new BorderLayout());
    f.add(new YHeader(Yrgss.game.getName(), getIcon()), "North");

    this.tabs = new ArrayList<BaseTab>();
    this.tabs.add(new GameInfo());
    this.tabs.add(new ConfigTab());
    this.tabs.add(new TecInfo());
View Full Code Here


  private final ArrayList<BaseTab> tabs;

  public ConfigWindow() {
    JFrame f = new JFrame(I18N.t("Options"));
    f.setLayout(new BorderLayout());
    f.add(new YHeader(Yrgss.game.getName(), getIcon()), BorderLayout.NORTH);

    this.tabs = new ArrayList<BaseTab>();
    this.tabs.add(new GameInfo());
    this.tabs.add(new ConfigTab());
    this.tabs.add(new TecInfo());
View Full Code Here

TOP

Related Classes of de.yaams.core.helper.gui.YHeader

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.