2016-03-10 03:47:37 +00:00
|
|
|
#ifndef __URDE_CAUIIMAGEPANE_HPP__
|
|
|
|
#define __URDE_CAUIIMAGEPANE_HPP__
|
|
|
|
|
|
|
|
#include "CGuiWidget.hpp"
|
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
2017-01-22 01:40:12 +00:00
|
|
|
class CSimplePool;
|
2016-03-10 03:47:37 +00:00
|
|
|
|
|
|
|
class CAuiImagePane : public CGuiWidget
|
|
|
|
{
|
2017-01-22 01:40:12 +00:00
|
|
|
public:
|
|
|
|
CAuiImagePane(const CGuiWidgetParms& parms, CSimplePool* sp, ResId, ResId,
|
|
|
|
rstl::reserved_vector<zeus::CVector3f, 4>&& coords,
|
|
|
|
rstl::reserved_vector<zeus::CVector2f, 4>&& uvs, bool);
|
2017-01-29 03:58:16 +00:00
|
|
|
FourCC GetWidgetTypeID() const { return FOURCC('IMGP'); }
|
2017-01-22 01:40:12 +00:00
|
|
|
static std::shared_ptr<CGuiWidget> Create(CGuiFrame* frame, CInputStream& in, CSimplePool* sp);
|
2016-03-10 03:47:37 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __URDE_CAUIIMAGEPANE_HPP__
|