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 >
Wrap
C/C++ Source or Header
|
2001-02-09
|
1KB
|
50 lines
// OverlayRectDlg.cpp : インプリメンテーション ファイル
//
#include "stdafx.h"
#include "Encode.h"
#include "OverlayRectDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// COverlayRectDlg ダイアログ
COverlayRectDlg::COverlayRectDlg(CWnd* pParent /*=NULL*/)
: CDialog(COverlayRectDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(COverlayRectDlg)
m_edit_bottom = 0;
m_edit_left = 0;
m_edit_right = 0;
m_edit_top = 0;
//}}AFX_DATA_INIT
}
void COverlayRectDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(COverlayRectDlg)
DDX_Text(pDX, IDC_EDIT_BOTTOM, m_edit_bottom);
DDX_Text(pDX, IDC_EDIT_LEFT, m_edit_left);
DDX_Text(pDX, IDC_EDIT_RIGHT, m_edit_right);
DDX_Text(pDX, IDC_EDIT_TOP, m_edit_top);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(COverlayRectDlg, CDialog)
//{{AFX_MSG_MAP(COverlayRectDlg)
// メモ - ClassWizard はこの位置にマッピング用のマクロを追加または削除します。
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// COverlayRectDlg メッセージ ハンドラ