class GroupConversation: (source)
| Method | __init__ |
|
| Method | hide |
Hide the GroupConversationWindow. |
| Method | memberChangedNick |
Change the nickname for a member of the group conversation and displays this change to the user. |
| Method | memberJoined |
Add the given member to the list of members in the group conversation and displays this to the user. |
| Method | memberLeft |
Delete the given member from the list of members in the group conversation and displays the change to the user. |
| Method | sendText |
Send text to the group. |
| Method | setGroupMembers |
Set the list of members in the group. |
| Method | setTopic |
Change the topic for the group conversation window and display this change to the user. |
| Method | show |
Display the GroupConversationWindow. |
| Method | showGroupMessage |
Display to the user a message sent to this group from the given sender. |
| Instance Variable | chatui |
The GUI chat client associated with this conversation. |
| Instance Variable | group |
The group of people that are having this conversation. |
| Instance Variable | members |
The names of the people in this conversation. |
| Parameters | |
| oldnick:str | The old nickname. |
| newnick:str | The new nickname. |
| Parameters | |
| member:str | The person joining the group conversation. |
| Parameters | |
| member:str | The person leaving the group conversation. |
| Parameters | |
| members:list of str | The names of the people that will be in this group. |
| Parameters | |
| topic:str | This group's topic. |
| author:str | The person changing the topic. |