This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
#pragma once
#include <QObject>
#include "nmSubWnd_global.h"
class iRibbonXmlCmd;
class iSubWnd;
// 本来主要是为数值部分提供SubWnd初始化构造的方法
class NM_SUB_WND_EXPORT nmSubWndUtils : public QObject
{
Q_OBJECT
public:
/// @brief 构造窗体,根据RibbonXmlCmd
/// @note 权宜之计:此处构造的窗体,无需额外删除(析构),系统会统一处理
static iSubWnd* createSubWnd(iRibbonXmlCmd* pCmdInfo);
/// @brief 构造窗体,根据sID和sExt
/// @note sID和sExt也是来自于RibbonXmlCmd
static iSubWnd* createSubWnd(QString sID, QString sExt);
};