From 34a9c588b001e137243f12ae8de3bc82d692de27 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Wed, 14 Dec 2016 19:20:26 +0100 Subject: GRAPHICS: Added stub for MacText class --- graphics/macgui/mactext.h | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 graphics/macgui/mactext.h (limited to 'graphics/macgui/mactext.h') diff --git a/graphics/macgui/mactext.h b/graphics/macgui/mactext.h new file mode 100644 index 0000000000..694e14e55e --- /dev/null +++ b/graphics/macgui/mactext.h @@ -0,0 +1,42 @@ +/* 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. + * + */ + +#ifndef GRAPHICS_MACGUI_MACTEXT_H +#define GRAPHICS_MACGUI_MACTEXT_H + +#include "graphics/fontman.h" + +namespace Graphics { + +class MacText { +public: + MacText(Common::String s, Graphics::Font *font, int maxWidth = -1); + +private: + Common::String _str; + Graphics::Font *_font; + int _maxWidth; +}; + +} // End of namespace Graphics + +#endif -- cgit v1.2.3