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.
41 lines
804 B
C++
41 lines
804 B
C++
/**
|
|
* @file GroupPropertyWidget.h
|
|
* @brief 图形(组)属性面板
|
|
* @author YanZhiHui (chanyuantiandao@126.com)
|
|
* @date 2024-06-11
|
|
*/
|
|
#ifndef __GROUPPROPERTYWIDGET_H__
|
|
#define __GROUPPROPERTYWIDGET_H__
|
|
|
|
#include "PanelWidgetBase.h"
|
|
|
|
namespace GUI
|
|
{
|
|
class MainWindow;
|
|
/**
|
|
* @brief 图形(组)属性面板类
|
|
* @author YanZhiHui (chanyuantiandao@126.com)
|
|
* @date 2024-06-11
|
|
*/
|
|
class GroupPropertyWidget : public PanelWidgetBase
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
/**
|
|
* @brief 构造函数
|
|
* @param parent 父窗口对象
|
|
* @since 1.0.0
|
|
*/
|
|
GroupPropertyWidget(MainWindow *mainWindow);
|
|
/**
|
|
* @brief 析构函数
|
|
* @author YanZhiHui (chanyuantiandao@126.com)
|
|
* @date 2024-06-11
|
|
*/
|
|
~GroupPropertyWidget();
|
|
|
|
};
|
|
}
|
|
|
|
#endif // !__GROUPPROPERTYWIDGET_H__
|