Package appeng.client.gui.widgets

Examples of appeng.client.gui.widgets.GuiNumberBox


    }

    if ( OriginalGui != null )
      buttonList.add( originalGuiBtn = new GuiTabButton( this.guiLeft + 154, this.guiTop, myIcon, myIcon.getDisplayName(), itemRender ) );

    priority = new GuiNumberBox( fontRendererObj, this.guiLeft + 62, this.guiTop + 57, 59, fontRendererObj.FONT_HEIGHT, Long.class );
    priority.setEnableBackgroundDrawing( false );
    priority.setMaxStringLength( 16 );
    priority.setTextColor( 0xFFFFFF );
    priority.setVisible( true );
    priority.setFocused( true );
View Full Code Here


  @Override
  public void initGui()
  {
    super.initGui();

    level = new GuiNumberBox( fontRendererObj, this.guiLeft + 24, this.guiTop + 43, 79, fontRendererObj.FONT_HEIGHT, Long.class );
    level.setEnableBackgroundDrawing( false );
    level.setMaxStringLength( 16 );
    level.setTextColor( 0xFFFFFF );
    level.setVisible( true );
    level.setFocused( true );
View Full Code Here

    }

    if ( OriginalGui != null )
      buttonList.add( originalGuiBtn = new GuiTabButton( this.guiLeft + 154, this.guiTop, myIcon, myIcon.getDisplayName(), itemRender ) );

    amountToCraft = new GuiNumberBox( fontRendererObj, this.guiLeft + 62, this.guiTop + 57, 59, fontRendererObj.FONT_HEIGHT, Integer.class );
    amountToCraft.setEnableBackgroundDrawing( false );
    amountToCraft.setMaxStringLength( 16 );
    amountToCraft.setTextColor( 0xFFFFFF );
    amountToCraft.setVisible( true );
    amountToCraft.setFocused( true );
View Full Code Here

TOP

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

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.