Refactor to use new protocol module and sipo.
[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 #
32 # Author: Lorenzo Berni <duplo@develer.com>
33 #
34
35 import os
36
37 from PyQt4.QtGui import *
38
39 from BWizardPage import *
40 import bertos_utils
41
42 from const import *
43
44 class BFinalPage(BWizardPage):
45     """
46     Last page of the wizard. It creates the project and show a success message.
47     """
48     
49     def __init__(self):
50         BWizardPage.__init__(self, UI_LOCATION + "/final_page.ui")
51         self.setTitle(self.tr("Project created successfully!"))
52     
53     ## Overloaded BWizardPage methods ##
54         
55     def reloadData(self, previous_id=None):
56         self.setVisible(False)
57         """
58         Overload of the BWizardPage reloadData method.
59         """
60         try:
61             QApplication.instance().setOverrideCursor(Qt.WaitCursor)
62             try:
63                 # This operation can throw WindowsError, if the directory is
64                 # locked.
65                 self.project.createBertosProject()
66             except OSError, e:
67                 QMessageBox.critical(
68                     self,
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."))
71                 self.wizard().back()
72                 return
73         finally:
74             QApplication.instance().restoreOverrideCursor()
75         self.setVisible(True)
76         self._plugin_dict = {}
77         if os.name == "nt":
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()
83             for plugin in output:
84                 if plugin in command_lines:
85                     module = bertos_utils.loadPlugin(plugin)
86                     check = QCheckBox(self.tr("Open project in %s" %module.PLUGIN_NAME))
87                     if len(output) == 1:
88                         check.setCheckState(Qt.Checked)
89                     else:
90                         check.setCheckState(Qt.Unchecked)
91                     layout.addWidget(check)
92                     self._plugin_dict[check] = plugin
93             widget = QWidget()
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)
100         self.modeChecked()
101     
102     def setupUi(self):
103         """
104         Overload of the BWizardPage setupUi method.
105         """
106         self.pageContent.scrollArea.setVisible(False)
107     
108     ####
109
110     ## Slots ##
111
112     def modeChecked(self):
113         to_be_opened = []
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)
118     
119     ####