aboutsummaryrefslogtreecommitdiff
path: root/backends/vkeybd/image-map.h
diff options
context:
space:
mode:
authorStephen Kennedy2008-08-07 16:38:39 +0000
committerStephen Kennedy2008-08-07 16:38:39 +0000
commit2645ca48ad9bc219b43ab88cc5b071952297a992 (patch)
treed1383869820354fb99560d630c0d694535d5ad61 /backends/vkeybd/image-map.h
parent66e4e3ec1a038bc653bb1c04893c39033ac3fb62 (diff)
downloadscummvm-rg350-2645ca48ad9bc219b43ab88cc5b071952297a992.tar.gz
scummvm-rg350-2645ca48ad9bc219b43ab88cc5b071952297a992.tar.bz2
scummvm-rg350-2645ca48ad9bc219b43ab88cc5b071952297a992.zip
* Moved VK code into backends/vkeybd
* Moved Keymapper code into backends/keymapper svn-id: r33681
Diffstat (limited to 'backends/vkeybd/image-map.h')
-rw-r--r--backends/vkeybd/image-map.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/backends/vkeybd/image-map.h b/backends/vkeybd/image-map.h
new file mode 100644
index 0000000000..ed6feaa26e
--- /dev/null
+++ b/backends/vkeybd/image-map.h
@@ -0,0 +1,53 @@
+/* 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.
+ *
+ * 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
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * $URL$
+ * $Id$
+ *
+ */
+
+#ifndef COMMON_IMAGEMAP_H
+#define COMMON_IMAGEMAP_H
+
+#include "common/hashmap.h"
+#include "common/hash-str.h"
+#include "backends/vkeybd/polygon.h"
+
+namespace Common {
+
+class ImageMap {
+
+public:
+
+ ~ImageMap();
+
+ Polygon *createArea(const String& id);
+ void removeArea(const String& id);
+ void removeAllAreas();
+ String findMapArea(int16 x, int16 y);
+
+protected:
+ HashMap<String, Polygon*> _areas;
+};
+
+
+} // End of namespace Common
+
+#endif