CategoryBar.cpp
上传用户:lds876
上传日期:2013-05-25
资源大小:567k
文件大小:1k
源码类别:

P2P编程

开发平台:

Visual C++

  1. // CategoryBar.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "testbt.h"
  5. #include "CategoryBar.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CCategoryBar
  13. CCategoryBar::CCategoryBar()
  14. {
  15. m_pSetupRegister = 0;
  16. }
  17. CCategoryBar::~CCategoryBar()
  18. {
  19. }
  20. BEGIN_MESSAGE_MAP(CCategoryBar, CSizingControlBar)
  21. //{{AFX_MSG_MAP(CCategoryBar)
  22. ON_WM_CREATE()
  23. ON_WM_SIZE()
  24. //}}AFX_MSG_MAP
  25. END_MESSAGE_MAP()
  26. /////////////////////////////////////////////////////////////////////////////
  27. // CCategoryBar message handlers
  28. BOOL CCategoryBar::CreateEx(CWnd *pParent, CSize &sz, long lParam, CSetupRegister* pSetupRegister)
  29. {
  30. m_pSetupRegister = pSetupRegister;
  31. return Create("hello", pParent, sz, TRUE, lParam);
  32. }
  33. int CCategoryBar::OnCreate(LPCREATESTRUCT lpCreateStruct) 
  34. {
  35. if (CSizingControlBar::OnCreate(lpCreateStruct) == -1)
  36. return -1;
  37. assert(m_pSetupRegister);
  38. m_CategoryBarWnd.CreateEx(this, CRect(0, 0, 100, 100), 0, m_pSetupRegister);
  39. return 0;
  40. }
  41. void CCategoryBar::OnSize(UINT nType, int cx, int cy) 
  42. {
  43. m_CategoryBarWnd.MoveWindow(CRect(0, 0, cx, cy));
  44. CSizingControlBar::OnSize(nType, cx, cy);
  45. }