Package pu.web.client.gui

Examples of pu.web.client.gui.TextField


    mLoginStatus = loginStatus;
  }
 
  private void setupControls()
  {
    tfUsername = new TextField(451, 453, 160, 20);
    tfUsername.setFontColor(0, 0, 0);
    tfUsername.setOnKeyDownListener(mOnKeyDownListener);
    addChild(tfUsername);
    tfUsername.setFocus(true);
   
    tfPassword = new TextField(451, 515, 160, 20);
    tfPassword.setFontColor(0, 0, 0);
    tfPassword.setPassword(true);
    tfPassword.setOnKeyDownListener(mOnKeyDownListener);
    addChild(tfPassword);
   
View Full Code Here


  {
    super(x, y, width, height);
   
    mImageBase = PUWeb.resources().getGuiImage(GuiImages.IMG_GUI_WORLD_BOTTOMBASE);
   
    mChatInput = new TextField(10, 694, 349, 18);
    mChatInput.setFontColor(0, 0, 0);
    mChatInput.setOnKeyDownListener(mChatInputKeydownListener);
    PUWeb.gui().getRoot().focusElement(mChatInput);
    addChild(mChatInput);
   
View Full Code Here

TOP

Related Classes of pu.web.client.gui.TextField

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.