DictTypeSelectDialog ported to qml. Remove empty qml files.
[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     qmlView->setSource(QUrl::fromLocalFile("/usr/share/mdictionary/qml/DictTypeSelectDialog.qml"));
43     ctxt = qmlView->rootContext();
44
45 //    model = new DictTypeModel(plugins, this);
46     ctxt->setContextProperty("dictTypeModel", &model);
47
48     _selectedPlugin = 0;
49
50     QGraphicsObject *rootObject = qmlView->rootObject();
51     connect(rootObject, SIGNAL(selectedRow(int)),
52             this, SLOT(pluginSelected(int)));
53
54     qmlView->setResizeMode(QDeclarativeView::SizeRootObjectToView);
55     verticalLayout->addWidget(qmlView);
56
57 #endif
58 #ifdef Q_WS_MAEMO_5
59
60     pluginsListWidget = new QListWidget(this);
61
62     verticalLayout->addWidget(pluginsListWidget);
63
64     for(int i=0; i<plugins.count(); i++) {
65         QListWidgetItem* item = new QListWidgetItem(plugins[i]->type());
66         item->setData(PLUGIN_ROW_ROLE, i);
67         pluginsListWidget->addItem(item);
68     }
69
70     _selectedPlugin = 0;
71
72     connect(pluginsListWidget, SIGNAL(itemActivated(QListWidgetItem*)),
73             this, SLOT(pluginSelected(QListWidgetItem*)));
74 #endif
75 }
76
77 void DictTypeSelectDialog::pluginSelected(QListWidgetItem *item) {
78     _selectedPlugin = plugins[item->data(PLUGIN_ROW_ROLE).toInt()];
79     accept();
80 }
81
82 void DictTypeSelectDialog::pluginSelected(int item) {
83     _selectedPlugin = plugins[item];
84     accept();
85 }
86
87 CommonDictInterface* DictTypeSelectDialog::selectedPlugin() {
88     return _selectedPlugin;
89 }
90
91 CommonDictInterface* DictTypeSelectDialog::addNewDict(
92         QList<CommonDictInterface *> plugins,
93         QWidget *parent) {
94     DictTypeSelectDialog dictSelect(plugins, parent);
95
96     if(dictSelect.exec() == QDialog::Accepted) {
97         return dictSelect.selectedPlugin();
98     }
99     else {
100         return 0;
101     }
102 }