X-Git-Url: https://scm.cri.minesparis.psl.eu/git/minwii.git/blobdiff_plain/63f3b77711f17de3cd3515d1a97f566438c551a7..46f3ffd7fdde386f41020171b5733e55a8e64a85:/src/app/minwii.py?ds=inline diff --git a/src/app/minwii.py b/src/app/minwii.py deleted file mode 100755 index cb6eef5..0000000 --- a/src/app/minwii.py +++ /dev/null @@ -1,35 +0,0 @@ -# -*- coding: utf-8 -*- -""" -l'application winwii - -$Id$ -$URL$ -""" - -from pgu.gui import Desktop -from pgu.gui import QUIT -from widgets.home import Home -from widgets.playingscreen import SongPlayingScreen, PlayingScreen -from synth import Synth -from eventutils import EventDispatcher -from musicxml import musicXml2Song -from config import SONG_FILE_PATH - -class MinWii(object): - - def __init__(self) : - app = Desktop() - synth = Synth() - synth.program_select(0, 0, 0) - - while True : - home = Home(songPath=SONG_FILE_PATH) - home.connect(QUIT, app.quit) - app.run(home) - app.close(home) - - song = musicXml2Song(home.songFile, printNotes=True) - playingScreen = SongPlayingScreen(synth, song) - #playingScreen = PlayingScreen(synth) - playingScreen.run() - EventDispatcher.reset()