Скачиваний:
16
Добавлен:
01.05.2014
Размер:
1.27 Кб
Скачать
// OptionsDlg.cpp : implementation file
//

#include "stdafx.h"
#include "RegionSearch.h"
#include "OptionsDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// COptionsDlg dialog


COptionsDlg::COptionsDlg(CWnd* pParent /*=NULL*/)
	: CDialog(COptionsDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(COptionsDlg)
	m_LevelCount = 0;
	m_ShowNumbers = FALSE;
	m_ShowPoints = FALSE;
	m_ShowSegments = FALSE;
	m_ShowNodes = FALSE;
	//}}AFX_DATA_INIT
}


void COptionsDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(COptionsDlg)
	DDX_Text(pDX, IDC_LEVEL_COUNT, m_LevelCount);
	DDV_MinMaxInt(pDX, m_LevelCount, 1, 20);
	DDX_Check(pDX, IDC_SHOW_NUMBERS, m_ShowNumbers);
	DDX_Check(pDX, IDC_SHOW_POINTS, m_ShowPoints);
	DDX_Check(pDX, IDC_SHOWSEGMENTS, m_ShowSegments);
	DDX_Check(pDX, IDC_SHOWNODES, m_ShowNodes);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(COptionsDlg, CDialog)
	//{{AFX_MSG_MAP(COptionsDlg)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// COptionsDlg message handlers


Соседние файлы в папке Source