Package com.l2client.gui.transparent

Examples of com.l2client.gui.transparent.TransparentTextField


        this.add(nameLabel);
        nameLabel.setText("Username:");
        nameLabel.setBounds(12, 12, 89, 23);
      }
      {
        nameField = new TransparentTextField();
        this.add(nameField);
        nameField.setBounds(119, 9, 168, 26);
      }
      {
        jLabel1 = new TransparentLabel();
        this.add(jLabel1);
        jLabel1.setText("Password:");
        jLabel1.setBounds(12, 45, 89, 23);
      }
      {
        passwordField = new TransparentPasswordField();
        this.add(passwordField);
        passwordField.setBounds(119, 42, 168, 26);
      }
      {
        loginButton = new TransparentButton();
        this.add(loginButton);
        loginButton.setText("Login");
        loginButton.setBounds(12, 150, 121, 31);
      }
      {
        cancelButton = new TransparentButton();
        this.add(cancelButton);
        cancelButton.setText("Cancel");
        cancelButton.setBounds(166, 150, 121, 31);
      }
      {
        transparentLabel1 = new TransparentLabel();
        this.add(transparentLabel1);
        transparentLabel1.setTransparency(transparency);
        transparentLabel1.setText("Server:");
        transparentLabel1.setBounds(12, 106, 89, 23);
      }
      {
        transparentServerField = new TransparentTextField();
        this.add(transparentServerField);
        transparentServerField.setTransparency(transparency);
        transparentServerField.setBounds(119, 103, 168, 26);
        transparentServerField.setToolTipText("<Server>:<Port> e.g localhost:2106");
        transparentServerField.setVerifyInputWhenFocusTarget(true);
View Full Code Here

TOP

Related Classes of com.l2client.gui.transparent.TransparentTextField

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.