Examples of YHeader


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

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()), 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

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

     
      // read
      help = HelpCenterManagement.get(id);
     
      // build layout
      header = new YHeader(help.getTitle(), help.getIcon() + "_help");
      add(header, BorderLayout.NORTH);
     
      editor = new JXEditorPane(help.getUrl());
      editor.setEditable(false);
      YRightClickMenuText.install(editor);
View Full Code Here

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

      }
    });
   
    // build layout
    JPanel left = new JPanel(new BorderLayout());
    left.add(new YHeader(title, icon), BorderLayout.NORTH);
    left.add(gl, BorderLayout.CENTER);
   
    // show
    if (YDialog.show(title, YFactory.createHorizontPanel(left, h, "newform." + helpID), true) == false) {
      return null;
View Full Code Here

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

    // add img
    img = new ImgComp();
    add(img, BorderLayout.WEST);

    // build header
    header = new YHeader("", "yaams");

    // load layout
    panel = new JPanel(new GridLayout(1, 1));

    // add main
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.