ULRE/inc/hgl/gui/ThemeForm.h

27 lines
526 B
C
Raw Normal View History

2020-10-21 11:44:33 +08:00
#ifndef HGL_GUI_THEME_FORM_INCLUDE
#define HGL_GUI_THEME_FORM_INCLUDE
#include<hgl/graph/VKRenderTarget.h>
#include<hgl/gui/Form.h>
namespace hgl
{
namespace gui
{
class ThemeForm
{
protected:
Form *form;
2020-10-21 12:47:06 +08:00
hgl::graph::RenderTarget *render_target;
2020-10-21 11:44:33 +08:00
public:
ThemeForm(Form *);
2020-10-21 12:47:06 +08:00
void SetRenderTarget(hgl::graph::RenderTarget *);
2020-10-21 11:44:33 +08:00
};//class ThemeForm
}//namespace gui
}//namespace hgl
#endif//HGL_GUI_THEME_FORM_INCLUDE