예제 #1
0
    def __init__(self):

        #building of the configuration
        self.config = TiseanConfig()
        #building of the view
        self.view = TiseanView(self)

        #building of command menu option widgets
        tiseanCommandMenu = TiseanCommandMenu(self, self.config)
        self.view.command_menu_setup(tiseanCommandMenu)

        #display of the main elements of the view on screen
        self.view.show()

        self.thread = None