Move createBertosProject as BProject method
[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):
57         """
58         Overload of the BWizardPage reloadData method.
59         """
60         try:
61             QApplication.instance().setOverrideCursor(Qt.WaitCursor)
62             self.project.createBertosProject()
63         finally:
64             QApplication.instance().restoreOverrideCursor()
65         self._plugin_dict = {}
66         if os.name == "nt":
67             output = self.projectInfo("OUTPUT")
68             import winreg_importer
69             command_lines = winreg_importer.getCommandLines()
70             self.setProjectInfo("COMMAND_LINES", command_lines)
71             layout = QVBoxLayout()
72             for plugin in output:
73                 if plugin in command_lines:
74                     module = bertos_utils.loadPlugin(plugin)
75                     check = QCheckBox(self.tr("Open project in %s" %module.PLUGIN_NAME))
76                     if len(output) == 1:
77                         check.setCheckState(Qt.Checked)
78                     else:
79                         check.setCheckState(Qt.Unchecked)
80                     layout.addWidget(check)
81                     self._plugin_dict[check] = plugin
82             widget = QWidget()
83             widget.setLayout(layout)
84             if len(self._plugin_dict) > 0:
85                 self.pageContent.scrollArea.setVisible(True)
86             self.pageContent.scrollArea.setWidget(widget)
87             for plugin in self._plugin_dict:
88                 self.connect(plugin, SIGNAL("stateChanged(int)"), self.modeChecked)
89         self.modeChecked()
90     
91     def setupUi(self):
92         """
93         Overload of the BWizardPage setupUi method.
94         """
95         self.pageContent.scrollArea.setVisible(False)
96     
97     ####
98
99     ## Slots ##
100
101     def modeChecked(self):
102         to_be_opened = []
103         for check, plugin in self._plugin_dict.items():
104             if check.checkState() == Qt.Checked:
105                 to_be_opened.append(plugin)
106         self.setProjectInfo("TO_BE_OPENED", to_be_opened)
107     
108     ####