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.

55 lines
1.3 KiB

  1. // ChildView.h : interface of the CChildView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CHILDVIEW_H__DFC11891_3A2B_46FF_B8E7_BE8A1D4B2473__INCLUDED_)
  5. #define AFX_CHILDVIEW_H__DFC11891_3A2B_46FF_B8E7_BE8A1D4B2473__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CChildView window
  11. class CChildView : public CWnd
  12. {
  13. // Construction
  14. public:
  15. CChildView();
  16. // Attributes
  17. public:
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CChildView)
  23. protected:
  24. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. public:
  28. virtual ~CChildView();
  29. // Generated message map functions
  30. protected:
  31. //{{AFX_MSG(CChildView)
  32. afx_msg void OnPaint();
  33. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  34. afx_msg void OnSize(UINT nType, int cx, int cy);
  35. //}}AFX_MSG
  36. DECLARE_MESSAGE_MAP()
  37. HWND _hwndEdit;
  38. };
  39. /////////////////////////////////////////////////////////////////////////////
  40. //{{AFX_INSERT_LOCATION}}
  41. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  42. #endif // !defined(AFX_CHILDVIEW_H__DFC11891_3A2B_46FF_B8E7_BE8A1D4B2473__INCLUDED_)