EnumFontsDlg.h
上传用户:xsxdsb
上传日期:2009-12-14
资源大小:672k
文件大小:2k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // EnumFontsDlg.h : header file
  2. //
  3. #if !defined(AFX_ENUMFONTSDLG_H__B53E4AA7_8573_11D6_8F32_00E04CE76240__INCLUDED_)
  4. #define AFX_ENUMFONTSDLG_H__B53E4AA7_8573_11D6_8F32_00E04CE76240__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CEnumFontsDlg dialog
  10. #include "WizFontsEnumerator.h"
  11. #include "WizFontNamesComboBox.h"
  12. #include "WizFontScriptsComboBox.h"
  13. #include "WizFontSizesComboBox.h"
  14. #include "WizFontExampleStatic.h"
  15. class CEnumFontsDlg : public CDialog
  16. {
  17. // Construction
  18. public:
  19. CEnumFontsDlg(CWnd* pParent = NULL); // standard constructor
  20. // Dialog Data
  21. //{{AFX_DATA(CEnumFontsDlg)
  22. enum { IDD = IDD_ENUMFONTS_DIALOG };
  23. CButton m_bold;
  24. CButton m_Italic;
  25. CButton m_Underline;
  26. CWizFontScriptsComboBox m_ScriptCombo;
  27. CWizFontSizesComboBox m_SizeCombo;
  28. CWizFontNamesComboBox m_FontNamesCombo;
  29. CWizFontExampleStatic m_SampleBox;
  30. //}}AFX_DATA
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(CEnumFontsDlg)
  33. protected:
  34. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. protected:
  38. HICON m_hIcon;
  39. CWizFontsEnumerator m_Fonts;
  40. // Generated message map functions
  41. //{{AFX_MSG(CEnumFontsDlg)
  42. virtual BOOL OnInitDialog();
  43. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  44. afx_msg void OnPaint();
  45. afx_msg HCURSOR OnQueryDragIcon();
  46. afx_msg void OnSelchangeFontnames();
  47. afx_msg void OnSelchangeFontsize();
  48. afx_msg void OnSelchangeScript();
  49. afx_msg void OnBoldCheck();
  50. afx_msg void OnItalicCheck();
  51. afx_msg void OnUnderlineCheck();
  52. //}}AFX_MSG
  53. DECLARE_MESSAGE_MAP()
  54. protected:
  55. void FontChanged();
  56. void Update4NewFontName();
  57. };
  58. //{{AFX_INSERT_LOCATION}}
  59. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  60. #endif // !defined(AFX_ENUMFONTSDLG_H__B53E4AA7_8573_11D6_8F32_00E04CE76240__INCLUDED_)