Merge branch 'master' of ssh://drop.maemo.org/git/mdictionary into qml
[mdictionary] / src / mdictionary / gui / HistoryListDialog.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 HistoryListDialog.h
22     \brief Implements history list dialog
23
24     \author Mateusz Półrola <mateusz.polrola@comarch.pl>
25 */
26
27 #ifndef HISTORYLISTDIALOG_H
28 #define HISTORYLISTDIALOG_H
29
30 #include <QtGui>
31 #include <QDialog>
32 #include <QDeclarativeView>
33 #include <QDeclarativeContext>
34
35 #include "SearchBarWidget.h"
36 #include "../../include/History.h"
37 #include "HistoryListModel.h"
38
39
40 /*!
41   Shows a history list and allows user to select one word of it.
42   On desktop it is shown as a popup.
43 */
44 class HistoryListDialog : public QDialog
45 {
46     Q_OBJECT
47 public:
48     //! Constructor
49     /*!
50       \param words list of history words
51       \param parent parent widget
52     */
53     explicit HistoryListDialog(QStringList words, QWidget* parent = 0);
54
55     //! \returns word selected by user
56     QString selectedWord();
57
58     //! \returns row number of selected word
59     int selectedRow();
60
61 public Q_SLOTS:
62     int exec();
63
64 private Q_SLOTS:
65     void itemClicked(QModelIndex);
66     void itemClicked(int);
67
68 private:
69     QDeclarativeView *view;
70     QVBoxLayout* mainLayout;
71
72     QListWidget* historyListWidget;
73     QVBoxLayout* verticalLayout;
74     QString _selectedWord;
75     int _selectedRow;
76     QStringList oryginalList;
77
78 };
79
80 #endif // HISTORYLISTDIALOG_H