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.
nmWTAI-Platform/Include/nmNum/nmSubWxs/nmWxGridDlg.h

34 lines
646 B
C

#ifndef NMWXGRIDDLG_H
#define NMWXGRIDDLG_H
#include <QDialog>
#include "nmSubWxs_global.h"
class QLineEdit;
class QComboBox;
class NM_SUB_WXS_EXPORT nmWxGridDlg : public QDialog
{
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