mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 12:49:56 +00:00
20 lines
546 B
C++
20 lines
546 B
C++
#ifndef MWGUI_DIALOGE_HISTORY_H
|
|
#define MWGUI_DIALOGE_HISTORY_H
|
|
#include <openengine/gui/layout.hpp>
|
|
|
|
namespace MWGui
|
|
{
|
|
using namespace MyGUI;
|
|
class DialogueHistory : public MyGUI::EditBox
|
|
{
|
|
MYGUI_RTTI_DERIVED( DialogueHistory )
|
|
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
|
|
|