ae79df1af70e4d5293a9d6dda02add5898bde0de
[mdictionary] / src / mdictionary / gui / DictTypeSelectDialog.cpp
1 /*******************************************************************************
2
3     This file is part of mDictionary.
4
5     mDictionary is free software: you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation, either version 3 of the License, or
8     (at your option) any later version.
9
10     mDictionary is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with mDictionary.  If not, see <http://www.gnu.org/licenses/>.
17
18     Copyright 2010 Comarch S.A.
19
20 *******************************************************************************/
21
22 //! \file DictTypeSelectDialog.cpp
23 //! \author Mateusz Półrola <mateusz.polrola@comarch.pl>
24
25 #include "DictTypeSelectDialog.h"
26
27 DictTypeSelectDialog::DictTypeSelectDialog(QList<CommonDictInterface *> plugins, QWidget *parent) :
28     QDialog(parent) {
29
30     setWindowTitle(tr("Select dictionary type"));
31
32     this->plugins = plugins;
33
34     verticalLayout = new QVBoxLayout(this);
35     setLayout(verticalLayout);
36
37     pluginsListWidget = new QListWidget(this);
38
39     verticalLayout->addWidget(pluginsListWidget);
40
41     for(int i=0; i<plugins.count(); i++) {
42         QListWidgetItem* item = new QListWidgetItem(plugins[i]->type());
43         item->setData(PLUGIN_ROW_ROLE, i);
44         pluginsListWidget->addItem(item);
45     }
46
47     _selectedPlugin = 0;
48
49     connect(pluginsListWidget, SIGNAL(itemActivated(QListWidgetItem*)),
50             this, SLOT(pluginSelected(QListWidgetItem*)));
51 }
52
53 void DictTypeSelectDialog::pluginSelected(QListWidgetItem *item) {
54     _selectedPlugin = plugins[item->data(PLUGIN_ROW_ROLE).toInt()];
55     accept();
56 }
57
58 CommonDictInterface* DictTypeSelectDialog::selectedPlugin() {
59     return _selectedPlugin;
60 }
61
62 CommonDictInterface* DictTypeSelectDialog::addNewDict(
63         QList<CommonDictInterface *> plugins,
64         QWidget *parent) {
65     DictTypeSelectDialog dictSelect(plugins, parent);
66
67     if(dictSelect.exec() == QDialog::Accepted) {
68         return dictSelect.selectedPlugin();
69     }
70     else {
71         return 0;
72     }
73 }