RectEditDlg.h 459 B

1234567891011121314151617181920212223242526
  1. #pragma once
  2. #include "resource.h"
  3. // CRectEditDlg dialog
  4. class CRectEditDlg : public CDialog
  5. {
  6. DECLARE_DYNAMIC(CRectEditDlg)
  7. public:
  8. CRectEditDlg(CWnd* pParent = NULL); // standard constructor
  9. virtual ~CRectEditDlg();
  10. // Dialog Data
  11. enum { IDD = IDD_RECT_EDIT };
  12. protected:
  13. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  14. DECLARE_MESSAGE_MAP()
  15. public:
  16. int m_left;
  17. int m_top;
  18. int m_right;
  19. int m_bottom;
  20. };