ex74View.cpp
资源名称:VC6.0.rar [点击查看]
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:3k
源码类别:
书籍源码
开发平台:
Visual C++
- // ex74View.cpp : implementation of the CEx74View class
- //
- #include "stdafx.h"
- #include "ex74.h"
- #include "ex74Doc.h"
- #include "ex74View.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CEx74View
- IMPLEMENT_DYNCREATE(CEx74View, CView)
- BEGIN_MESSAGE_MAP(CEx74View, CView)
- //{{AFX_MSG_MAP(CEx74View)
- ON_COMMAND(ID_Font, OnFont)
- //}}AFX_MSG_MAP
- // Standard printing commands
- ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
- ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
- ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CEx74View construction/destruction
- CEx74View::CEx74View()
- {
- crColor=RGB(255,0,0);//字体初始颜色红色,与圆的颜色相同
- memset(&fnt,0,sizeof(LOGFONT));
- strcpy(fnt.lfFaceName,"Arial");//初始字体名称
- fnt.lfHeight=50;//字体初始高度
- }
- CEx74View::~CEx74View()
- {
- }
- BOOL CEx74View::PreCreateWindow(CREATESTRUCT& cs)
- {
- // TODO: Modify the Window class or styles here by modifying
- // the CREATESTRUCT cs
- return CView::PreCreateWindow(cs);
- }
- /////////////////////////////////////////////////////////////////////////////
- // CEx74View drawing
- void CEx74View::OnDraw(CDC* pDC)
- {
- CEx74Doc* pDoc = GetDocument();
- ASSERT_VALID(pDoc);
- pDC->SetTextColor(crColor);//字体的颜色
- CFont myfont;
- myfont.CreateFontIndirect(&fnt);//间接创建一字体
- pDC->SelectObject(&myfont);
- pDC->TextOut(100,100,"Hello,Font dialog test!");
- }
- /////////////////////////////////////////////////////////////////////////////
- // CEx74View printing
- BOOL CEx74View::OnPreparePrinting(CPrintInfo* pInfo)
- {
- // default preparation
- return DoPreparePrinting(pInfo);
- }
- void CEx74View::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
- {
- // TODO: add extra initialization before printing
- }
- void CEx74View::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
- {
- // TODO: add cleanup after printing
- }
- /////////////////////////////////////////////////////////////////////////////
- // CEx74View diagnostics
- #ifdef _DEBUG
- void CEx74View::AssertValid() const
- {
- CView::AssertValid();
- }
- void CEx74View::Dump(CDumpContext& dc) const
- {
- CView::Dump(dc);
- }
- CEx74Doc* CEx74View::GetDocument() // non-debug version is inline
- {
- ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CEx74Doc)));
- return (CEx74Doc*)m_pDocument;
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // CEx74View message handlers
- void CEx74View::OnFont()
- {
- CFontDialog dlg(&fnt); //用构造函数初始化对话框中的字体
- dlg.m_cf.rgbColors=crColor;//初始化对话框中的颜色
- if(dlg.DoModal()==IDOK)
- {
- dlg.GetCurrentFont(&fnt);//获取所选字体
- crColor=dlg.GetColor();//获取所选颜色
- Invalidate();
- }
- }