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.
nmWATI/Src/nmNum/nmSubWnd/nmSubWndUtils.cpp

86 lines
2.3 KiB
C++

#include "zxLogInstance.h"
#include "iRibbonXmlCmd.h"
#include "nmSubWndMain.h"
#include "nmSubWndGrid.h"
#include "nmSubWndPostprocessing.h"
#include "nmSubWndUtils.h"
#include "nmWxNewNormalDlg.h"
#include "nmWxParaProperty.h"
#include "nmDataDemo.h"
#include<QDialog>
iSubWnd* nmSubWndUtils::createSubWnd(iRibbonXmlCmd* pCmdInfo)
{
if (NULL == pCmdInfo) {
return NULL;
}
return createSubWnd(pCmdInfo->m_sID, pCmdInfo->m_sExtInfo);
}
iSubWnd* nmSubWndUtils::createSubWnd(QString sID, QString sExt)
{
iSubWnd* pSubWnd = NULL;
// Here is your own codes
int nID = sID.toInt();
if (nID == 5101) {
// 初始化一个数据类
// TODO先弹窗做新建分析再创建subWnd
nmWxNewNormalDlg dlg(NULL);
if(dlg.exec() == QDialog::Rejected) {
// 对话框被用户显式拒绝
// 在这里处理你的逻辑
return nullptr;
}
nmSubWndMain* pSubWndDemo = new nmSubWndMain(NULL, sExt);
pSubWnd = pSubWndDemo;
} else if (nID == 5401) {
// 网格
nmSubWndGrid* pSubWndGrid = new nmSubWndGrid(NULL, sExt);
pSubWnd = pSubWndGrid;
} else if (nID == 5601) {
// 后处理
nmSubWndPostprocessing* pSubWndPostProcessing = new nmSubWndPostprocessing(NULL, sExt);
pSubWnd = pSubWndPostProcessing;
}
if (NULL != pSubWnd) {
// TODO 此处根据需要设置 改变 标识
pSubWnd->setModified(true);
}
return pSubWnd;
}
bool nmSubWndUtils::runCmdBySpecial(iRibbonXmlCmd* pCmdInfo)
{
if (NULL == pCmdInfo) {
return false;
}
return runCmdBySpecial(pCmdInfo->m_sID, pCmdInfo->m_sExtInfo);
}
bool nmSubWndUtils::runCmdBySpecial(QString sID, QString sExt)
{
// Here is your own codes
if (_isSame(sID, "12345")) {
QMessageBox::information(NULL, zxAppID, QObject::tr("I am abc"));
return true;
} else {
return false;
}
}
bool nmSubWndUtils::isEnableOfID_Common(QString sID, QString sName, const bool bLicensed)
{
// 如果是5101即 新建PVT
if (sID.toInt() == 5101) {
return true;
}
// Here is your own codes
if (_isSame(sName, "NmDemo")) {
return (bLicensed);
} else {
return false;
}
}