def show_menu(self, mode="tweet"): position = self.window.get_position() if mode == "tweet": text = self.window.get_text() text = text[:position] try: pattern = text.split()[-1] except IndexError: output.speak(_(u"You have to start writing")) return if pattern.startswith("@") == True: menu = wx_menu.menu(self.window.text, pattern[1:], mode=mode) users = self.db.get_users(pattern[1:]) if len(users) > 0: menu.append_options(users) self.window.popup_menu(menu) menu.destroy() else: output.speak(_(u"There are no results in your users database")) else: output.speak(_(u"Autocompletion only works for users.")) elif mode == "dm": text = self.window.get_user() try: pattern = text.split()[-1] except IndexError: output.speak(_(u"You have to start writing")) return menu = wx_menu.menu(self.window.cb, pattern, mode=mode) users = self.db.get_users(pattern) if len(users) > 0: menu.append_options(users) self.window.popup_menu(menu) menu.destroy() else: output.speak(_(u"There are no results in your users database"))
def show_menu(self): position = self.window.text.GetInsertionPoint() text = self.window.text.GetValue() text = text[:position] try: pattern = text.split()[-1] except IndexError: output.speak(_(u"You have to start writing")) return if pattern.startswith("@") == True: db = storage.storage() menu = wx_menu.menu(self.window.text, pattern[1:]) users = db.get_users(pattern[1:]) if len(users) > 0: menu.append_options(users) self.window.PopupMenu(menu, self.window.text.GetPosition()) menu.Destroy() else: output.speak(_(u"There are not results in your users database")) else: output.speak(_(u"Autocompletion only works for users."))
def show_menu(self): position = self.window.text.GetInsertionPoint() text = self.window.text.GetValue() text = text[:position] try: pattern = text.split()[-1] except IndexError: output.speak(_(u"You have to start writing")) return if pattern.startswith("@") == True: db = storage.storage() menu = wx_menu.menu(self.window.text, pattern[1:]) users = db.get_users(pattern[1:]) if len(users) > 0: menu.append_options(users) self.window.PopupMenu(menu, self.window.text.GetPosition()) menu.Destroy() else: output.speak( _(u"There are not results in your users database")) else: output.speak(_(u"Autocompletion only works for users."))