Poodletooth-iLand/otp/speedchat/SCCustomMenu.py

23 lines
615 B
Python
Raw Normal View History

2015-03-03 16:10:12 -06:00
from SCCustomTerminal import SCCustomTerminal
from SCMenu import SCMenu
from otp.otpbase.OTPLocalizer import CustomSCStrings
class SCCustomMenu(SCMenu):
def __init__(self):
SCMenu.__init__(self)
self.accept('customMessagesChanged', self.__customMessagesChanged)
self.__customMessagesChanged()
def __customMessagesChanged(self):
self.clearMenu()
try:
lt = base.localAvatar
except:
return
for msgIndex in lt.customMessages:
if msgIndex in CustomSCStrings:
self.append(SCCustomTerminal(msgIndex))