ManaPlus
inputgroup.h
Go to the documentation of this file.
1 /*
2  * The ManaPlus Client
3  * Copyright (C) 2007 Joshua Langley <[email protected]>
4  * Copyright (C) 2009-2010 The Mana Developers
5  * Copyright (C) 2011-2019 The ManaPlus Developers
6  * Copyright (C) 2019-2021 Andrei Karas
7  *
8  * This file is part of The ManaPlus Client.
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program. If not, see <http://www.gnu.org/licenses/>.
22  */
23 
24 #ifndef ENUMS_INPUT_INPUTGROUP_H
25 #define ENUMS_INPUT_INPUTGROUP_H
26 
27 #include "localconsts.h"
28 
29 namespace Input
30 {
32  {
33  GRP_DEFAULT = 1, // default game key
34  GRP_CHAT = 2, // chat key
35  GRP_EMOTION = 4, // emotions key
36  GRP_OUTFIT = 8, // outfit key
37  GRP_GUI = 16, // gui key
38  GRP_MOVETOPOINT = 32, // move to point key
39  GRP_GUICHAN = 64, // for guichan based controls
40  GRP_REPEAT = 128, // repeat emulation keys
41  GRP_PET_EMOTION = 256, // pet emotions key
42  GRP_HOMUN_EMOTION = 512 // homunculus/mercenary emotetions key
43  };
44 } // namespace Input
45 
46 #endif // ENUMS_INPUT_INPUTGROUP_H
InputGroup
Definition: inputgroup.h:32
@ GRP_OUTFIT
Definition: inputgroup.h:36
@ GRP_GUICHAN
Definition: inputgroup.h:39
@ GRP_REPEAT
Definition: inputgroup.h:40
@ GRP_MOVETOPOINT
Definition: inputgroup.h:38
@ GRP_CHAT
Definition: inputgroup.h:34
@ GRP_PET_EMOTION
Definition: inputgroup.h:41
@ GRP_GUI
Definition: inputgroup.h:37
@ GRP_EMOTION
Definition: inputgroup.h:35
@ GRP_HOMUN_EMOTION
Definition: inputgroup.h:42
@ GRP_DEFAULT
Definition: inputgroup.h:33