Package mdes.slick.sui

Examples of mdes.slick.sui.TextArea


    this.setTitle(translated.get(34));
    this.setLocation(128, 256);
    this.setBackground(m_bg);
    this.setResizable(false);
   
    m_info = new TextArea();
    m_info.setSize(280, 320);
    m_info.setLocation(4, 4);
    m_info.setWrapEnabled(true);
    m_info.setText(translated.get(35)+"\n"+
        translated.get(36)+"\n"+
View Full Code Here


      }

      Label bg = new Label(this.bg);
      bg.setSize(400, 100);
      bg.setLocation(0, -11);
      speechDisplay = new TextArea();
     
      speechDisplay.setFocusable(false);
      speechDisplay.setSize(384, 100);
      speechDisplay.setLocation(16, 5);
      speechDisplay.setBorderRendered(false);
View Full Code Here

      this.setForeground(new Color(255, 255, 255));
          
      this.setLocation(200, 0);
      this.setResizable(false);
          
      helptext = new TextArea();
      helptext.setSize(355, 455);
      //setText Mover stuff to help panel.
      helptext.setText(translated.get(21) +
          translated.get(22) +
          translated.get(23) +
View Full Code Here

    this.setTitle(translated.get(18));
    this.setLocation(128, 256);
    this.setBackground(m_bg);
    this.setResizable(false);
   
    m_info = new TextArea();
    m_info.setSize(280, 320);
    m_info.setLocation(4, 4);
    m_info.setWrapEnabled(true);
    m_info.setText(translated.get(33));
    m_info.setFont(GameClient.getFontSmall());
View Full Code Here

TOP

Related Classes of mdes.slick.sui.TextArea

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.