X-Git-Url: https://scm.cri.ensmp.fr/git/minwii.git/blobdiff_plain/8a64d284f66cf33b34ea8527faa25e40e2a88ac6..898cc352cb6624da41e4befd97a07c99243433a4:/src/app/widgets/home.py diff --git a/src/app/widgets/home.py b/src/app/widgets/home.py index af0c0ee..e1e09f1 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,6 +87,7 @@ class Home(Table) : self.td(Spacer(500,500)) def _initLocalListeners(self) : + self.browseButton.connect(CLICK, self.open_file_browser) self.quitButton.connect(CLICK, self._exitHome) def _exitHome(self, data=None) : @@ -93,6 +99,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