0x47 stub
[scummvm-innocent.git] / gui / Key.cpp
blobd3680509c06b88c818f6226a55b689259b0d97d4
1 /* ScummVM - Graphic Adventure Engine
3 * ScummVM is the legal property of its developers, whose names
4 * are too numerous to list here. Please refer to the COPYRIGHT
5 * file distributed with this source distribution.
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
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.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * $URL$
22 * $Id$
26 #include "gui/Key.h"
28 namespace GUI {
30 Key::Key() :
31 _ascii(0), _keycode(0), _flags(0) {
34 Key::Key(int ascii) :
35 _ascii(ascii), _keycode(ascii), _flags(0) {
38 Key::Key(int ascii, int keycode, int flags) :
39 _ascii(ascii), _keycode(keycode), _flags(flags) {
42 void Key::setKey(int ascii) {
43 _ascii = ascii;
44 _keycode = ascii;
47 void Key::setKey(int ascii, int keycode) {
48 _ascii = ascii;
49 _keycode = keycode;
52 void Key::setKey(int ascii, int keycode, int flags) {
53 _ascii = ascii;
54 _keycode = keycode;
55 _flags = flags;
58 int Key::ascii() {
59 return _ascii;
62 int Key::keycode() {
63 return _keycode;
66 int Key::flags() {
67 return _flags;
70 } // namespace GUI