author | unc0rr |
Thu, 05 Oct 2006 16:33:18 +0000 | |
changeset 183 | 57c2ef19f719 |
parent 176 | 533d03041dcd |
child 184 | f97a7a3dc8f6 |
permissions | -rw-r--r-- |
26 | 1 |
/* |
2 |
* Hedgewars, a worms-like game |
|
128 | 3 |
* Copyright (c) 2005, 2006 Andrey Korotaev <unC0Rr@gmail.com> |
26 | 4 |
* |
183 | 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 |
|
26 | 8 |
* |
183 | 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. |
|
26 | 13 |
* |
183 | 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 |
|
26 | 17 |
*/ |
18 |
||
19 |
#ifndef BINDS_H |
|
20 |
#define BINDS_H |
|
21 |
||
87 | 22 |
#include <QString> |
88 | 23 |
#include <QtGlobal> |
26 | 24 |
|
176 | 25 |
#define BINDS_NUMBER 29 |
26 | 26 |
|
27 |
struct BindAction |
|
28 |
{ |
|
29 |
QString action; |
|
30 |
QString strbind; |
|
87 | 31 |
const char * name; |
26 | 32 |
bool chwidget; |
33 |
}; |
|
34 |
||
35 |
const BindAction cbinds[BINDS_NUMBER] = |
|
36 |
{ |
|
88 | 37 |
{"+up", "up", QT_TRANSLATE_NOOP("binds", "up"), false}, |
38 |
{"+left", "left", QT_TRANSLATE_NOOP("binds", "left"), false}, |
|
39 |
{"+right", "right", QT_TRANSLATE_NOOP("binds", "right"), false}, |
|
40 |
{"+down", "down", QT_TRANSLATE_NOOP("binds", "down"), false}, |
|
41 |
{"ljump", "return", QT_TRANSLATE_NOOP("binds", "jump"), false}, |
|
42 |
{"hjump", "backspace", QT_TRANSLATE_NOOP("binds", "jump"), false}, |
|
43 |
{"+attack", "space", QT_TRANSLATE_NOOP("binds", "attack"), false}, |
|
44 |
{"put", "mousel", QT_TRANSLATE_NOOP("binds", "put"), false}, |
|
176 | 45 |
{"switch", "tab", QT_TRANSLATE_NOOP("binds", "switch"), false}, |
46 |
{"findhh", "h", QT_TRANSLATE_NOOP("binds", "find hedgehog"), true}, |
|
161 | 47 |
{"ammomenu", "mouser", QT_TRANSLATE_NOOP("binds", "ammo menu"), false}, |
88 | 48 |
{"slot 1", "f1", QT_TRANSLATE_NOOP("binds", "slot 1"), false}, |
49 |
{"slot 2", "f2", QT_TRANSLATE_NOOP("binds", "slot 2"), false}, |
|
50 |
{"slot 3", "f3", QT_TRANSLATE_NOOP("binds", "slot 3"), false}, |
|
51 |
{"slot 4", "f4", QT_TRANSLATE_NOOP("binds", "slot 4"), false}, |
|
52 |
{"slot 5", "f5", QT_TRANSLATE_NOOP("binds", "slot 5"), false}, |
|
53 |
{"slot 6", "f6", QT_TRANSLATE_NOOP("binds", "slot 6"), false}, |
|
54 |
{"slot 7", "f7", QT_TRANSLATE_NOOP("binds", "slot 7"), false}, |
|
55 |
{"slot 8", "f8", QT_TRANSLATE_NOOP("binds", "slot 8"), true}, |
|
56 |
{"timer 1", "1", QT_TRANSLATE_NOOP("binds", "timer 1 sec"), false}, |
|
57 |
{"timer 2", "2", QT_TRANSLATE_NOOP("binds", "timer 2 sec"), false}, |
|
58 |
{"timer 3", "3", QT_TRANSLATE_NOOP("binds", "timer 3 sec"), false}, |
|
59 |
{"timer 4", "4", QT_TRANSLATE_NOOP("binds", "timer 4 sec"), false}, |
|
60 |
{"timer 5", "5", QT_TRANSLATE_NOOP("binds", "timer 5 sec"), true}, |
|
174 | 61 |
{"+voldown", "9", QT_TRANSLATE_NOOP("binds", "volume down"), false}, |
62 |
{"+volup", "0", QT_TRANSLATE_NOOP("binds", "volume up"), false}, |
|
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
161
diff
changeset
|
63 |
{"fullscr", "f", QT_TRANSLATE_NOOP("binds", "change mode"), false}, |
167 | 64 |
{"capture", "c", QT_TRANSLATE_NOOP("binds", "capture"), false}, |
65 |
{"quit", "escape", QT_TRANSLATE_NOOP("binds", "quit"), true} |
|
26 | 66 |
}; |
67 |
||
68 |
#endif // BINDS_H |