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/GUIWidget/PropertyEmptyWidget.h

64 lines
1.3 KiB
C

/**
* @file PropertyEmptyWidget.h
* @brief
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-06-12
*/
#ifndef __PROPERTYEMPTYWIDGET_H__
#define __PROPERTYEMPTYWIDGET_H__
#include "GUIWidgetAPI.h"
#include "PropertyChildWidgetBase.h"
namespace Ui
{
class PropertyEmptyWidget;
}
namespace GUI
{
class MainWindow;
/**
* @brief
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-06-12
*/
class GUIWIDGETAPI PropertyEmptyWidget : public PropertyChildWidgetBase
{
Q_OBJECT
public:
/**
* @brief
* @param mainWindow
* @param tip
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-06-12
*/
PropertyEmptyWidget(MainWindow* mainWindow, QString tip = "");
/**
* @brief
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-06-12
*/
virtual ~PropertyEmptyWidget();
/**
* @brief
* @param info
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-06-12
*/
void setTip(QString info);
private:
/**
* @brief UI
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-06-12
*/
Ui::PropertyEmptyWidget* m_Ui{};
};
}
#endif // !__PROPERTYEMPTYWIDGET_H__