From df5d8b30328acae3ba500882f50888644dbc0e32 Mon Sep 17 00:00:00 2001 From: "benoit.pin" Date: Mon, 31 Jan 2011 09:57:37 +0000 Subject: [PATCH] Ajout des boutons de tri. git-svn-id: https://svn.cri.ensmp.fr/svn/minwii/trunk@328 fe552daf-6dbe-4428-90eb-1537e0879342 --- src/minwii/widgets/songfilebrowser.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/minwii/widgets/songfilebrowser.py b/src/minwii/widgets/songfilebrowser.py index 33b5cd5..119a2f1 100755 --- a/src/minwii/widgets/songfilebrowser.py +++ b/src/minwii/widgets/songfilebrowser.py @@ -44,17 +44,21 @@ class FileOpenDialog(FileDialog): self.input_file = input.Input() self._list_dir_() self.button_ok = button.Button("Ouvrir") + self.button_sort_alpha = button.Button("A-Z") + self.button_sort_num = button.Button("0-9") self.body.tr() self.body.td(basic.Label("Dossier"), style=td_style, align=-1) self.body.td(self.input_dir, style=td_style) + self.body.td(self.button_sort_alpha) + self.body.td(self.button_sort_num) self.body.tr() - self.body.td(self.list, colspan=3, style=td_style) + self.body.td(self.list, colspan=4, style=td_style) self.list.connect(CHANGE, self._item_select_changed_, None) self.button_ok.connect(CLICK, self._button_okay_clicked_, None) self.body.tr() self.body.td(basic.Label("Fichier"), style=td_style, align=-1) self.body.td(self.input_file, style=td_style) - self.body.td(self.button_ok, style=td_style) + self.body.td(self.button_ok, style=td_style, colspan=2) self.value = None Dialog.__init__(self, self.title, self.body) -- 2.20.1