X-Git-Url: https://scm.cri.ensmp.fr/git/minwii.git/blobdiff_plain/b54e41841b3beb6bafd351077f3bddef0aaa6abb..55fc862ddb0c20e92bbd88621f92525131b5b215:/src/app/minwii.py diff --git a/src/app/minwii.py b/src/app/minwii.py index f0c69b8..c4fdc23 100755 --- a/src/app/minwii.py +++ b/src/app/minwii.py @@ -9,12 +9,23 @@ $URL$ from pgu.gui import Desktop from pgu.gui import QUIT from widgets.home import Home +from widgets.playingscreen import PlayingScreen +from synth import Synth +from eventutils import EventDispatcher -class MinWii(Desktop): +class MinWii(object): def __init__(self) : - Desktop.__init__(self) - - home = Home() - home.connect(QUIT, self.quit) - self.run(home) + app = Desktop() + synth = Synth() + synth.program_select(0, 0, 0) + + while True : + home = Home() + home.connect(QUIT, app.quit) + app.run(home) + app.close(home) + + playingScreen = PlayingScreen(synth) + playingScreen.run() + EventDispatcher.reset()