Examples of MEGuiTextField


Examples of appeng.client.gui.widgets.MEGuiTextField

    myScrollBar.setLeft( 175 );
    myScrollBar.setHeight( 106 );
    myScrollBar.setTop( 18 );

    searchField = new MEGuiTextField( fontRendererObj, this.guiLeft + Math.max( 104, offsetX ), this.guiTop + 4, 65, 12 );
    searchField.setEnableBackgroundDrawing( false );
    searchField.setMaxStringLength( 25 );
    searchField.setTextColor( 0xFFFFFF );
    searchField.setVisible( true );
    searchField.setFocused( true );
View Full Code Here

Examples of appeng.client.gui.widgets.MEGuiTextField

    {
      buttonList.add( terminalStyleBox = new GuiImgButton( this.guiLeft - 18, offset, Settings.TERMINAL_STYLE, AEConfig.instance.settings
          .getSetting( Settings.TERMINAL_STYLE ) ) );
    }

    searchField = new MEGuiTextField( fontRendererObj, this.guiLeft + Math.max( 80, offsetX ), this.guiTop + 4, 90, 12 );
    searchField.setEnableBackgroundDrawing( false );
    searchField.setMaxStringLength( 25 );
    searchField.setTextColor( 0xFFFFFF );
    searchField.setVisible( true );
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.