Clean and order documentation in source files. Source ready to beta 2 release
[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 <QDialog>
31 #include "SearchBarWidget.h"
32 #include "../../include/History.h"
33 #include <QtGui>
34
35
36 /*!
37   Shows a history list and allows user to select one word of it.
38   On desktop it is shown as a popup.
39 */
40 class HistoryListDialog : public QDialog
41 {
42     Q_OBJECT
43 public:
44     //! Constructor
45     /*!
46       \param words list of history words
47       \param parent parent widget
48     */
49     explicit HistoryListDialog(QStringList words, QWidget* parent = 0);
50
51     //! \returns word selected by user
52     QString selectedWord();
53
54     //! \returns row number of selected word
55     int selectedRow();
56
57 public Q_SLOTS:
58     int exec();
59
60 private Q_SLOTS:
61     void itemClicked(QModelIndex);
62
63 private:
64     QListWidget* historyListWidget;
65     QVBoxLayout* verticalLayout;
66     QString _selectedWord;
67     int _selectedRow;
68     QStringList oryginalList;
69
70 };
71
72 #endif // HISTORYLISTDIALOG_H