Package appeng.client.gui.widgets

Examples of appeng.client.gui.widgets.GuiScrollbar


  protected GuiCraftingCPU(ContainerCraftingCPU container) {
    super( container );
    this.ySize = 184;
    this.xSize = 238;
    myScrollBar = new GuiScrollbar();
  }
View Full Code Here


  private MEGuiTextField searchField;

  public GuiInterfaceTerminal(InventoryPlayer inventoryPlayer, PartMonitor te)
  {
    super( new ContainerInterfaceTerminal( inventoryPlayer, te ) );
    this.myScrollBar = new GuiScrollbar();
    this.xSize = 195;
    this.ySize = 222;
  }
View Full Code Here

  }

  public GuiMEMonitorable(InventoryPlayer inventoryPlayer, ITerminalHost te, ContainerMEMonitorable c) {

    super( c );
    myScrollBar = new GuiScrollbar();
    repo = new ItemRepo( myScrollBar, this );

    xSize = 185;
    ySize = 204;
View Full Code Here

  public GuiNetworkStatus(InventoryPlayer inventoryPlayer, INetworkTool te) {
    super( new ContainerNetworkStatus( inventoryPlayer, te ) );
    this.ySize = 153;
    this.xSize = 195;
    myScrollBar = new GuiScrollbar();
    repo = new ItemRepo( myScrollBar, this );
    repo.rowSize = 5;
  }
View Full Code Here

  public GuiCraftConfirm(InventoryPlayer inventoryPlayer, ITerminalHost te) {
    super( new ContainerCraftConfirm( inventoryPlayer, te ) );
    xSize = 238;
    ySize = 206;
    myScrollBar = new GuiScrollbar();

    ccc = (ContainerCraftConfirm) this.inventorySlots;

    if ( te instanceof WirelessTerminalGuiObject )
      OriginalGui = GuiBridge.GUI_WIRELESS_TERM;
View Full Code Here

TOP

Related Classes of appeng.client.gui.widgets.GuiScrollbar

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.