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.
66 lines
1.5 KiB
C++
66 lines
1.5 KiB
C++
//////////////////////////////////////////////////////////////////////////////
|
|
//文件: CTaperDlg.cpp
|
|
//主要功能:
|
|
// 投影参数设置
|
|
//
|
|
//程序编写: 2008-11-09
|
|
//
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_TAPERDLG_H__00090832_907F_4DC1_91B3_218CA8195423__INCLUDED_)
|
|
#define AFX_TAPERDLG_H__00090832_907F_4DC1_91B3_218CA8195423__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
// TaperDlg.h : header file
|
|
//
|
|
|
|
#include "Resource.h"
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CTaperDlg dialog
|
|
|
|
class CTaperDlg : public CDialog
|
|
{
|
|
// Construction
|
|
public:
|
|
CString SetParameter(BOOL bFlag);
|
|
void GetParameter(CString string);
|
|
CString string;
|
|
CTaperDlg(CWnd* pParent = NULL); // standard constructor
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CTaperDlg)
|
|
enum { IDD = IDD_DIALOGTaper };
|
|
double bs;
|
|
double l0;
|
|
double b1;
|
|
double b2;
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CTaperDlg)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CTaperDlg)
|
|
virtual BOOL OnInitDialog();
|
|
virtual void OnOK();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_TAPERDLG_H__00090832_907F_4DC1_91B3_218CA8195423__INCLUDED_)
|