4 # This file is part of BeRTOS.
6 # Bertos is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 # As a special exception, you may use this file as part of a free software
21 # library without restriction. Specifically, if other files instantiate
22 # templates or use macros or inline functions from this file, or you compile
23 # this file and link it with other files to produce an executable, this
24 # file does not by itself cause the resulting executable to be covered by
25 # the GNU General Public License. This exception does not however
26 # invalidate any other reasons why the executable file might be covered by
27 # the GNU General Public License.
29 # Copyright 2008 Develer S.r.l. (http://www.develer.com/)
32 # Author: Lorenzo Berni <duplo@develer.com>
37 from PyQt4.QtGui import *
39 from BWizardPage import *
44 class BFinalPage(BWizardPage):
46 Last page of the wizard. It creates the project and show a success message.
50 BWizardPage.__init__(self, UI_LOCATION + "/final_page.ui")
51 self.setTitle(self.tr("Project created successfully!"))
53 ## Overloaded BWizardPage methods ##
55 def reloadData(self, previous_id=None):
56 self.setVisible(False)
58 Overload of the BWizardPage reloadData method.
61 QApplication.instance().setOverrideCursor(Qt.WaitCursor)
63 # This operation can throw WindowsError, if the directory is
65 self.project.createBertosProject()
69 self.tr("Error removing destination directory"),
70 self.tr("Error removing the destination directory. This directory or a file in it is in use by another user or application.\nClose the application which is using the directory and retry."))
74 QApplication.instance().restoreOverrideCursor()
76 self._plugin_dict = {}
78 output = self.projectInfo("OUTPUT")
79 import winreg_importer
80 command_lines = winreg_importer.getCommandLines()
81 self.setProjectInfo("COMMAND_LINES", command_lines)
82 layout = QVBoxLayout()
84 if plugin in command_lines:
85 module = bertos_utils.loadPlugin(plugin)
86 check = QCheckBox(self.tr("Open project in %s" %module.PLUGIN_NAME))
88 check.setCheckState(Qt.Checked)
90 check.setCheckState(Qt.Unchecked)
91 layout.addWidget(check)
92 self._plugin_dict[check] = plugin
94 widget.setLayout(layout)
95 if len(self._plugin_dict) > 0:
96 self.pageContent.scrollArea.setVisible(True)
97 self.pageContent.scrollArea.setWidget(widget)
98 for plugin in self._plugin_dict:
99 self.connect(plugin, SIGNAL("stateChanged(int)"), self.modeChecked)
104 Overload of the BWizardPage setupUi method.
106 self.pageContent.scrollArea.setVisible(False)
112 def modeChecked(self):
114 for check, plugin in self._plugin_dict.items():
115 if check.checkState() == Qt.Checked:
116 to_be_opened.append(plugin)
117 self.setProjectInfo("TO_BE_OPENED", to_be_opened)