Added custom word list
[mdictionary] / trunk / src / base / gui / WordListWidget.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 "WordListWidget.h"
25 #include <QDebug>
26 #include "../../includes/translation.h"
27 #include <QMultiHash>
28
29
30 #ifdef Q_WS_MAEMO_5
31     #include <QMaemo5InformationBox>
32 #endif
33
34 WordListWidget::WordListWidget(QWidget *parent):
35     QScrollArea(parent) {
36
37
38     QWidget* w = new QWidget;
39     layout = new QVBoxLayout(w);
40     setWidget(w);
41     setWidgetResizable(true);
42
43     setMinimumWidth(300);
44
45 }
46
47 void WordListWidget::addWord(QString word) {
48     WordListItem* w = new WordListItem(word);
49     layout->addWidget(w);
50     items.append(w);
51
52     connect(w, SIGNAL(clicked(QString)),
53             this, SLOT(itemClicked(QString)));
54
55     connect(w, SIGNAL(selected(QString)),
56             this, SLOT(itemSelected(QString)));
57 }
58
59 void WordListWidget::clear() {
60     int wordsCount = items.count();
61     for(int i = 0; i < wordsCount; i++) {
62         delete items.at(i);
63     }
64     items.clear();
65 }
66
67 void WordListWidget::showSearchResults(
68        QHash<QString, QList<Translation *> > result) {
69     clear();
70     searchResult.clear();
71
72     searchResult = result;
73     QHash<QString, QList<Translation*> >::iterator i;
74     for(i = result.begin(); i != result.end(); i++) {
75            addWord(i.key());
76     }
77
78 }
79
80 void WordListWidget::itemClicked(QString key) {
81     emit showTranslation(searchResult[key]);
82 }
83
84 void WordListWidget::itemSelected(QString key) {
85     for(int i = 0; i < items.count(); i++) {
86         if(items.at(i)->text() != key)
87             items.at(i)->unselect();
88     }
89 }
90
91 void WordListWidget::lockList() {
92     setEnabled(false);
93 }
94
95 void WordListWidget::unlockList() {
96     setEnabled(true);
97 }