2010-11-03 20:21:08 +00:00
|
|
|
#ifndef MWGUI_DIALOGE_HISTORY_H
|
|
|
|
#define MWGUI_DIALOGE_HISTORY_H
|
|
|
|
#include <openengine/gui/layout.hpp>
|
|
|
|
|
|
|
|
namespace MWGui
|
|
|
|
{
|
|
|
|
using namespace MyGUI;
|
2012-03-22 14:10:29 +00:00
|
|
|
class DialogueHistory : public MyGUI::EditBox
|
2010-11-03 20:21:08 +00:00
|
|
|
{
|
2012-03-22 14:10:29 +00:00
|
|
|
MYGUI_RTTI_DERIVED( DialogueHistory )
|
2010-11-03 20:21:08 +00:00
|
|
|
public:
|
|
|
|
Widget* getClient() { return mClient; }
|
|
|
|
UString getColorAtPos(size_t _pos);
|
|
|
|
UString getColorTextAt(size_t _pos);
|
|
|
|
void addDialogHeading(const UString& parText);
|
|
|
|
void addDialogText(const UString& parText);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|