00001 #pragma once
00002 #include <iostream>
00003 #include <fstream>
00004 #include "afxwin.h"
00005
00006
00007
00008 class CDiaAddAction : public CDialog
00009 {
00010 DECLARE_DYNAMIC(CDiaAddAction)
00011
00012 public:
00013 CDiaAddAction(CWnd* pParent = NULL);
00014 virtual ~CDiaAddAction();
00015
00016
00017 enum { IDD = IDD_DIAADDACTION };
00018
00019 protected:
00020 virtual void DoDataExchange(CDataExchange* pDX);
00021
00022 DECLARE_MESSAGE_MAP()
00023 public:
00024 CString m_TopX;
00025 CString m_TopY;
00026 CString m_BottomX;
00027 CString m_BottomY;
00028 CString m_Param;
00029 CString m_EditAction;
00030 CString m_EditEvent;
00031 afx_msg void OnBnClickedButton1();
00032 afx_msg void OnBnClickedButton2();
00033 };