Exemplo n.º 1
0
 def showMessagePicker(self, phone, callback):
     self.phone = phone
     self.callback = callback
     import CatalogChatItemPicker
     self.messagePicker = CatalogChatItemPicker.CatalogChatItemPicker(
         self.__handlePickerDone, self.customIndex)
     self.messagePicker.show()
Exemplo n.º 2
0
 def showMessagePickerOnAccept(self, mailbox, index, callback):
     self.mailbox = mailbox
     self.callback = callback
     self.index = index
     import CatalogChatItemPicker
     self.messagePicker = CatalogChatItemPicker.CatalogChatItemPicker(self.__handlePickerOnAccept, self.customIndex)
     self.messagePicker.show()
Exemplo n.º 3
0
 def showMessagePicker(self, phone, callback):
     # we will need these later
     self.phone = phone
     self.callback = callback
     # pop up a toontown dialog with message picker
     import CatalogChatItemPicker
     self.messagePicker = CatalogChatItemPicker.CatalogChatItemPicker(self.__handlePickerDone,
                                                                      self.customIndex)
     self.messagePicker.show()
Exemplo n.º 4
0
 def showMessagePickerOnAccept(self, mailbox, index, callback):
     # we will need these later
     self.mailbox = mailbox
     self.callback = callback
     self.index = index
     # pop up a toontown dialog with message picker
     import CatalogChatItemPicker
     self.messagePicker = CatalogChatItemPicker.CatalogChatItemPicker(self.__handlePickerOnAccept,
                                                                      self.customIndex)
     self.messagePicker.show()