MACRODG.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. #if !defined(AFX_MACRODLG_H__C4B24B98_0D5D_11D1_8E2F_00C04FB68D60__INCLUDED_)
  2. #define AFX_MACRODLG_H__C4B24B98_0D5D_11D1_8E2F_00C04FB68D60__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // MacroDlg.H : header file
  7. //
  8. class CScript;
  9. class CScriptManager;
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CMacroDlg dialog
  12. class CMacroDlg :
  13.    public CDialog
  14. {
  15. // Construction
  16. public:
  17. CMacroDlg( CWnd* pParent = NULL );   // standard constructor
  18. // Dialog Data
  19. //{{AFX_DATA(CMacroDlg)
  20. enum { IDD = IDD_MACRO };
  21. CButton m_butRun;
  22. CListBox    m_lbMacros;
  23. CString m_strMacroName;
  24. //}}AFX_DATA
  25.    CScriptManager* m_pScriptManager;
  26.    CScript* m_pScript;
  27. // Overrides
  28. // ClassWizard generated virtual function overrides
  29. //{{AFX_VIRTUAL(CMacroDlg)
  30. protected:
  31. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. protected:
  35.    void UpdateMacroList();
  36. // Generated message map functions
  37. //{{AFX_MSG(CMacroDlg)
  38. virtual BOOL OnInitDialog();
  39. afx_msg void OnOpenFile();
  40. afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
  41. afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. };
  45. //{{AFX_INSERT_LOCATION}}
  46. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  47. #endif // !defined(AFX_MACRODLG_H__C4B24B98_0D5D_11D1_8E2F_00C04FB68D60__INCLUDED_)