MyGUI  3.2.1
MyGUI_SimpleText.h
Go to the documentation of this file.
00001 /*
00002  * This source file is part of MyGUI. For the latest info, see http://mygui.info/
00003  * Distributed under the MIT License
00004  * (See accompanying file COPYING.MIT or copy at http://opensource.org/licenses/MIT)
00005  */
00006 
00007 #ifndef __MYGUI_SIMPLE_TEXT_H__
00008 #define __MYGUI_SIMPLE_TEXT_H__
00009 
00010 #include "MyGUI_Prerequest.h"
00011 #include "MyGUI_XmlDocument.h"
00012 #include "MyGUI_Types.h"
00013 #include "MyGUI_ISubWidgetText.h"
00014 #include "MyGUI_EditText.h"
00015 
00016 namespace MyGUI
00017 {
00018 
00019     class MYGUI_EXPORT SimpleText :
00020         public EditText
00021     {
00022         MYGUI_RTTI_DERIVED( SimpleText )
00023 
00024     public:
00025         SimpleText();
00026         virtual ~SimpleText();
00027 
00028         virtual void setViewOffset(const IntPoint& _point);
00029 
00030         virtual void doRender();
00031     };
00032 
00033 } // namespace MyGUI
00034 
00035 #endif // __MYGUI_SIMPLE_TEXT_H__