Package logisticspipes.gui.popup

Examples of logisticspipes.gui.popup.GuiRequestPopup


  public void handleRequestAnswer(Collection<ItemIdentifierStack> items, boolean error, ISubGuiControler control, EntityPlayer player) {
    while(control.hasSubGui()) {
      control = control.getSubGui();
    }
    if (error) {
      control.setSubGui(new GuiRequestPopup(_entityPlayer, "You are missing:", items));
    } else {
      control.setSubGui(new GuiRequestPopup(_entityPlayer, "Request successful!", items));
    }
  }
View Full Code Here


  public void handleSimulateAnswer(Collection<ItemIdentifierStack> used, Collection<ItemIdentifierStack> missing, ISubGuiControler control, EntityPlayer player) {
    while(control.hasSubGui()) {
      control = control.getSubGui();
    }
    control.setSubGui(new GuiRequestPopup(_entityPlayer, "Components: ", used, "Missing: ", missing));
  }
View Full Code Here

  public void handleRequestAnswer(Collection<ItemIdentifierStack> items, boolean error, ISubGuiControler control, EntityPlayer player) {
    while(control.hasSubGui()) {
      control = control.getSubGui();
    }
    if (error) {
      control.setSubGui(new GuiRequestPopup(_entityPlayer, "You are missing:", items));
    } else {
      control.setSubGui(new GuiRequestPopup(_entityPlayer, "Request successful!", items));
    }
  }
View Full Code Here

  public void handleSimulateAnswer(Collection<ItemIdentifierStack> used, Collection<ItemIdentifierStack> missing, ISubGuiControler control, EntityPlayer player) {
    while(control.hasSubGui()) {
      control = control.getSubGui();
    }
    control.setSubGui(new GuiRequestPopup(_entityPlayer, "Components: ", used, "Missing: ", missing));
  }
View Full Code Here

TOP

Related Classes of logisticspipes.gui.popup.GuiRequestPopup

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.