author | nemo |
Wed, 05 Dec 2018 09:50:25 -0500 | |
branch | 0.9.25 |
changeset 14368 | c2a3d15df7d3 |
parent 11046 | 47a8c19ecb60 |
child 14899 | 4d5df8d35a95 |
permissions | -rw-r--r-- |
8346 | 1 |
/* |
2 |
* Hedgewars, a free turn based strategy game |
|
11046 | 3 |
* Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com> |
8346 | 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 |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
9998
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
8346 | 17 |
*/ |
18 |
||
19 |
#ifndef _KEY_BINDER_H |
|
20 |
#define _KEY_BINDER_H |
|
21 |
||
22 |
#include <QWidget> |
|
23 |
#include <QHash> |
|
24 |
||
25 |
#include "binds.h" |
|
26 |
||
27 |
class QListWidget; |
|
28 |
class QTableWidgetItem; |
|
29 |
class QTableWidget; |
|
30 |
class QBoxLayout; |
|
31 |
class QComboBox; |
|
32 |
||
33 |
// USAGE NOTE: Every time the widget comes into view, you must call resetInterface() |
|
34 |
||
35 |
class KeyBinder : public QWidget |
|
36 |
{ |
|
37 |
Q_OBJECT |
|
38 |
||
39 |
public: |
|
40 |
KeyBinder(QWidget * parent = NULL, const QString & helpText = QString(), const QString & defaultText = QString(), const QString & resetButtonText = QString()); |
|
41 |
~KeyBinder(); |
|
42 |
||
43 |
void setBindIndex(int keyIndex, int bindIndex); |
|
44 |
int bindIndex(int keyIndex); |
|
45 |
void resetInterface(); |
|
46 |
||
47 |
private: |
|
48 |
QHash<QObject *, QTableWidgetItem *> * bindComboBoxCellMappings; |
|
49 |
QHash<QTableWidgetItem *, QComboBox *> * bindCellComboBoxMappings; |
|
50 |
QTableWidget * selectedBindTable; |
|
51 |
QListWidget * catList; |
|
52 |
QBoxLayout *bindingsPages; |
|
53 |
QComboBox * CBBind[BINDS_NUMBER]; |
|
54 |
QString defaultText; |
|
55 |
bool enableSignal; |
|
56 |
||
57 |
signals: |
|
58 |
void bindUpdate(int bindID); |
|
59 |
void resetAllBinds(); |
|
60 |
||
61 |
private slots: |
|
62 |
void changeBindingsPage(int page); |
|
63 |
void bindChanged(const QString &); |
|
64 |
void bindCellClicked(QTableWidgetItem * item); |
|
65 |
void bindSelectionChanged(); |
|
66 |
}; |
|
67 |
||
68 |
#endif // _KEY_BINDER_H |