add ThemeForm,DTForm

This commit is contained in:
2020-10-21 11:44:33 +08:00
parent 917424e784
commit 6dae81ac93
4 changed files with 78 additions and 0 deletions

26
inc/hgl/gui/ThemeForm.h Normal file
View File

@@ -0,0 +1,26 @@
#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;
hgl::graph::vulkan::RenderTarget *render_target;
public:
ThemeForm(Form *);
void SetRenderTarget(hgl::graph::vulkan::RenderTarget *);
};//class ThemeForm
}//namespace gui
}//namespace hgl
#endif//HGL_GUI_THEME_FORM_INCLUDE