Add new parameter to reloadData method (an integer containing the id of the previous...
[bertos.git] / wizard / BFinalPage.py
1 #!/usr/bin/env python
2 # encoding: utf-8
3 #
4 # This file is part of BeRTOS.
5 #
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.
10 #
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.
15 #
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
19 #
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.
28 #
29 # Copyright 2008 Develer S.r.l. (http://www.develer.com/)
30 #
31 # $Id$
32 #
33 # Author: Lorenzo Berni <duplo@develer.com>
34 #
35
36 import os
37
38 from PyQt4.QtGui import *
39
40 from BWizardPage import *
41 import bertos_utils
42
43 from const import *
44
45 class BFinalPage(BWizardPage):
46     """
47     Last page of the wizard. It creates the project and show a success message.
48     """
49     
50     def __init__(self):
51         BWizardPage.__init__(self, UI_LOCATION + "/final_page.ui")
52         self.setTitle(self.tr("Project created successfully!"))
53     
54     ## Overloaded BWizardPage methods ##
55         
56     def reloadData(self, previous_id=None):
57         self.setVisible(False)
58         """
59         Overload of the BWizardPage reloadData method.
60         """
61         try:
62             QApplication.instance().setOverrideCursor(Qt.WaitCursor)
63             try:
64                 # This operation can throw WindowsError, if the directory is
65                 # locked.
66                 self.project.createBertosProject()
67             except OSError, e:
68                 QMessageBox.critical(
69                     self,
70                     self.tr("Error removing destination directory"),
71                     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."))
72                 self.wizard().back()
73                 return
74         finally:
75             QApplication.instance().restoreOverrideCursor()
76         self.setVisible(True)
77         self._plugin_dict = {}
78         if os.name == "nt":
79             output = self.projectInfo("OUTPUT")
80             import winreg_importer
81             command_lines = winreg_importer.getCommandLines()
82             self.setProjectInfo("COMMAND_LINES", command_lines)
83             layout = QVBoxLayout()
84             for plugin in output:
85                 if plugin in command_lines:
86                     module = bertos_utils.loadPlugin(plugin)
87                     check = QCheckBox(self.tr("Open project in %s" %module.PLUGIN_NAME))
88                     if len(output) == 1:
89                         check.setCheckState(Qt.Checked)
90                     else:
91                         check.setCheckState(Qt.Unchecked)
92                     layout.addWidget(check)
93                     self._plugin_dict[check] = plugin
94             widget = QWidget()
95             widget.setLayout(layout)
96             if len(self._plugin_dict) > 0:
97                 self.pageContent.scrollArea.setVisible(True)
98             self.pageContent.scrollArea.setWidget(widget)
99             for plugin in self._plugin_dict:
100                 self.connect(plugin, SIGNAL("stateChanged(int)"), self.modeChecked)
101         self.modeChecked()
102     
103     def setupUi(self):
104         """
105         Overload of the BWizardPage setupUi method.
106         """
107         self.pageContent.scrollArea.setVisible(False)
108     
109     ####
110
111     ## Slots ##
112
113     def modeChecked(self):
114         to_be_opened = []
115         for check, plugin in self._plugin_dict.items():
116             if check.checkState() == Qt.Checked:
117                 to_be_opened.append(plugin)
118         self.setProjectInfo("TO_BE_OPENED", to_be_opened)
119     
120     ####