twisted.words.im.basechat.GroupConversation
class documentationtwisted.words.im.basechat
View Source
(View In Hierarchy)
A GUI window of a conversation with a group of people.
Instance Variable | chatui | The GUI chat client associated with this conversation. (type: ChatUI ) |
Instance Variable | group | The group of people that are having this conversation. (type: IGroup
provider) |
Instance Variable | members | The names of the people in this conversation. (type: list of str ) |
Method | __init__ | |
Method | show | Display the GroupConversationWindow. |
Method | hide | Hide the GroupConversationWindow. |
Method | sendText | Send text to the group. |
Method | showGroupMessage | Display to the user a message sent to this group from the given sender. |
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 | memberJoined | Add the given member to the list of members in the group conversation and displays this to the user. |
Method | memberChangedNick | Change the nickname for a member of the group conversation and displays this change 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. |
Display to the user a message sent to this group from the given sender.
Parameters | sender | The person sending the message. (type: str ) |
text | The sent message. (type: str ) | |
metadata | Metadata associated with this message. (type: dict ) |
Set the list of members in the group.
Parameters | members | The names of the people that will be in this group. (type: list of str ) |
Change the topic for the group conversation window and display this change to the user.
Parameters | topic | This group's topic. (type: str ) |
author | The person changing the topic. (type: str ) |
Add the given member to the list of members in the group conversation and displays this to the user.
Parameters | member | The person joining the group conversation. (type: str ) |
Change the nickname for a member of the group conversation and displays this change to the user.
Parameters | oldnick | The old nickname. (type: str ) |
newnick | The new nickname. (type: str ) |
Delete the given member from the list of members in the group conversation and displays the change to the user.
Parameters | member | The person leaving the group conversation. (type: str ) |