Skip to content

Commit

Permalink
GRAPHICS: Added stub for MacText class
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Dec 14, 2016
1 parent 9700fcb commit 34a9c58
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 0 deletions.
32 changes: 32 additions & 0 deletions 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
42 changes: 42 additions & 0 deletions 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
1 change: 1 addition & 0 deletions graphics/module.mk
Expand Up @@ -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 \
Expand Down

0 comments on commit 34a9c58

Please sign in to comment.