Add keyboard support to comboBox, HistoryList. Fix some issues with keyboard support.
[mdictionary] / src / include / ComboBoxModel.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
22 /*! \file ComboBoxModel.h
23     \brief Contains data for ComboBox QML component
24
25     \author Marcin Kaźmierczak <marcin.kazmierczak@comarch.pl>
26 */
27
28
29 #ifndef COMBOBOXMODEL_H
30 #define COMBOBOXMODEL_H
31
32 #include <QAbstractListModel>
33 #include <QList>
34 #include <QHash>
35
36 /*!
37   Contains a list of string values.
38   Data source for qml ComboBox
39 */
40 class ComboBoxModel : public QAbstractListModel
41 {
42     Q_OBJECT
43 public:
44     enum ComboBoxRoles
45     {
46         ContentRole = Qt::UserRole + 1,
47         NumberRole
48     };
49
50     //! Constructor
51     /*!
52       \param contents list of elements for ComboBox
53       \param parent parent of this class.
54     */
55     explicit ComboBoxModel(QList<QString> contents, QObject *parent = 0);
56
57     int rowCount(const QModelIndex & parent = QModelIndex()) const;
58
59     QVariant data(const QModelIndex & index, int role = Qt::DisplayRole) const;
60
61     QString selectedItem();
62     int selectedIndex();
63     void setSelectedItem(QString item);
64     void setSelectedIndex(int index);
65
66 public Q_SLOTS:
67     QString valueOnPosition(int index);
68
69 private:
70     void setContents(QList<QString> contents);
71     void addItem(QString item);
72     QList<QString> _contents;
73     QString _selectedItem;
74     int _selectedIndex;
75
76 };
77
78 #endif // COMBOBOXMODEL_H