Package org.pokenet.client.ui.frames

Examples of org.pokenet.client.ui.frames.ChatDialog


   
    m_battleManager = new BattleManager();
   
    m_display = display;
   
    m_chat = new ChatDialog();
    m_requestsForm = new RequestDialog();

    m_friendsList = new FriendListDialog();
    m_friendsList.setVisible(false);
    m_display.add(m_friendsList);
View Full Code Here


    public void toggleChat(){
      if (m_chat.isVisible()) {
        m_chat.setVisible(false);
    } else{
      if(m_chat==null)
        m_chat = new ChatDialog();
      m_chat.setLocation(0, GameClient.getInstance().getDisplay().getHeight() - m_chat.getHeight());
      m_chat.setVisible(true);
   
    }
View Full Code Here

TOP

Related Classes of org.pokenet.client.ui.frames.ChatDialog

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.