Fixed problem with connects in DictManagerWidget.cpp. Fixed: remove warnings from...
[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     \brief Implements plugin selection dialog
24
25     \author Mateusz Półrola <mateusz.polrola@comarch.pl>
26 */
27
28 #include "DictTypeSelectDialog.h"
29
30 DictTypeSelectDialog::DictTypeSelectDialog(QList<CommonDictInterface *> plugins, QWidget *parent) :
31     QDialog(parent), model(plugins, this) {
32
33     setWindowTitle(tr("Select dictionary type"));
34
35     this->plugins = plugins;
36
37     verticalLayout = new QVBoxLayout(this);
38     setLayout(verticalLayout);
39
40 #ifndef Q_WS_MAEMO_5
41     qmlView = new QDeclarativeView(this);
42
43     ctxt = qmlView->rootContext();
44
45 //    model = new DictTypeModel(plugins, this);
46     ctxt->setContextProperty("dictTypeModel", &model);
47     qmlView->setSource(QUrl::fromLocalFile("/usr/share/mdictionary/qml/DictTypeSelectDialog.qml"));
48
49     _selectedPlugin = 0;
50
51     QGraphicsObject *rootObject = qmlView->rootObject();
52     connect(rootObject, SIGNAL(selectedRow(int)),
53             this, SLOT(pluginSelected(int)));
54
55     qmlView->setResizeMode(QDeclarativeView::SizeRootObjectToView);
56     verticalLayout->addWidget(qmlView);
57
58 #endif
59 #ifdef Q_WS_MAEMO_5
60
61     pluginsListWidget = new QListWidget(this);
62
63     verticalLayout->addWidget(pluginsListWidget);
64
65     for(int i=0; i<plugins.count(); i++) {
66         QListWidgetItem* item = new QListWidgetItem(plugins[i]->type());
67         item->setData(PLUGIN_ROW_ROLE, i);
68         pluginsListWidget->addItem(item);
69     }
70
71     _selectedPlugin = 0;
72
73     connect(pluginsListWidget, SIGNAL(itemActivated(QListWidgetItem*)),
74             this, SLOT(pluginSelected(QListWidgetItem*)));
75 #endif
76 }
77
78 void DictTypeSelectDialog::pluginSelected(QListWidgetItem *item) {
79     _selectedPlugin = plugins[item->data(PLUGIN_ROW_ROLE).toInt()];
80     accept();
81 }
82
83 void DictTypeSelectDialog::pluginSelected(int item) {
84     _selectedPlugin = plugins[item];
85     accept();
86 }
87
88 CommonDictInterface* DictTypeSelectDialog::selectedPlugin() {
89     return _selectedPlugin;
90 }
91
92 CommonDictInterface* DictTypeSelectDialog::addNewDict(
93         QList<CommonDictInterface *> plugins,
94         QWidget *parent) {
95     DictTypeSelectDialog dictSelect(plugins, parent);
96
97     if(dictSelect.exec() == QDialog::Accepted) {
98         return dictSelect.selectedPlugin();
99     }
100     else {
101         return 0;
102     }
103 }