FontDlgView.h
上传用户:taiyu_2006
上传日期:2022-07-26
资源大小:36k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // FontDlgView.h : interface of the CFontDlgView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_FONTDLGVIEW_H__EFD7AF99_F44A_4235_8B63_BD4427E1E600__INCLUDED_)
  5. #define AFX_FONTDLGVIEW_H__EFD7AF99_F44A_4235_8B63_BD4427E1E600__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CFontDlgView : public CView
  10. {
  11. protected: // create from serialization only
  12. CFontDlgView();
  13. DECLARE_DYNCREATE(CFontDlgView)
  14. // Attributes
  15. public:
  16. CFontDlgDoc* GetDocument();
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CFontDlgView)
  22. public:
  23. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  24. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  25. protected:
  26. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  27. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  28. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. public:
  32. virtual ~CFontDlgView();
  33. #ifdef _DEBUG
  34. virtual void AssertValid() const;
  35. virtual void Dump(CDumpContext& dc) const;
  36. #endif
  37. protected:
  38. // Generated message map functions
  39. protected:
  40. //{{AFX_MSG(CFontDlgView)
  41. afx_msg void OnViewFont();
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. private:
  45. COLORREF m_clrText;
  46. CFont m_fontDlg;
  47. };
  48. #ifndef _DEBUG  // debug version in FontDlgView.cpp
  49. inline CFontDlgDoc* CFontDlgView::GetDocument()
  50.    { return (CFontDlgDoc*)m_pDocument; }
  51. #endif
  52. /////////////////////////////////////////////////////////////////////////////
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_FONTDLGVIEW_H__EFD7AF99_F44A_4235_8B63_BD4427E1E600__INCLUDED_)