Examples of YMessagesDialog


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

    try {
      // set look and feel
      if (skin != null && !skin.equals("0")) {
        SubstanceLookAndFeel.setSkin(skin);
        // load it
        YMessagesDialog ymd = new YMessagesDialog(I18N.t("Kann Systemicons nicht laden."), "substance.systemicons");
        IconCache.loadSystmIcons(ymd);
        ymd.showOk();
      } else {
        UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
        // SwingUtilities.updateComponentTreeUI(YaFrame.get());
        SystemHelper.restart();
      }
View Full Code Here

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

      p.getData().put("scripts", ini.get("Game", "Scripts"));
    } catch (Throwable t) {
      YEx.info("Can not edit " + new File(p.getPath(), "Game.ini"), t);
    }

    YMessagesDialog mess = new YMessagesDialog(I18N.t("Probleme beim Öffnen des Projects {0}", p.getTitle()), "rgss.project.open");

    // crypted?
    if (new File(p.getPath(), "Game.rgssad").exists() || new File(p.getPath(), "Game.rgssa2").exists()) {
      mess.add(I18N.t("Encrypted Games not supported."), Priority.INFO_INT);
    }

    mess.showOk();
  }
View Full Code Here

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

   *
   * @param thread
   */
  protected void exportThread() {
    // check it
    YMessagesDialog errors = new YMessagesDialog(I18N.t("Kann wahrscheinlich {0} nicht richtig exportieren", project.getTitle()),
        "export." + getIcon());
    exportCheck(errors);

    // check it
    if (!errors.setFooter(I18N.t("Export trotzdem wagen?")).showQuestion()) {
      return;
    }

    // do it
    export();
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.