www.pudn.com > MyDraw1225.rar > TextProperties.cpp


// TextProperties.cpp : implementation file 
// 
 
#include "stdafx.h" 
#include "MyDraw.h" 
#include "TextProperties.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CTextProperties dialog 
 
 
CTextProperties::CTextProperties(CWnd* pParent /*=NULL*/) 
	: CDialog(CTextProperties::IDD, pParent) 
{ 
	//{{AFX_DATA_INIT(CTextProperties) 
	m_Text = _T(""); 
	m_BkMode = FALSE; 
	//}}AFX_DATA_INIT 
} 
 
 
void CTextProperties::DoDataExchange(CDataExchange* pDX) 
{ 
	CDialog::DoDataExchange(pDX); 
	//{{AFX_DATA_MAP(CTextProperties) 
	DDX_Text(pDX, IDC_EDIT_TEXT, m_Text); 
	DDX_Check(pDX, IDC_CHECK_BKMODE, m_BkMode); 
	//}}AFX_DATA_MAP 
} 
 
 
BEGIN_MESSAGE_MAP(CTextProperties, CDialog) 
	//{{AFX_MSG_MAP(CTextProperties) 
	ON_BN_CLICKED(IDC_BUTTON_FONT, OnButtonFont) 
	//}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// CTextProperties message handlers 
 
void CTextProperties::OnButtonFont()  
{ 
	// TODO: Add your control notification handler code here 
	CFontDialog dlg(&m_Font); 
	if(dlg.DoModal()==IDOK) 
	{ 
		dlg.GetCurrentFont(&m_Font); 
		m_TextColor=dlg.m_cf.rgbColors; 
	} 
}