⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mymappdlg.h

📁 用C++中的MFC编程实现正轴等角割圆柱投影
💻 H
字号:
// mymappDlg.h : header file
//

#if !defined(AFX_MYMAPPDLG_H__B15EF038_5E46_4B8D_AC5B_51354285E16C__INCLUDED_)
#define AFX_MYMAPPDLG_H__B15EF038_5E46_4B8D_AC5B_51354285E16C__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "stdafx.h"
#include "mymapp.h"
#include "mymappDlg.h"
#include "math.h"
#include <string>
#include  <iostream>
#include  <vector>
#include  <list>
#include  <time.h>
#include <algorithm>
#include <stdlib.h>
#include <fstream>
using namespace std;

/////////////////////////////////////////////////////////////////////////////
// CMymappDlg dialog

class CMymappDlg : public CDialog
{
// Construction
public:
	std::fstream m_file;
	char *m_filename;
	list<double> mylist;
	bool m_marktag;
	CMymappDlg(CWnd* pParent = NULL);	// standard constructor

// Dialog Data
	//{{AFX_DATA(CMymappDlg)
	enum { IDD = IDD_MYMAPP_DIALOG };
	CButton	m_OpenC;
	CButton	m_SaveC;
	CListCtrl	m_List;
	CButton	m_AreaPC;
	CButton	m_PointPC;
	CEdit	m_LC;
	CEdit	m_BC;
	CEdit	m_dLC;
	CEdit	m_dBC;
	CEdit	m_BSmallC;
	CEdit	m_BLargeC;
	CEdit	m_LLargeC;
	CEdit	m_LSmallC;
	int		m_B;
	int		m_BLarge;
	int		m_BSmall;
	int		m_dB;
	int		m_dL;
	int		m_L;
	int		m_LLarge;
	int		m_LSmall;
	long	m_M;
	int		m_radio;
	int		m_Bk;
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CMymappDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CMymappDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnBUTTONAreaP();
	afx_msg void OnBUTTONPointP();
	afx_msg void OnRadioPoint();
	afx_msg void OnRadioArea();
	afx_msg void OnBUTTONSave();
	afx_msg void OnBUTTONOpen();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_MYMAPPDLG_H__B15EF038_5E46_4B8D_AC5B_51354285E16C__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -