ComparePhoto.h 841 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #if !defined(AFX_COMPAREPHOTO_H__767BF3C3_BAEE_44AD_B16A_A9A11C2428C9__INCLUDED_)
  2. #define AFX_COMPAREPHOTO_H__767BF3C3_BAEE_44AD_B16A_A9A11C2428C9__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif
  6. /////////////////////////////////////////////////////////////////////////////
  7. class CComparePhoto : public CDialog
  8. {
  9. Image *m_pImage;
  10. Image *m_pImage2;
  11. Image *m_pImage3;
  12. Image *m_pImage4;
  13. public:
  14. CComparePhoto(CWnd* pParent = NULL); // standard constructor
  15. CString m_path1;
  16. CString m_path2;
  17. CString m_path3;
  18. CString m_path4;
  19. enum { IDD = IDD_DLGComparePhoto };
  20. protected:
  21. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  22. protected:
  23. virtual BOOL OnInitDialog();
  24. afx_msg void OnPaint();
  25. afx_msg void OnDestroy();
  26. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  27. DECLARE_MESSAGE_MAP()
  28. };
  29. #endif