2016-03-10 03:47:37 +00:00
|
|
|
#ifndef __URDE_CGUITEXTPANE_HPP__
|
|
|
|
#define __URDE_CGUITEXTPANE_HPP__
|
|
|
|
|
2016-03-12 04:58:56 +00:00
|
|
|
#include "CGuiPane.hpp"
|
2016-03-18 03:35:16 +00:00
|
|
|
#include "CGuiTextSupport.hpp"
|
2016-03-10 03:47:37 +00:00
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
|
2016-03-12 04:58:56 +00:00
|
|
|
class CGuiTextPane : public CGuiPane
|
|
|
|
{
|
2016-03-22 02:27:46 +00:00
|
|
|
CGuiTextSupport x114_textSupport;
|
2016-03-12 04:58:56 +00:00
|
|
|
public:
|
2016-03-22 02:27:46 +00:00
|
|
|
CGuiTextPane(const CGuiWidgetParms& parms, float xDim, float zDim, const zeus::CVector3f& vec,
|
|
|
|
TResId fontId, const CGuiTextProperties& props, const zeus::CColor& col1,
|
|
|
|
const zeus::CColor& col2, s32 padX, s32 padY);
|
|
|
|
FourCC GetWidgetTypeID() const {return FOURCC('TXPN');}
|
|
|
|
|
|
|
|
CGuiTextSupport* TextSupport() {return &x114_textSupport;}
|
|
|
|
const CGuiTextSupport* GetTextSupport() const {return &x114_textSupport;}
|
|
|
|
void Update(float dt);
|
|
|
|
bool GetIsFinishedLoadingWidgetSpecific() const;
|
|
|
|
std::vector<TResId> GetFontAssets() const {return {x114_textSupport.x50_fontId};}
|
|
|
|
void SetDimensions(const zeus::CVector2f& dim, bool initVBO);
|
|
|
|
void ScaleDimensions(const zeus::CVector3f& scale);
|
|
|
|
void Draw(const CGuiWidgetDrawParms& parms) const;
|
|
|
|
|
2016-03-12 04:58:56 +00:00
|
|
|
static CGuiTextPane* Create(CGuiFrame* frame, CInputStream& in, bool);
|
|
|
|
};
|
2016-03-10 03:47:37 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __URDE_CGUITEXTPANE_HPP__
|