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
650 B
C++

This file contains ambiguous Unicode characters!

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.

#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