aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2016-12-14 19:20:26 +0100
committerEugene Sandulenko2016-12-14 20:10:32 +0100
commit34a9c588b001e137243f12ae8de3bc82d692de27 (patch)
tree7f77ae0014108ece46bf8077262a167ac9cb4430
parent9700fcbc548ff962e3a163da650bae18a4f192e4 (diff)
downloadscummvm-rg350-34a9c588b001e137243f12ae8de3bc82d692de27.tar.gz
scummvm-rg350-34a9c588b001e137243f12ae8de3bc82d692de27.tar.bz2
scummvm-rg350-34a9c588b001e137243f12ae8de3bc82d692de27.zip
GRAPHICS: Added stub for MacText class
-rw-r--r--graphics/macgui/mactext.cpp32
-rw-r--r--graphics/macgui/mactext.h42
-rw-r--r--graphics/module.mk1
3 files changed, 75 insertions, 0 deletions
diff --git a/graphics/macgui/mactext.cpp b/graphics/macgui/mactext.cpp
new file mode 100644
index 0000000000..20b2ef686b
--- /dev/null
+++ b/graphics/macgui/mactext.cpp
@@ -0,0 +1,32 @@
+/* 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.
+ */
+
+#include "graphics/macgui/mactext.h"
+
+namespace Graphics {
+
+MacText::MacText(Common::String s, Graphics::Font *font, int maxWidth) {
+ _str = s;
+ _font = font;
+ _maxWidth = maxWidth;
+}
+
+} // End of namespace Graphics
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
diff --git a/graphics/module.mk b/graphics/module.mk
index b6e704bc29..51e2ef7f2d 100644
--- a/graphics/module.mk
+++ b/graphics/module.mk
@@ -14,6 +14,7 @@ MODULE_OBJS := \
maccursor.o \
macgui/macfontmanager.o \
macgui/macmenu.o \
+ macgui/mactext.o \
macgui/macwindow.o \
macgui/macwindowborder.o \
macgui/macwindowmanager.o \