author | unc0rr |
Fri, 25 Jan 2013 22:33:26 +0400 | |
changeset 8436 | b89aacebb9db |
parent 8434 | 4821897a0f10 |
child 8623 | 93645b4ba0de |
permissions | -rw-r--r-- |
8374 | 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 |
{ |
|
8434 | 33 |
friend class HatPrompt; |
8374 | 34 |
|
8434 | 35 |
public: |
8385
9e8924ff9813
Convert feedback page to dialog (+some fixes from unC0Rr)
dag10
parents:
8374
diff
changeset
|
36 |
HatListView(QWidget* parent = 0) : QListView(parent){} |
8374 | 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: |
|
8434 | 52 |
void onAccepted(); |
8374 | 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 |