add "this" when create Qt obiect.
[mdictionary] / trunk / src / base / 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 //Created by Mateusz Półrola
23
24 #include "DictTypeSelectDialog.h"
25
26 DictTypeSelectDialog::DictTypeSelectDialog(QList<CommonDictInterface *> plugins, QWidget *parent) :
27     QDialog(parent) {
28
29     setWindowTitle(tr("Select dictionary type"));
30
31     this->plugins = plugins;
32
33     verticalLayout = new QVBoxLayout(this);
34     setLayout(verticalLayout);
35
36     pluginsListWidget = new QListWidget(this);
37
38     verticalLayout->addWidget(pluginsListWidget);
39
40     for(int i=0; i<plugins.count(); i++) {
41         QListWidgetItem* item = new QListWidgetItem(plugins[i]->type());
42         item->setData(PLUGIN_ROW_ROLE, i);
43         pluginsListWidget->addItem(item);
44     }
45
46     _selectedPlugin = NULL;
47
48     connect(pluginsListWidget, SIGNAL(itemClicked(QListWidgetItem*)),
49             this, SLOT(pluginSelected(QListWidgetItem*)));
50 }
51
52 void DictTypeSelectDialog::pluginSelected(QListWidgetItem *item) {
53     _selectedPlugin = plugins[item->data(PLUGIN_ROW_ROLE).toInt()];
54     accept();
55 }
56
57 CommonDictInterface* DictTypeSelectDialog::selectedPlugin() {
58     return _selectedPlugin;
59 }
60
61 CommonDictInterface* DictTypeSelectDialog::addNewDict(
62         QList<CommonDictInterface *> plugins,
63         QWidget *parent) {
64     DictTypeSelectDialog dictSelect(plugins, parent);
65
66     if(dictSelect.exec() == QDialog::Accepted) {
67         return dictSelect.selectedPlugin();
68     }
69     else {
70         return NULL;
71     }
72 }