FontComboDlg.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // FontComboDlg.h : header file
  2. //
  3. #if !defined(AFX_FONTCOMBODLG_H__5CE7C7B1_76A4_4FA3_B954_A3D40C539494__INCLUDED_)
  4. #define AFX_FONTCOMBODLG_H__5CE7C7B1_76A4_4FA3_B954_A3D40C539494__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #include "SampleText.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CFontComboDlg dialog
  11. class CFontComboDlg : public CDialog
  12. {
  13. // Construction
  14. public:
  15. CFontComboDlg(CWnd* pParent = NULL); // standard constructor
  16. virtual ~CFontComboDlg();
  17. void UpdateFont();
  18. //{{AFX_DATA(CFontComboDlg)
  19. enum { IDD = IDD_FONTCOMBO_DIALOG };
  20. CSampleText m_txtSample;
  21. CXTFlatComboBox m_wndComboSize;
  22. CXTFontCombo m_wndComboFont;
  23. CXTColorPicker m_wndColorPicker;
  24. BOOL m_bBold;
  25. BOOL m_bItalic;
  26. BOOL m_bUnderline;
  27. //}}AFX_DATA
  28. // ClassWizard generated virtual function overrides
  29. //{{AFX_VIRTUAL(CFontComboDlg)
  30. protected:
  31. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. protected:
  35. HICON m_hIcon;
  36. COLORREF m_crCurrent;
  37. CXTLogFont m_lf;
  38. CString  m_strFontSize;
  39. CString  m_strFontName;
  40. // Generated message map functions
  41. //{{AFX_MSG(CFontComboDlg)
  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 OnSelendokComboSize();
  47. afx_msg void OnChkBold();
  48. afx_msg void OnChkItalic();
  49. afx_msg void OnChkUnderline();
  50. //}}AFX_MSG
  51. afx_msg void OnSelEndOKColor();
  52. afx_msg void OnSelEndOKFontCombo();
  53. DECLARE_MESSAGE_MAP()
  54. };
  55. //{{AFX_INSERT_LOCATION}}
  56. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  57. #endif // !defined(AFX_FONTCOMBODLG_H__5CE7C7B1_76A4_4FA3_B954_A3D40C539494__INCLUDED_)