Refactor to use new protocol module and sipo.
[bertos.git] / wizard / BToolchainSearch.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.QtCore import *
38 from PyQt4.QtGui import *
39 import PyQt4.uic as uic
40
41 import qvariant_converter
42
43 import const
44
45 class BToolchainSearch(QDialog):
46     """
47     Dialog that permits to choice the settings for the toolchain search procedure.
48     """
49     
50     def __init__(self):
51         QDialog.__init__(self)
52         self._setupUi()
53         self._connectSignals()
54         self.setWindowTitle(self.tr("Toolchain search page"))
55     
56     def _setupUi(self):
57         """
58         Sets up the user interface.
59         """
60         self.content = uic.loadUi(os.path.join(const.DATA_DIR, const.UI_LOCATION, "toolchain_search.ui"), None)
61         layout = QVBoxLayout()
62         layout.addWidget(self.content)
63         self.setLayout(layout)
64         self._populateDirList()
65         self._setPathSearch()
66         self._setSearchButton()
67     
68     def _connectSignals(self):
69         """
70         Connects the signals with the related slots.
71         """
72         self.connect(self.content.pathBox, SIGNAL("stateChanged(int)"), self._stateChanged)
73         self.connect(self.content.addButton, SIGNAL("clicked()"), self._addDir)
74         self.connect(self.content.removeButton, SIGNAL("clicked()"), self._removeDir)
75         self.connect(self.content.cancelButton, SIGNAL("clicked()"), self.reject)
76         self.connect(self.content.searchButton, SIGNAL("clicked()"), self.accept)
77         
78     def _setSearchButton(self):
79         """
80         Toggles the 'searchButton' evaluating the settings.
81         """
82         self.content.searchButton.setDefault(True)
83         self.content.searchButton.setEnabled(self.content.pathBox.isChecked() or self.content.customDirList.count() != 0)
84     
85     def _populateDirList(self):
86         """
87         Fills the dir list with the directories stored in the QSettings.
88         """
89         search_dir_list = qvariant_converter.getStringList(QApplication.instance().settings.value("search_dir_list"))
90         for element in search_dir_list:
91             item = QListWidgetItem(element)
92             self.content.customDirList.addItem(item)
93     
94     def _setPathSearch(self):
95         """
96         Sets the path search checkbox to the stored value.
97         """
98         pathSearch = qvariant_converter.getBool(QApplication.instance().settings.value(QString("path_search")))
99         self.content.pathBox.setChecked(pathSearch)
100     
101     def _stateChanged(self, state):
102         """
103         Slot called when the path search checkbox state changes. Stores the value in the QSettings.
104         """
105         QApplication.instance().settings.setValue(QString("path_search"), QVariant(state != 0))
106         self._setSearchButton()
107     
108     def _addDir(self):
109         """
110         Slot called when the user adds a dir.
111         """
112         directory = QFileDialog.getExistingDirectory(self, self.tr("Open Directory"), "", QFileDialog.ShowDirsOnly)
113         if not directory.isEmpty():
114             directory = unicode(directory)
115             item = QListWidgetItem(directory)
116             self.content.customDirList.addItem(item)
117             search_dir_list = qvariant_converter.getStringList(QApplication.instance().settings.value("search_dir_list"))
118             search_dir_list = set(search_dir_list + [directory])
119             QApplication.instance().settings.setValue(QString("search_dir_list"), qvariant_converter.convertStringList(list(search_dir_list)))
120             self._setSearchButton()
121     
122     def _removeDir(self):
123         """
124         Slot called when the user removes a dir.
125         """
126         if self.content.customDirList.currentRow() != -1:
127             item = self.content.customDirList.takeItem(self.content.customDirList.currentRow())
128             search_dir_list = qvariant_converter.getStringList(QApplication.instance().settings.value(QString("search_dir_list")))
129             search_dir_list = set(search_dir_list)
130             search_dir_list.remove(unicode(item.text()))
131             QApplication.instance().settings.setValue(QString("search_dir_list"), qvariant_converter.convertStringList(list(search_dir_list)))
132             self._setSearchButton()
133