2007-05-30 21:56:52 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
2004-05-09 14:57:04 +00:00
|
|
|
*
|
|
|
|
* 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 (at your option) 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, write to the Free Software
|
2005-10-18 01:30:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2004-05-09 14:57:04 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-09-28 20:30:50 +00:00
|
|
|
#ifndef CEACTIONSSMARTPHONE_H
|
|
|
|
#define CEACTIONSSMARTPHONE_H
|
2004-05-09 14:57:04 +00:00
|
|
|
|
|
|
|
#include "common/scummsys.h"
|
|
|
|
#include "common/system.h"
|
2010-10-31 17:10:45 +00:00
|
|
|
#include "common/str.h"
|
2005-07-05 20:22:56 +00:00
|
|
|
#include "gui/Key.h"
|
|
|
|
#include "gui/Actions.h"
|
2011-06-10 23:07:46 +00:00
|
|
|
#include "backends/graphics/wincesdl/wincesdl-graphics.h"
|
2004-05-09 14:57:04 +00:00
|
|
|
|
2007-04-28 17:31:41 +00:00
|
|
|
#define SMARTPHONE_ACTION_VERSION 5
|
2004-05-09 14:57:04 +00:00
|
|
|
|
|
|
|
enum smartphoneActionType {
|
2007-04-28 17:31:41 +00:00
|
|
|
SMARTPHONE_ACTION_UP = 0,
|
|
|
|
SMARTPHONE_ACTION_DOWN,
|
|
|
|
SMARTPHONE_ACTION_LEFT,
|
|
|
|
SMARTPHONE_ACTION_RIGHT,
|
|
|
|
SMARTPHONE_ACTION_LEFTCLICK,
|
|
|
|
SMARTPHONE_ACTION_RIGHTCLICK,
|
|
|
|
SMARTPHONE_ACTION_SAVE,
|
|
|
|
SMARTPHONE_ACTION_SKIP,
|
|
|
|
SMARTPHONE_ACTION_ZONE,
|
2007-06-05 18:55:41 +00:00
|
|
|
SMARTPHONE_ACTION_MULTI,
|
2007-04-28 17:31:41 +00:00
|
|
|
SMARTPHONE_ACTION_BINDKEYS,
|
|
|
|
SMARTPHONE_ACTION_KEYBOARD,
|
|
|
|
SMARTPHONE_ACTION_ROTATE,
|
|
|
|
SMARTPHONE_ACTION_QUIT,
|
|
|
|
|
|
|
|
SMARTPHONE_ACTION_LAST
|
2004-05-09 14:57:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-07-05 20:22:56 +00:00
|
|
|
class CEActionsSmartphone : public GUI::Actions {
|
2010-10-31 17:11:43 +00:00
|
|
|
public:
|
|
|
|
// Actions
|
|
|
|
bool perform(GUI::ActionType action, bool pushed = true);
|
|
|
|
Common::String actionName(GUI::ActionType action);
|
|
|
|
int size();
|
|
|
|
static void init();
|
|
|
|
void initInstanceMain(OSystem *mainSystem);
|
|
|
|
void initInstanceGame();
|
2004-05-09 14:57:04 +00:00
|
|
|
|
2010-10-31 17:11:43 +00:00
|
|
|
// Action domain
|
|
|
|
Common::String domain();
|
|
|
|
int version();
|
2004-05-09 14:57:04 +00:00
|
|
|
|
2010-10-31 17:11:43 +00:00
|
|
|
~CEActionsSmartphone();
|
|
|
|
private:
|
|
|
|
CEActionsSmartphone();
|
2011-06-10 23:07:46 +00:00
|
|
|
WINCESdlGraphicsManager *_graphicsMan;
|
2010-10-31 17:11:43 +00:00
|
|
|
bool _right_click_needed;
|
|
|
|
OSystem_WINCE3 *_CESystem;
|
|
|
|
};
|
2004-05-09 14:57:04 +00:00
|
|
|
|
|
|
|
#endif
|