ULRE/inc/hgl/gui/Form.h

29 lines
564 B
C
Raw Permalink Normal View History

#ifndef HGL_GUI_FORM_INCLUDE
#define HGL_GUI_FORM_INCLUDE
#include<hgl/graph/VKPipeline.h>
#include<hgl/gui/Widget.h>
namespace hgl
{
namespace gui
{
using namespace hgl::graph;
/**
* GUI控件的基本装置
*/
class Form:public Widget
{
2020-10-26 21:51:51 +08:00
protected:
public:
Form(ThemeEngine *te=nullptr):Widget(nullptr,te){}
virtual ~Form()=default;
2020-10-26 21:51:51 +08:00
};//class Form
}//namespace gui
}//namespace hgl
#endif//HGL_GUI_FORM_INCLUDE