aboutsummaryrefslogtreecommitdiff
path: root/graphics/macgui/mactextwindow.h
diff options
context:
space:
mode:
authorVelocityRa2017-04-02 01:34:15 +0300
committerEugene Sandulenko2017-07-17 23:45:22 +0200
commitf2f420e15fb1b7f1e8e9897550bbc0abbca438c8 (patch)
tree48ff35497a60dddbd0fdb6c352e6273912c43854 /graphics/macgui/mactextwindow.h
parentb28a4a8c3d4175d90b444cbc0a51508f6f8cc753 (diff)
downloadscummvm-rg350-f2f420e15fb1b7f1e8e9897550bbc0abbca438c8.tar.gz
scummvm-rg350-f2f420e15fb1b7f1e8e9897550bbc0abbca438c8.tar.bz2
scummvm-rg350-f2f420e15fb1b7f1e8e9897550bbc0abbca438c8.zip
GRAPHICS: Skeleton of MacTextWindow
Needed to add 2 helper methods to MacWindowManager to make it cleaner
Diffstat (limited to 'graphics/macgui/mactextwindow.h')
-rw-r--r--graphics/macgui/mactextwindow.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/graphics/macgui/mactextwindow.h b/graphics/macgui/mactextwindow.h
new file mode 100644
index 0000000000..2e1cf4f3fe
--- /dev/null
+++ b/graphics/macgui/mactextwindow.h
@@ -0,0 +1,36 @@
+/* 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_MACTEXTWINDOW_H
+#define GRAPHICS_MACGUI_MACTEXTWINDOW_H
+
+namespace Graphics {
+
+class MacTextWindow : public MacWindow {
+public:
+ MacTextWindow(MacWindowManager *wm);
+ ~MacTextWindow();
+};
+
+} // End of namespace Graphics
+
+#endif