1 // Properties.cpp : implementation file
2 //
3 
4 #include "stdafx.h"
5 #include "XPreplay.h"
6 #include "Properties.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 // CProperties dialog
16 
17 
CProperties(CWnd * pParent)18 CProperties::CProperties(CWnd* pParent /*=NULL*/)
19 	: CDialog(CProperties::IDD, pParent)
20 {
21 	//{{AFX_DATA_INIT(CProperties)
22 	m_nickname = _T("");
23 	m_recorddate = _T("");
24 	m_serveraddress = _T("");
25 	m_userhost = _T("");
26 	m_fps = _T("");
27 	//}}AFX_DATA_INIT
28 }
29 
30 
DoDataExchange(CDataExchange * pDX)31 void CProperties::DoDataExchange(CDataExchange* pDX)
32 {
33 	CDialog::DoDataExchange(pDX);
34 	//{{AFX_DATA_MAP(CProperties)
35 	DDX_Text(pDX, IDC_NICK, m_nickname);
36 	DDX_Text(pDX, IDC_RECDATE, m_recorddate);
37 	DDX_Text(pDX, IDC_SERVERADDRESS, m_serveraddress);
38 	DDX_Text(pDX, IDC_USERHOST, m_userhost);
39 	DDX_Text(pDX, IDC_FPS, m_fps);
40 	//}}AFX_DATA_MAP
41 }
42 
43 
44 BEGIN_MESSAGE_MAP(CProperties, CDialog)
45 	//{{AFX_MSG_MAP(CProperties)
46 		// NOTE: the ClassWizard will add message map macros here
47 	//}}AFX_MSG_MAP
48 END_MESSAGE_MAP()
49 
50 /////////////////////////////////////////////////////////////////////////////
51 // CProperties message handlers
52