Stars connected to add and remove bookmark signals
[mdictionary] / trunk / src / base / gui / WordListWidget.h
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 //! \file WordListwidget.h
22 //! \brief Implements word list widget
23 //! \author Mateusz Półrola <mateusz.polrola@comarch.pl>
24
25 #ifndef WORDLISTWIDGET_H
26 #define WORDLISTWIDGET_H
27
28 #include <QWidget>
29 #include <QtGui>
30 #include <QStringListModel>
31 #include "../backbone/backbone.h"
32 #include "SearchBarWidget.h"
33
34 //! Displays list of words found in dictionaries
35 /*!
36     It allow user to select word to see it's translation or to mark it as "star"
37   */
38 class WordListWidget : public QListWidget {
39     Q_OBJECT
40 public:
41     explicit WordListWidget(QWidget *parent = 0);
42
43 Q_SIGNALS:
44     //! Request to show translation which is described by passed translations
45     //! objects
46     void showTranslation(QList<Translation*>);
47
48     void addBookmark(QList<Translation*>);
49
50     void removeBookmark(QList<Translation*>);
51
52
53 public Q_SLOTS:
54     //! Shows search results
55     /*!
56       \param hash of found words and it's translations objects
57     */
58     void showSearchResults(QHash<QString, QList<Translation*> >);
59
60     //! Lock words list, while backbone is doing somethig in background
61     void lockList();
62
63     //! Unlocks words list
64     void unlockList();
65
66 private Q_SLOTS:
67     void wordClicked(QListWidgetItem* item);
68     void wordPressed(QListWidgetItem* item);
69
70 private:
71     void addWord(QString word);
72
73     Qt::CheckState itemState;
74     QHash<QString, QList<Translation*> > searchResult;
75 };
76
77 #endif // WORDLISTWIDGET_H