24 lines
669 B
Python
24 lines
669 B
Python
from .SCMenu import SCMenu
|
|
from .SCCustomTerminal import SCCustomTerminal
|
|
from otp.otpbase.OTPLocalizer import CustomSCStrings
|
|
|
|
class SCCustomMenu(SCMenu):
|
|
|
|
def __init__(self):
|
|
SCMenu.__init__(self)
|
|
self.accept('customMessagesChanged', self.__customMessagesChanged)
|
|
self.__customMessagesChanged()
|
|
|
|
def destroy(self):
|
|
SCMenu.destroy(self)
|
|
|
|
def __customMessagesChanged(self):
|
|
self.clearMenu()
|
|
try:
|
|
lt = base.localAvatar
|
|
except:
|
|
return
|
|
|
|
for msgIndex in lt.customMessages:
|
|
if msgIndex in CustomSCStrings:
|
|
self.append(SCCustomTerminal(msgIndex))
|