X-Git-Url: https://scm.cri.ensmp.fr/git/minwii.git/blobdiff_plain/15177f5827a1af081edd4761411c3c73be891fee..f331b0da5cf221056181123e11fb50e5192b8cb9:/src/app/minwii.py diff --git a/src/app/minwii.py b/src/app/minwii.py index 15e24dc..c4fdc23 100755 --- a/src/app/minwii.py +++ b/src/app/minwii.py @@ -5,3 +5,27 @@ l'application winwii $Id$ $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(object): + + def __init__(self) : + 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()