MainFrm.h
上传用户:xuemeng126
上传日期:2022-07-05
资源大小:454k
文件大小:2k
源码类别:

系统编程

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__6BA44DF3_6A40_437B_AFCE_3CC117F0E033__INCLUDED_)
  5. #define AFX_MAINFRM_H__6BA44DF3_6A40_437B_AFCE_3CC117F0E033__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CMainFrame : public CFrameWnd
  10. {
  11. protected: // create from serialization only
  12. CMainFrame();
  13. DECLARE_DYNCREATE(CMainFrame)
  14. // Attributes
  15. public:
  16. // Operations
  17. public:
  18. // Overrides
  19. // ClassWizard generated virtual function overrides
  20. //{{AFX_VIRTUAL(CMainFrame)
  21. public:
  22. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  23. virtual BOOL Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext = NULL);
  24. //}}AFX_VIRTUAL
  25. // Implementation
  26. public:
  27. virtual ~CMainFrame();
  28. CString ShowSelectDirectoryDlg(const CString &strDlgTitle); 
  29. #ifdef _DEBUG
  30. virtual void AssertValid() const;
  31. virtual void Dump(CDumpContext& dc) const;
  32. #endif
  33. protected:  // control bar embedded members
  34. CStatusBar  m_wndStatusBar;
  35. CToolBar    m_wndToolBar;
  36. // Generated message map functions
  37. protected:
  38. //{{AFX_MSG(CMainFrame)
  39. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  40. afx_msg void OnMenuitemHook();
  41. afx_msg void OnMenuitemProcessname();
  42. afx_msg void OnToolbarButtonClear();
  43. afx_msg void OnFileOpen();
  44. afx_msg void OnMenuitemUnhook();
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. };
  48. /////////////////////////////////////////////////////////////////////////////
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  51. #endif // !defined(AFX_MAINFRM_H__6BA44DF3_6A40_437B_AFCE_3CC117F0E033__INCLUDED_)