diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-11-09 01:53:40 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-11-12 18:54:58 +0300 |
commit | 363223352ee9c4c7c1d65e49cf48b38b538abaf2 (patch) | |
tree | fd43f37cdcbe02083ef66fdd54baca3f0c709f0b /src/touchactions.h | |
parent | 9d66ae92ac714b4a4b21e588a3e2d481c352cd60 (diff) | |
download | plus-363223352ee9c4c7c1d65e49cf48b38b538abaf2.tar.gz plus-363223352ee9c4c7c1d65e49cf48b38b538abaf2.tar.bz2 plus-363223352ee9c4c7c1d65e49cf48b38b538abaf2.tar.xz plus-363223352ee9c4c7c1d65e49cf48b38b538abaf2.zip |
Moving Android on screen keyboard button from SDL to ManaPlus.
Also add basic functions for handling other on screen buttons.
Diffstat (limited to 'src/touchactions.h')
-rw-r--r-- | src/touchactions.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/touchactions.h b/src/touchactions.h new file mode 100644 index 000000000..0c9cdd23a --- /dev/null +++ b/src/touchactions.h @@ -0,0 +1,30 @@ +/* + * The ManaPlus Client + * Copyright (C) 2011-2012 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef TOUCHACTIONS_H +#define TOUCHACTIONS_H + +#include <guichan/mouseinput.hpp> + +#include "localconsts.h" + +void showKeyboard(const gcn::MouseInput &mouseInput); + +#endif |