X-Git-Url: https://scm.cri.ensmp.fr/git/minwii.git/blobdiff_plain/8e4a9825b3464ea2600eb193151b03f903aed5f4..f331b0da5cf221056181123e11fb50e5192b8cb9:/src/app/minwii.py diff --git a/src/app/minwii.py b/src/app/minwii.py index 2cc4988..c4fdc23 100755 --- a/src/app/minwii.py +++ b/src/app/minwii.py @@ -6,13 +6,26 @@ $Id$ $URL$ """ -#from pgu.gui import Desktop -#from pgu.gui import QUIT +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) : - playingScreen = PlayingScreen() - playingScreen.run() + 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()