HistoryBar.cpp
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:1k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. // HistoryBar.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "IE.h"
  5. #include "HistoryBar.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CHistoryBar
  13. CHistoryBar::CHistoryBar()
  14. {
  15. }
  16. CHistoryBar::~CHistoryBar()
  17. {
  18. }
  19. BEGIN_MESSAGE_MAP(CHistoryBar, CSizingControlBar)
  20. //{{AFX_MSG_MAP(CHistoryBar)
  21. //}}AFX_MSG_MAP
  22. END_MESSAGE_MAP()
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CHistoryBar message handlers
  25. BOOL CHistoryBar::Create( CFrameWnd * pParentWnd )
  26. {
  27. if( CSizingControlBar::Create( "历史纪录" , pParentWnd, CSize( 230 , 260 ) , TRUE , 1 ) )
  28. {
  29. this->SetBarStyle( this->GetBarStyle() | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC );
  30. this->SetSCBStyle( SCBS_SIZECHILD );
  31. this->EnableDocking( CBRS_ALIGN_LEFT );
  32. pParentWnd->EnableDocking( CBRS_ALIGN_ANY );
  33. pParentWnd->DockControlBar( this , AFX_IDW_DOCKBAR_LEFT );
  34. this->m_tree.Create( WS_CHILD | WS_VISIBLE | TVS_HASBUTTONS | TVS_HASLINES | TVS_TRACKSELECT | TVS_INFOTIP | TVS_FULLROWSELECT | WS_BORDER | WS_TABSTOP , CRect( 0 , 0 , 1 , 1 ) , this , IDC_TREE );
  35. // ScrollBar( this->m_tree.GetSafeHwnd( ) );
  36. this->Initial( );
  37.         
  38. return TRUE;
  39. }
  40. return FALSE;
  41. }
  42. void CHistoryBar::Initial( void )
  43. {
  44. }