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

书籍源码

开发平台:

Visual C++

  1. // WizFontScriptsComboBox.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "EnumFonts.h"
  5. #include "WizFontScriptsComboBox.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CWizFontScriptsComboBox
  13. CWizFontScriptsComboBox::CWizFontScriptsComboBox()
  14. {
  15. }
  16. CWizFontScriptsComboBox::~CWizFontScriptsComboBox()
  17. {
  18. }
  19. BEGIN_MESSAGE_MAP(CWizFontScriptsComboBox, CComboBox)
  20. //{{AFX_MSG_MAP(CWizFontScriptsComboBox)
  21. // NOTE - the ClassWizard will add and remove mapping macros here.
  22. //}}AFX_MSG_MAP
  23. END_MESSAGE_MAP()
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CWizFontScriptsComboBox message handlers
  26. //初始化列表框
  27. void CWizFontScriptsComboBox::Initialize (const CWizFontsEnumerator::Font* font)
  28. {
  29. //清空列表框
  30. ResetContent();
  31. ASSERT(font);
  32. //将该字体所有的语言种类加到列表框种
  33. const int imax = font->GetScriptsCount();
  34. for (int i = 0; i < imax; i++)
  35. {
  36. int j = AddString(font->GetScript(i));
  37. if (j >= 0)
  38. {
  39. SetItemData(j, i);
  40. }
  41. else
  42. {
  43. ASSERT(0);
  44. }
  45. }
  46. if (font->GetScriptsCount() > 0)
  47. SetCurSel(0);
  48. }