65 lines
1.7 KiB
C++
65 lines
1.7 KiB
C++
// PenDlg.cpp : implementation file
|
|
//
|
|
// This is a part of the Microsoft Foundation Classes C++ library.
|
|
// Copyright (C) 1992-1997 Microsoft Corporation
|
|
// All rights reserved.
|
|
//
|
|
// This source code is only intended as a supplement to the
|
|
// Microsoft Foundation Classes Reference and related
|
|
// electronic documentation provided with the library.
|
|
// See these sources for detailed information regarding the
|
|
// Microsoft Foundation Classes product.
|
|
|
|
#include "stdafx.h"
|
|
#include "Scribble.h"
|
|
#include "PenDlg.h"
|
|
|
|
#ifdef _DEBUG
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CPenWidthsDlg dialog
|
|
|
|
|
|
CPenWidthsDlg::CPenWidthsDlg(CWnd* pParent /*=NULL*/)
|
|
: CDialog(CPenWidthsDlg::IDD, pParent)
|
|
{
|
|
//{{AFX_DATA_INIT(CPenWidthsDlg)
|
|
m_nThinWidth = 0;
|
|
m_nThickWidth = 0;
|
|
//}}AFX_DATA_INIT
|
|
}
|
|
|
|
|
|
void CPenWidthsDlg::DoDataExchange(CDataExchange* pDX)
|
|
{
|
|
CDialog::DoDataExchange(pDX);
|
|
//{{AFX_DATA_MAP(CPenWidthsDlg)
|
|
DDX_Text(pDX, IDC_THIN_PEN_WIDTH, m_nThinWidth);
|
|
DDV_MinMaxInt(pDX, m_nThinWidth, 1, 20);
|
|
DDX_Text(pDX, IDC_THICK_PEN_WIDTH, m_nThickWidth);
|
|
DDV_MinMaxInt(pDX, m_nThickWidth, 1, 20);
|
|
//}}AFX_DATA_MAP
|
|
}
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(CPenWidthsDlg, CDialog)
|
|
//{{AFX_MSG_MAP(CPenWidthsDlg)
|
|
ON_BN_CLICKED(IDC_DEFAULT_PEN_WIDTHS, OnDefaultPenWidths)
|
|
//}}AFX_MSG_MAP
|
|
END_MESSAGE_MAP()
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CPenWidthsDlg message handlers
|
|
|
|
void CPenWidthsDlg::OnDefaultPenWidths()
|
|
{
|
|
m_nThinWidth = 2;
|
|
m_nThickWidth = 5;
|
|
UpdateData(FALSE); // causes DoDataExchange()
|
|
// bSave=FALSE means don't save from screen,
|
|
// rather, write to screen
|
|
}
|