Package voxo.client.listeners

Examples of voxo.client.listeners.SelectingUserListener


    this.size = 12;

    messageHolder = new CustomPanel(u);
    messageHolder.setLayout(new BoxLayout(messageHolder, BoxLayout.PAGE_AXIS));
    messageHolder.setBackground(Color.LIGHT_GRAY);
    messageHolder.addMouseListener(new SelectingUserListener(mainView));
   
    JPanel chatOptionPanel = new JPanel();
    chatOptionPanel.setBorder(new EtchedBorder(EtchedBorder.LOWERED, null, null));
    this.add(chatOptionPanel, BorderLayout.SOUTH);
    chatOptionPanel.setLayout(new BorderLayout(0, 0));
View Full Code Here


    // add each user into the list
    for (User u : alContacts) {

      // add user panel to main branch
      CustomContact cc = new CustomContact(u, c);
      cc.addMouseListener(new SelectingUserListener(this));
      getContactListHash().put(u.getUsername(), cc);
      getContactList().add(cc);

      // create new chatWindow
      if (!contactHash.containsKey(u.getUsername())) {
View Full Code Here

TOP

Related Classes of voxo.client.listeners.SelectingUserListener

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.