home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2001 July / VPR0107B.BIN / DRIVER / CANOPUS / MVR32 / mvr32.exe / data1.cab / Development_Kit / Vc / Samples / Encode / OverlayRectDlg.cpp < prev    next >
C/C++ Source or Header  |  2001-02-09  |  1KB  |  50 lines

  1. // OverlayRectDlg.cpp : インプリメンテーション ファイル
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "Encode.h"
  6. #include "OverlayRectDlg.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // COverlayRectDlg ダイアログ
  16.  
  17.  
  18. COverlayRectDlg::COverlayRectDlg(CWnd* pParent /*=NULL*/)
  19.     : CDialog(COverlayRectDlg::IDD, pParent)
  20. {
  21.     //{{AFX_DATA_INIT(COverlayRectDlg)
  22.     m_edit_bottom = 0;
  23.     m_edit_left = 0;
  24.     m_edit_right = 0;
  25.     m_edit_top = 0;
  26.     //}}AFX_DATA_INIT
  27. }
  28.  
  29.  
  30. void COverlayRectDlg::DoDataExchange(CDataExchange* pDX)
  31. {
  32.     CDialog::DoDataExchange(pDX);
  33.     //{{AFX_DATA_MAP(COverlayRectDlg)
  34.     DDX_Text(pDX, IDC_EDIT_BOTTOM, m_edit_bottom);
  35.     DDX_Text(pDX, IDC_EDIT_LEFT, m_edit_left);
  36.     DDX_Text(pDX, IDC_EDIT_RIGHT, m_edit_right);
  37.     DDX_Text(pDX, IDC_EDIT_TOP, m_edit_top);
  38.     //}}AFX_DATA_MAP
  39. }
  40.  
  41.  
  42. BEGIN_MESSAGE_MAP(COverlayRectDlg, CDialog)
  43.     //{{AFX_MSG_MAP(COverlayRectDlg)
  44.         // メモ - ClassWizard はこの位置にマッピング用のマクロを追加または削除します。
  45.     //}}AFX_MSG_MAP
  46. END_MESSAGE_MAP()
  47.  
  48. /////////////////////////////////////////////////////////////////////////////
  49. // COverlayRectDlg メッセージ ハンドラ
  50.