1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
#pragma once
#include "afxwin.h"
// CSourceDlg dialog
class CSourceDlg : public CDialog
{
DECLARE_DYNAMIC(CSourceDlg)
public:
CSourceDlg(CWnd* pParent = NULL); // standard constructor
virtual ~CSourceDlg();
BOOL OnInitDialog();
// Dialog Data
enum { IDD = IDD_DIALOG2 };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
DECLARE_MESSAGE_MAP()
public:
CButton allmap;
CEdit mousedist;
afx_msg void OnBnClickedOk();
afx_msg void OnBnClickedCancel();
int tset;
};
|