NewToolBar.cpp
上传用户:ckg1000
上传日期:2013-01-26
资源大小:630k
文件大小:1k
源码类别:

CAD

开发平台:

Visual C++

  1. // NewToolBar.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "CAD2006.h"
  5. #include "NewToolBar.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // NewToolBar
  13. NewToolBar::NewToolBar()
  14. {
  15. }
  16. NewToolBar::~NewToolBar()
  17. {
  18. }
  19. BEGIN_MESSAGE_MAP(NewToolBar, CToolBarXP)
  20. //{{AFX_MSG_MAP(NewToolBar)
  21. // NOTE - the ClassWizard will add and remove mapping macros here.
  22. //}}AFX_MSG_MAP
  23. END_MESSAGE_MAP()
  24. /////////////////////////////////////////////////////////////////////////////
  25. // NewToolBar message handlers
  26. //int (CALLBACK)(CONST LOGFONTA *, CONST TEXTMETRICA *, DWORD, LPARAM);
  27. int CALLBACK EnumFontFamProc(LPENUMLOGFONT lpelf, 
  28. LPNEWTEXTMETRIC lpntm,DWORD nFontType,long lparam)
  29. {
  30. NewToolBar *pwnd = (NewToolBar *)lparam;
  31. pwnd->m_wndComboBox.AddString(lpelf ->elfLogFont.lfFaceName);
  32. return 1; 
  33. }
  34. void NewToolBar::OnInitToolBar()
  35. {
  36. LOGFONT lf; 
  37. lf.lfCharSet = DEFAULT_CHARSET;
  38. strcpy(lf.lfFaceName,""); 
  39. CClientDC dc (this); 
  40. // ::EnumFontFamiliesEx(dc.m_hDC,&lf,
  41. // (FONTENUMPROC)EnumFontFamProc,(LPARAM)this,0);
  42. }