equal
deleted
inserted
replaced
|
1 /* |
|
2 * Hedgewars, a free turn based strategy game |
|
3 * Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com> |
|
4 * |
|
5 * This program 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; version 2 of the License |
|
8 * |
|
9 * This program is distributed in the hope that it will be useful, |
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 * GNU General Public License for more details. |
|
13 * |
|
14 * You should have received a copy of the GNU General Public License |
|
15 * along with this program; if not, write to the Free Software |
|
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 */ |
|
18 |
|
19 #ifndef HATPROMPT_H |
|
20 #define HATPROMPT_H |
|
21 |
|
22 #include <QWidget> |
|
23 #include <QDialog> |
|
24 #include <QListView> |
|
25 |
|
26 class QLineEdit; |
|
27 class QModelIndex; |
|
28 class QSortFilterProxyModel; |
|
29 class LineEditCursor; |
|
30 |
|
31 class HatListView : public QListView |
|
32 { |
|
33 friend class HatPrompt; |
|
34 |
|
35 public: |
|
36 HatListView(QWidget* parent = 0) {}; |
|
37 }; |
|
38 |
|
39 class HatPrompt : public QDialog |
|
40 { |
|
41 Q_OBJECT |
|
42 |
|
43 public: |
|
44 HatPrompt(int currentIndex = 0, QWidget* parent = 0); |
|
45 |
|
46 private: |
|
47 LineEditCursor * txtFilter; |
|
48 HatListView * list; |
|
49 QSortFilterProxyModel * filterModel; |
|
50 |
|
51 private slots: |
|
52 void onAccepted(); |
|
53 void hatChosen(const QModelIndex & index); |
|
54 void filterChanged(const QString & text); |
|
55 void moveUp(); |
|
56 void moveDown(); |
|
57 void moveLeft(); |
|
58 void moveRight(); |
|
59 }; |
|
60 |
|
61 #endif // HATPROMPT_H |