aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/gui/gui_portrait.h
diff options
context:
space:
mode:
authorMartin Kiewitz2009-10-31 19:48:28 +0000
committerMartin Kiewitz2009-10-31 19:48:28 +0000
commitb29fd4dacd54e672ffa52179dd02e0367ef14707 (patch)
tree3d78e54a7fb9d8a5689ce56f2c20cf7e88f24e18 /engines/sci/gui/gui_portrait.h
parent6205c5f4de3c02148b2cf5251e1b34a522dfbf1c (diff)
downloadscummvm-rg350-b29fd4dacd54e672ffa52179dd02e0367ef14707.tar.gz
scummvm-rg350-b29fd4dacd54e672ffa52179dd02e0367ef14707.tar.bz2
scummvm-rg350-b29fd4dacd54e672ffa52179dd02e0367ef14707.zip
SCI/newgui: SciGuiPortrait created
svn-id: r45579
Diffstat (limited to 'engines/sci/gui/gui_portrait.h')
-rw-r--r--engines/sci/gui/gui_portrait.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/engines/sci/gui/gui_portrait.h b/engines/sci/gui/gui_portrait.h
new file mode 100644
index 0000000000..3305c53f93
--- /dev/null
+++ b/engines/sci/gui/gui_portrait.h
@@ -0,0 +1,49 @@
+/* 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_GUI_PORTRAITS_H
+#define SCI_GUI_PORTRAITS_H
+
+namespace Sci {
+
+class SciGuiPortrait {
+public:
+ SciGuiPortrait(ResourceManager *resMan, SciGuiScreen *screen, SciGuiPalette *palette, Common::String resourceName);
+ ~SciGuiPortrait();
+
+private:
+ void init(void);
+
+ ResourceManager *_resMan;
+ SciGuiScreen *_screen;
+ SciGuiPalette *_palette;
+
+ Common::String _resourceName;
+ byte *_resourceData;
+};
+
+} // End of namespace Sci
+
+#endif