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.
|
|
|
|
|
#ifndef NMWXGRIDDLG_H
|
|
|
|
|
|
#define NMWXGRIDDLG_H
|
|
|
|
|
|
|
|
|
|
|
|
#include "iDlgBase.h"
|
|
|
|
|
|
|
|
|
|
|
|
#include "nmSubWxs_global.h"
|
|
|
|
|
|
|
|
|
|
|
|
class QLineEdit;
|
|
|
|
|
|
class QComboBox;
|
|
|
|
|
|
|
|
|
|
|
|
class NM_SUB_WXS_EXPORT nmWxGridDlg : public iDlgBase
|
|
|
|
|
|
{
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
explicit nmWxGridDlg(double *pPebiGridControl = NULL);
|
|
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
|
void on_save();
|
|
|
|
|
|
void on_pebiGridControlChanged(QString newValue);
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
void initUI();
|
|
|
|
|
|
QLineEdit* initPebiGridControlEdit();
|
|
|
|
|
|
QComboBox* initGridTypeComboBox();
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
// PEBI GridControl控制参数,对应HX_NWTM_GRID_INPUT::GridControl
|
|
|
|
|
|
double *m_pPebiGridControl;
|
|
|
|
|
|
double m_dPebiGridControlTmp;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // NMWXGRIDDLG_H
|