You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AppFlow/GUIFrame/PropertyWidget.h

41 lines
835 B
C++

/**
* @file PropertyWidget.h
* @brief 属性面板子部件
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-06-11
*/
#ifndef __PROPERTYWINDOW_H__
#define __PROPERTYWINDOW_H__
#include "GUIFrameAPI.h"
#include "PanelWidgetBase.h"
namespace GUI
{
/**
* @brief 属性面板子部件类
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-06-11
*/
class GUIFRAMEAPI PropertyWidget : public PanelWidgetBase
{
Q_OBJECT
public:
/**
* @brief 构造函数
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-06-11
*/
explicit PropertyWidget(MainWindow *mainWindow);
/**
* @brief 析构函数
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-06-11
*/
~PropertyWidget() = default;
void init();
};
}
#endif // !__PROPERTYWINDOW_H__