X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBFolderPage.py;h=b6038ae31b6b37e2e6a9e9e2965c49f0ee9e5f19;hb=72c5f5cde2bc9ffe5427d65bb8f798bf8c4a0cce;hp=2628aa668d74fbb7f7f6727ec4d0bec08d972b61;hpb=97903dc626136396587334b1d78f7623c91e9934;p=bertos.git diff --git a/wizard/BFolderPage.py b/wizard/BFolderPage.py index 2628aa66..b6038ae3 100644 --- a/wizard/BFolderPage.py +++ b/wizard/BFolderPage.py @@ -1,10 +1,34 @@ #!/usr/bin/env python # encoding: utf-8 # +# This file is part of BeRTOS. +# +# Bertos is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +# +# As a special exception, you may use this file as part of a free software +# library without restriction. Specifically, if other files instantiate +# templates or use macros or inline functions from this file, or you compile +# this file and link it with other files to produce an executable, this +# file does not by itself cause the resulting executable to be covered by +# the GNU General Public License. This exception does not however +# invalidate any other reasons why the executable file might be covered by +# the GNU General Public License. +# # Copyright 2008 Develer S.r.l. (http://www.develer.com/) -# All rights reserved. # -# $Id:$ +# $Id$ # # Author: Lorenzo Berni # @@ -34,6 +58,7 @@ class BFolderPage(BWizardPage): """ Overload of the QWizardPage isComplete method. """ + self.setDefaultFolder(self._destination_folder) if self.pageContent.projectPath.text() != "None": self.setProjectInfo("PROJECT_PATH", unicode(self.pageContent.projectPath.text())) return True @@ -66,21 +91,26 @@ class BFolderPage(BWizardPage): """ Slot called when the project name is changed manually by the user. """ - self._project_name = str(name).replace(" ", "_") + try: + name = unicode(name).encode("ascii") + except UnicodeEncodeError: + name = self._project_name + self.pageContent.nameEdit.setText(name) + self._project_name = unicode(name).replace(" ", "_") self.setProjectPath() def directoryChanged(self, directory): """ Slot called when the project folder is changed manually by the user. """ - self._destination_folder = str(QDir.toNativeSeparators(directory)) + self._destination_folder = unicode(QDir.toNativeSeparators(directory)) self.setProjectPath() def selectDirectory(self): """ Slot called when the project folder is changed using the file dialog. """ - directory = unicode(QFileDialog.getExistingDirectory(self, self.tr("Open Directory"), "", QFileDialog.ShowDirsOnly)) + directory = unicode(QFileDialog.getExistingDirectory(self, self.tr("Open Directory"), self.pageContent.directoryEdit.text(), QFileDialog.ShowDirsOnly)) if len(directory) > 0: self.pageContent.directoryEdit.setText(directory) @@ -91,7 +121,16 @@ class BFolderPage(BWizardPage): Initializes the page attributes to the default values. """ self._project_name = "" - self._destination_folder = os.path.expanduser("~") + stored_folder = self.defaultFolder() + if stored_folder != "": + self._destination_folder = stored_folder + elif os.name == "nt": + from win32com.shell import shell, shellcon + self._destination_folder = shell.SHGetFolderPath(0, shellcon.CSIDL_PERSONAL, 0, 0) + del shell + del shellcon + else: + self._destination_folder = os.path.expanduser("~") self.pageContent.directoryEdit.setText(self._destination_folder) def setProjectPath(self): @@ -100,7 +139,7 @@ class BFolderPage(BWizardPage): """ if self._destination_folder != "" and self._project_name <> "": if not self._destination_folder.endswith(os.sep): - self._destination_folder += "/" + self._destination_folder += os.sep self.pageContent.projectPath.setText(QDir.toNativeSeparators(self._destination_folder + self._project_name)) if os.path.exists(self._destination_folder + self._project_name): self.pageContent.warningLabel.setVisible(True) @@ -113,4 +152,4 @@ class BFolderPage(BWizardPage): self.pageContent.projectPath.setText("None") self.pageContent.warningLabel.setVisible(False) self.pageContent.warningLabel.setText("") - self.emit(SIGNAL("completeChanged()")) \ No newline at end of file + self.emit(SIGNAL("completeChanged()"))