From d49fb8f42db7b9776f1dc426ebe2c6d806ad4720 Mon Sep 17 00:00:00 2001 From: Matthew Hoops Date: Mon, 24 May 2010 17:21:11 +0000 Subject: Add support for showing the icon bar in SCI1.1 Mac. svn-id: r49196 --- engines/sci/graphics/maciconbar.h | 55 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 engines/sci/graphics/maciconbar.h (limited to 'engines/sci/graphics/maciconbar.h') 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 _iconBarObjects; + + void remapColors(Graphics::Surface *surf, byte *palette); +}; + +} // End of namespace Sci + +#endif -- cgit v1.2.3