mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 12:42:11 +00:00
21 lines
541 B
C++
21 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
|
|
|