aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/maciconbar.h
diff options
context:
space:
mode:
authorMatthew Hoops2010-05-24 17:21:11 +0000
committerMatthew Hoops2010-05-24 17:21:11 +0000
commitd49fb8f42db7b9776f1dc426ebe2c6d806ad4720 (patch)
treee0760e8b76b8786f506a59dc62ef824b2304f1cd /engines/sci/graphics/maciconbar.h
parentad0eb0b06ef6c715280c21a1c036be5c56a3183a (diff)
downloadscummvm-rg350-d49fb8f42db7b9776f1dc426ebe2c6d806ad4720.tar.gz
scummvm-rg350-d49fb8f42db7b9776f1dc426ebe2c6d806ad4720.tar.bz2
scummvm-rg350-d49fb8f42db7b9776f1dc426ebe2c6d806ad4720.zip
Add support for showing the icon bar in SCI1.1 Mac.
svn-id: r49196
Diffstat (limited to 'engines/sci/graphics/maciconbar.h')
-rw-r--r--engines/sci/graphics/maciconbar.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/engines/sci/graphics/maciconbar.h b/engines/sci/graphics/maciconbar.h
new file mode 100644
index 0000000000..668e033f6c
--- /dev/null
+++ b/engines/sci/graphics/maciconbar.h
@@ -0,0 +1,55 @@
+/* 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 SCI_GRAPHICS_MACICONBAR_H
+#define SCI_GRAPHICS_MACICONBAR_H
+
+#include "common/array.h"
+
+#include "sci/engine/vm.h"
+
+namespace Graphics {
+ class Surface;
+}
+
+namespace Sci {
+
+class MacIconBar {
+public:
+ MacIconBar() {}
+ ~MacIconBar() {}
+
+ void addIcon(reg_t obj);
+ void drawIcons();
+
+private:
+ Common::Array<reg_t> _iconBarObjects;
+
+ void remapColors(Graphics::Surface *surf, byte *palette);
+};
+
+} // End of namespace Sci
+
+#endif