GetFontNameDlg.cpp
上传用户:niucheng
上传日期:2007-01-02
资源大小:56k
文件大小:1k
源码类别:

RichEdit

开发平台:

Visual C++

  1. // GetFontNameDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "RichEd.h"
  5. #include "GetFontNameDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CGetFontNameDlg dialog
  13. CGetFontNameDlg::CGetFontNameDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CGetFontNameDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CGetFontNameDlg)
  17. m_sFontName = _T("");
  18. //}}AFX_DATA_INIT
  19. }
  20. void CGetFontNameDlg::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(CGetFontNameDlg)
  24. DDX_Control(pDX, IDC_COMBO, m_combo);
  25. DDX_CBString(pDX, IDC_COMBO, m_sFontName);
  26. //}}AFX_DATA_MAP
  27. }
  28. BEGIN_MESSAGE_MAP(CGetFontNameDlg, CDialog)
  29. //{{AFX_MSG_MAP(CGetFontNameDlg)
  30. //}}AFX_MSG_MAP
  31. END_MESSAGE_MAP()
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CGetFontNameDlg message handlers
  34. BOOL CGetFontNameDlg::OnInitDialog() 
  35. {
  36. CDialog::OnInitDialog();
  37. // TODO: Add extra initialization here
  38. // Fill up the fonts...
  39. for (int i = 0; i <= m_psaFontList->GetSize()-1; i++)
  40. m_combo.AddString(m_psaFontList->GetAt(i));
  41. return TRUE;  // return TRUE unless you set the focus to a control
  42.               // EXCEPTION: OCX Property Pages should return FALSE
  43. }