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

« back to all changes in this revision

Viewing changes to src/input/keyinput.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 INPUT_KEYINPUT_H
 
22
#define INPUT_KEYINPUT_H
 
23
 
 
24
#include <guichan/keyinput.hpp>
 
25
 
 
26
#include <string>
 
27
 
 
28
#include "localconsts.h"
 
29
 
 
30
class KeyInput final : public gcn::KeyInput
 
31
{
 
32
    public:
 
33
        KeyInput();
 
34
 
 
35
        ~KeyInput();
 
36
 
 
37
        void setActionId(const int n)
 
38
        { mActionId = n; }
 
39
 
 
40
        int getActionId() const A_WARN_UNUSED
 
41
        { return mActionId; }
 
42
 
 
43
#ifdef USE_SDL2
 
44
        void setText(const std::string &text)
 
45
        { mText = text; }
 
46
 
 
47
        std::string getText() const
 
48
        { return mText; }
 
49
#endif
 
50
 
 
51
    protected:
 
52
        int mActionId;
 
53
#ifdef USE_SDL2
 
54
        std::string mText;
 
55
#endif
 
56
};
 
57
 
 
58
#endif  // INPUT_KEYINPUT_H