コード例 #1
0
ファイル: Interface.py プロジェクト: gitter-badger/gmusic
class Interface(object):
    """This is the command line interface. It handles
    all user input and sends to the processor as necessary"""

    def __init__(self):
        """Initialization"""
        self.content_manager = ContentManager()
        self.display = CursedMenu(self.content_manager)

    def __start__(self):
        """Our default running loop which governs the UI"""
        self.content_manager.load()
        self.display.start()
コード例 #2
0
ファイル: Interface.py プロジェクト: gitter-badger/gmusic
 def __init__(self):
     """Initialization"""
     self.content_manager = ContentManager()
     self.display = CursedMenu(self.content_manager)