コード例 #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)
コード例 #2
0
 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
ファイル: jychat.py プロジェクト: AnthonyNystrom/YoGoMee
 def getGroupConversation(self, group, stayHidden=0):
     return ChatUI.getGroupConversation(self, group,
                                         GroupConversationWindow,
                                         stayHidden)
コード例 #9
0
ファイル: jychat.py プロジェクト: AnthonyNystrom/YoGoMee
 def getConversation(self, person, stayHidden=0):
     return ChatUI.getGroupConversation(self, person, ConversationWindow,
                                         stayHidden)
コード例 #10
0
ファイル: jychat.py プロジェクト: AnthonyNystrom/YoGoMee
 def __init__(self):
     ChatUI.__init__(self)
     self.contactsList = ContactsListGUI(self)