X-Git-Url: https://scm.cri.ensmp.fr/git/minwii.git/blobdiff_plain/8a64d284f66cf33b34ea8527faa25e40e2a88ac6..967c3023786aaf8753d5a7597c4a418d95807c5b:/src/app/widgets/home.py diff --git a/src/app/widgets/home.py b/src/app/widgets/home.py index af0c0ee..6d9d7d5 100755 --- a/src/app/widgets/home.py +++ b/src/app/widgets/home.py @@ -13,8 +13,11 @@ from pgu.gui import Switch from pgu.gui import Select from pgu.gui import CLICK from pgu.gui import QUIT +from pgu.gui import CHANGE import pygame from gui.constants import reversedReadabilityDict, modeDict +from songfilebrowser import FileOpenDialog +import os.path class Home(Table) : """ @@ -23,6 +26,8 @@ class Home(Table) : def __init__(self,**params): Table.__init__(self,**params) + self.songPath = params.get('songPath', '.') + self.songFile = None self.spaceSize = (100,100) self.font = pygame.font.Font(None,70) self._fill() @@ -82,9 +87,16 @@ class Home(Table) : self.td(Spacer(500,500)) def _initLocalListeners(self) : - self.quitButton.connect(CLICK, self._exitHome) + self.browseButton.connect(CLICK, self.open_file_browser) + self.quitButton.connect(CLICK, self._exitApp) + self.playButton.connect(CLICK, self._exitHome) + + def _exitApp(self, data=None) : + self.returnValue = False + self.send(QUIT) def _exitHome(self, data=None) : + self.returnValue = True self.send(QUIT) def createLabel(self,text,font = None): @@ -93,6 +105,15 @@ class Home(Table) : w,h = self.font.size(text) label = Label(text,width=w,height=h,font = font) return(label) - + + def open_file_browser(self): + dlg = FileOpenDialog(self.songPath) + dlg.connect(CHANGE, self.handle_file_browser_closed, dlg) + dlg.open() + + def handle_file_browser_closed(self, dlg) : + if dlg.value and os.path.isfile(dlg.value): + self.songFile = dlg.value + \ No newline at end of file