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.
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 <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