Changed repo structure
[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 //! \author Mateusz Półrola <mateusz.polrola@comarch.pl>
23
24 #ifndef HISTORYLISTDIALOG_H
25 #define HISTORYLISTDIALOG_H
26
27 #include <QDialog>
28 #include "SearchBarWidget.h"
29 #include "../../common/History.h"
30 #include <QtGui>
31
32
33 //! Implements history list dialog
34 /*!
35   Shows history list and allows user to select one word of it.
36   On desktop it is shown as popup.
37 */
38 class HistoryListDialog : public QDialog
39 {
40     Q_OBJECT
41 public:
42     //! Constructor
43     /*!
44       \param words list of history words
45       \param parent widget
46     */
47     explicit HistoryListDialog(QStringList words, QWidget* parent = 0);
48
49     //! Returns word selected by user
50     QString selectedWord();
51
52     //! Returns row number of selected word
53     int selectedRow();
54
55 private Q_SLOTS:
56     void itemClicked(QModelIndex);
57
58 private:
59     QListWidget* historyListWidget;
60     QVBoxLayout* verticalLayout;
61     QString _selectedWord;
62     int _selectedRow;
63     QStringList oryginalList;
64
65 };
66
67 #endif // HISTORYLISTDIALOG_H