class documentation
A GUI object that displays a contacts list.
Method | __init__ |
No summary |
Method | contact |
Update your contact information to reflect a change to a contact's nickname. |
Method | register |
Notify the user that an account client has been signed on to. |
Method | set |
Inform the user that a person's status has changed. |
Method | unregister |
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 | online |
The contacts who are currently online (have a status that is not OFFLINE). |
Update your contact information to reflect a change to a contact's nickname.
Parameters | |
person:IPerson provider | The person in your contacts list whose nickname is changing. |
newnick:str | The new nickname for this person. |
Notify the user that an account client has been signed on to.
Parameters | |
client:IClient provider | The client being added to your list of account clients. |
Inform the user that a person's status has changed.
Parameters | |
person:IPerson provider | The person whose status has changed. |
Notify the user that an account client has been signed off or disconnected from.
Parameters | |
client:IClient provider | The client being removed from the list of account clients. |