class ContactsList: (source)
| Method | __init__ |
|
| Method | contactChangedNick |
Update your contact information to reflect a change to a contact's nickname. |
| Method | registerAccountClient |
Notify the user that an account client has been signed on to. |
| Method | setContactStatus |
Inform the user that a person's status has changed. |
| Method | unregisterAccountClient |
Notify the user that an account client has been signed off or disconnected from. |
| Instance Variable | chatui |
The GUI chat client associated with this contacts list. |
| Instance Variable | clients |
The signed-on clients. |
| Instance Variable | contacts |
The contacts. |
| Instance Variable | onlineContacts |
The contacts who are currently online (have a status that is not OFFLINE). |
| Parameters | |
person:IPerson provider | The person in your contacts list whose nickname is changing. |
| newnick:str | The new nickname for this person. |
| Parameters | |
client:IClient provider | The client being added to your list of account clients. |
| Parameters | |
person:IPerson provider | The person whose status has changed. |
| Parameters | |
client:IClient provider | The client being removed from the list of account clients. |