BkDialog.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #ifndef _BKDIALOG_H_
  2. #define _BKDIALOG_H_
  3. #include "BackgroundUtil.h"
  4. #if _MSC_VER >= 1000
  5. #pragma once
  6. #endif // _MSC_VER >= 1000
  7. /////////////////////////////////////////////////////////////////////////////
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CBkDialog dialog
  10. class CBkDialog : public CDialog, public CBackgroundUtil
  11. {
  12. // Construction
  13. public:
  14. CDC* m_pDC;
  15. ~CBkDialog();
  16. CBkDialog(LPCTSTR pszResourceID, CWnd* pParent = NULL);
  17. CBkDialog(UINT uResourceID, CWnd* pParent = NULL);
  18. CBkDialog(CWnd* pParent = NULL); // standard constructor
  19. // Dialog Data
  20. //{{AFX_DATA(CBkDialog)
  21. // NOTE: the ClassWizard will add data members here
  22. //}}AFX_DATA
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CBkDialog)
  26. protected:
  27. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. protected:
  31. // Generated message map functions
  32. //{{AFX_MSG(CBkDialog)
  33. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  34. //}}AFX_MSG
  35. DECLARE_MESSAGE_MAP()
  36. };
  37. //{{AFX_INSERT_LOCATION}}
  38. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  39. #endif