forked from teamnwah/openmw-tes3coop
20 lines
541 B
C++
20 lines
541 B
C++
#ifndef MWGUI_DIALOGE_HISTORY_H
|
|
#define MWGUI_DIALOGE_HISTORY_H
|
|
#include <openengine/gui/layout.hpp>
|
|
|
|
namespace MWGui
|
|
{
|
|
using namespace MyGUI;
|
|
class DialogeHistory : public MyGUI::Edit
|
|
{
|
|
MYGUI_RTTI_DERIVED( DialogeHistory )
|
|
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
|
|
|