Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

68 lines
1.7 KiB

  1. // ChildFrm.h : interface of the CChildFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CHILDFRM_H__E012AF52_B9AA_447F_9BC5_FA792380A85F__INCLUDED_)
  5. #define AFX_CHILDFRM_H__E012AF52_B9AA_447F_9BC5_FA792380A85F__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CChildFrame : public CMDIChildWnd
  10. {
  11. DECLARE_DYNCREATE(CChildFrame)
  12. public:
  13. CChildFrame();
  14. // Attributes
  15. public:
  16. // Operations
  17. public:
  18. // Overrides
  19. // ClassWizard generated virtual function overrides
  20. //{{AFX_VIRTUAL(CChildFrame)
  21. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  22. //}}AFX_VIRTUAL
  23. // Implementation
  24. public:
  25. virtual ~CChildFrame();
  26. #ifdef _DEBUG
  27. virtual void AssertValid() const;
  28. virtual void Dump(CDumpContext& dc) const;
  29. #endif
  30. // Generated message map functions
  31. protected:
  32. //{{AFX_MSG(CChildFrame)
  33. afx_msg void OnSettings();
  34. afx_msg void OnDataSource1();
  35. afx_msg void OnDataSource2();
  36. afx_msg void OnDataSource3();
  37. afx_msg void OnUpdateDataSource1(CCmdUI* pCmdUI);
  38. afx_msg void OnUpdateDataSource2(CCmdUI* pCmdUI);
  39. afx_msg void OnUpdateDataSource3(CCmdUI* pCmdUI);
  40. afx_msg void OnGdiPlus();
  41. afx_msg void OnUpdateGdiPlus(CCmdUI* pCmdUI);
  42. afx_msg void OnComCtrl();
  43. afx_msg void OnUpdateComCtrl(CCmdUI* pCmdUI);
  44. afx_msg void OnPrivateAssembly();
  45. afx_msg void OnUpdatePrivateAssembly(CCmdUI* pCmdUI);
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. private:
  49. void Action();
  50. int m_nDataSource;
  51. int m_nUIObject;
  52. };
  53. /////////////////////////////////////////////////////////////////////////////
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_CHILDFRM_H__E012AF52_B9AA_447F_9BC5_FA792380A85F__INCLUDED_)