MainClient.h
上传用户:hbytzg
上传日期:2007-01-02
资源大小:47k
文件大小:2k
源码类别:

midi

开发平台:

Visual C++

  1. #if !defined(AFX_MAINCLIENT_H__0ED95743_DBDF_11D2_9146_0060082BE95D__INCLUDED_)
  2. #define AFX_MAINCLIENT_H__0ED95743_DBDF_11D2_9146_0060082BE95D__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // MainClient.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CMainClient window
  10. class CMainClient : public CWnd
  11. /***************************************************************
  12. | This class implements the MDI client window. It goes to work |
  13. | after subbclaess in CMainFrams::OnCreate. |
  14. | It's goal is to notify the frame window when a menu is changed|
  15. | ot when there are no open windows. |
  16. | Changed menu is notified with the message 'WM_MDISETMENU', |
  17. | implemented in 'DefWindowProc'. |
  18. | Closed (and opened) windows is notified in 'OnParentNotify'. |
  19. ***************************************************************/
  20. {
  21. // Construction
  22. public:
  23. CMainClient();
  24. // Attributes
  25. public:
  26. // Operations
  27. public:
  28. // Overrides
  29. // ClassWizard generated virtual function overrides
  30. //{{AFX_VIRTUAL(CMainClient)
  31. protected:
  32. virtual LRESULT DefWindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  33. //}}AFX_VIRTUAL
  34. // Implementation
  35. public:
  36. virtual ~CMainClient();
  37. // Generated message map functions
  38. protected:
  39. //{{AFX_MSG(CMainClient)
  40. afx_msg void OnParentNotify(UINT message, LPARAM lParam);
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. private:
  44. int m_nChilds;
  45. };
  46. /////////////////////////////////////////////////////////////////////////////
  47. //{{AFX_INSERT_LOCATION}}
  48. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  49. #endif // !defined(AFX_MAINCLIENT_H__0ED95743_DBDF_11D2_9146_0060082BE95D__INCLUDED_)