2013-04-10 04:32:05 +00:00
|
|
|
#ifndef MWGUI_DIALOGE_HISTORY_H
|
|
|
|
#define MWGUI_DIALOGE_HISTORY_H
|
2013-04-11 04:21:56 +00:00
|
|
|
|
2013-04-10 04:32:05 +00:00
|
|
|
#include <openengine/gui/layout.hpp>
|
|
|
|
|
|
|
|
namespace MWGui
|
|
|
|
{
|
|
|
|
class DialogueHistory : public MyGUI::EditBox
|
|
|
|
{
|
|
|
|
MYGUI_RTTI_DERIVED( DialogueHistory )
|
|
|
|
public:
|
|
|
|
Widget* getClient() { return mClient; }
|
|
|
|
MyGUI::UString getColorAtPos(size_t _pos);
|
|
|
|
MyGUI::UString getColorTextAt(size_t _pos);
|
|
|
|
void addDialogHeading(const MyGUI::UString& parText);
|
|
|
|
void addDialogText(const MyGUI::UString& parText);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|