~ubuntu-branches/ubuntu/trusty/manaplus/trusty-proposed

« back to all changes in this revision

Viewing changes to src/inputevent.h

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2013-09-17 10:35:51 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20130917103551-az7p3nz9jgxwqjfn
Tags: 1.3.9.15-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *  The ManaPlus Client
3
 
 *  Copyright (C) 2012-2013  The ManaPlus Developers
4
 
 *
5
 
 *  This file is part of The ManaPlus Client.
6
 
 *
7
 
 *  This program is free software; you can redistribute it and/or modify
8
 
 *  it under the terms of the GNU General Public License as published by
9
 
 *  the Free Software Foundation; either version 2 of the License, or
10
 
 *  any later version.
11
 
 *
12
 
 *  This program is distributed in the hope that it will be useful,
13
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
 *  GNU General Public License for more details.
16
 
 *
17
 
 *  You should have received a copy of the GNU General Public License
18
 
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
 
 */
20
 
 
21
 
#ifndef INPUTEVENT_H
22
 
#define INPUTEVENT_H
23
 
 
24
 
#include <map>
25
 
#include <vector>
26
 
 
27
 
#include "localconsts.h"
28
 
 
29
 
typedef std::vector<int> KeysVector;
30
 
typedef KeysVector::iterator KeysVectorIter;
31
 
typedef KeysVector::const_iterator KeysVectorCIter;
32
 
 
33
 
typedef std::map<int, KeysVector> KeyToActionMap;
34
 
typedef KeyToActionMap::iterator KeyToActionMapIter;
35
 
 
36
 
typedef std::map<int, int> KeyToIdMap;
37
 
typedef KeyToIdMap::iterator KeyToIdMapIter;
38
 
 
39
 
typedef std::map<int, int> KeyTimeMap;
40
 
typedef KeyTimeMap::iterator KeyTimeMapIter;
41
 
 
42
 
struct InputEvent final
43
 
{
44
 
    InputEvent(const int action0, const int mask0);
45
 
 
46
 
    int action;
47
 
 
48
 
    int mask;
49
 
};
50
 
 
51
 
#endif  // INPUTEVENT_H