Package gui

Examples of gui.ChatWindow


    if( ! contact.isInChatWindow() || settings.oneChatWindowPerChatPartner){
      contact.setIsInChatWindow(true);

      if(settings.oneChatWindowPerChatPartner){

        ChatWindowInterface chatWindow = new ChatWindow(new Rectangle(settings.chatWindowBounds.x,
            settings.chatWindowBounds.y,
            settings.chatWindowBounds.width,
            settings.chatWindowBounds.height), this);
        chatWindows.add(chatWindow);
        chatWindow.addContact(contact);
      }else{

        if(chatWindows.size() > 0){
          chatWindows.get(chatWindows.size() - 1).addContact(contact);
        }else{
          ChatWindowInterface chatWindow = new ChatWindow(new Rectangle(settings.chatWindowBounds.x,
              settings.chatWindowBounds.y,
              settings.chatWindowBounds.width,
              settings.chatWindowBounds.height), this);
          chatWindows.add(chatWindow);
          chatWindow.addContact(contact);
        }
      }
    }
  }
View Full Code Here

TOP

Related Classes of gui.ChatWindow

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.