示例#1
0
文件: chat.py 项目: exarkun/invective
    def getGroupConversation(self, group, Class=InvectiveGroupConversation, stayHidden=False):
        """
        Retrieve an L{InvectiveGroupConversation} for the given group.

        @rtype: L{InvectiveGroupConversation}
        """
        return ChatUI.getGroupConversation(self, group, Class, stayHidden)
 def getGroupConversation(self, group, Class=StubConversation, stayHidden=0):
     return ChatUI.getGroupConversation(self, group, Class, stayHidden)
示例#3
0
文件: chat.py 项目: exarkun/invective
 def __init__(self, output):
     ChatUI.__init__(self)
     self.output = output
示例#4
0
 def getGroupConversation(self, group, stayHidden=0):
     return ChatUI.getGroupConversation(self, group,
                                        GroupConversationWindow, stayHidden)
示例#5
0
 def getGroupConversation(self,
                          group,
                          Class=StubGroupConversation,
                          stayHidden=0):
     return ChatUI.getGroupConversation(self, group, Class, stayHidden)
示例#6
0
 def getConversation(self, person, stayHidden=0):
     return ChatUI.getGroupConversation(self, person, ConversationWindow,
                                        stayHidden)
示例#7
0
 def __init__(self):
     ChatUI.__init__(self)
     self.contactsList = ContactsListGUI(self)
示例#8
0
 def getGroupConversation(self, group, stayHidden=0):
     return ChatUI.getGroupConversation(self, group,
                                         GroupConversationWindow,
                                         stayHidden)
示例#9
0
 def getConversation(self, person, stayHidden=0):
     return ChatUI.getGroupConversation(self, person, ConversationWindow,
                                         stayHidden)
示例#10
0
 def __init__(self):
     ChatUI.__init__(self)
     self.contactsList = ContactsListGUI(self)