Package extracells.gui.widget

Examples of extracells.gui.widget.DigitTextField


  @Override
  public void initGui()
  {
    super.initGui();
    textFieldPriority = new DigitTextField(fontRenderer, guiLeft + 60, guiTop + 99, 57, 10);
    textFieldPriority.setText(Integer.toString(tileentity.getPriority()));
  }
View Full Code Here


  public void initGui()
  {
    int posX = (this.width - xSize) / 2;
    int posY = (this.height - ySize) / 2;

    amountField = new DigitTextField(fontRenderer, posX + 10, posY + 40, 59, 10);
    amountField.setFocused(true);
    amountField.setEnableBackgroundDrawing(false);
    amountField.setTextColor(0xFFFFFF);

    buttonList.clear();
View Full Code Here

TOP

Related Classes of extracells.gui.widget.DigitTextField

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.