Examples of GuiScrollbar


Examples of ModalGUI.GUIScrollbar

    label.addActionListener(GLOBAL.uiTools, "viewPattern", null);
    this.add(label);
    middleComponents.add(label);
     */
   
    patternSlider = new GUIScrollbar(this.getWidth()-10,patternPannelYPos+10,getHeight()-patternPannelYPos-20,0,200,GUISlider.VERTICAL,gui);
    this.add(patternSlider);
    bottomComponents.add(patternSlider);

   
  }
View Full Code Here

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

Examples of appeng.client.gui.widgets.GuiScrollbar

  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

Examples of appeng.client.gui.widgets.GuiScrollbar

  }

  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

Examples of appeng.client.gui.widgets.GuiScrollbar

  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

Examples of appeng.client.gui.widgets.GuiScrollbar

  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
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.