WORKSPACEBAR.CPP
上传用户:lvjun8202
上传日期:2013-04-30
资源大小:797k
文件大小:1k
源码类别:

SNMP编程

开发平台:

C/C++

  1. // WorkSpaceBar.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "oam.h"
  5. #include "WorkSpaceBar.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CWorkSpaceBar
  13. CWorkSpaceBar::CWorkSpaceBar()
  14. {
  15. }
  16. CWorkSpaceBar::~CWorkSpaceBar()
  17. {
  18. }
  19. BEGIN_MESSAGE_MAP(CWorkSpaceBar, COAMTabCtrlBar)
  20. //{{AFX_MSG_MAP(CWorkSpaceBar)
  21. ON_WM_CREATE()
  22. //}}AFX_MSG_MAP
  23. END_MESSAGE_MAP()
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CWorkSpaceBar message handlers
  26. int CWorkSpaceBar::OnCreate(LPCREATESTRUCT lpCreateStruct) 
  27. {
  28. if (COAMTabCtrlBar::OnCreate(lpCreateStruct) == -1)
  29. return -1;
  30. // TODO: Add your specialized creation code here
  31. m_TabImages.Create (IDB_IL_TAB, 16, 1, RGB(0,255,0));
  32. SetTabImageList(&m_TabImages);
  33. CCreateContext context ;
  34. context.m_pCurrentDoc = (CDocument *)CGlobalVariable::m_pMainDoc;
  35. context.m_pNewViewClass = RUNTIME_CLASS(CSnmp_cwdmView);
  36. AddView(_T("MIB树"),    RUNTIME_CLASS(CSnmp_cwdmView),&context);
  37. SetActiveView(0);
  38. return 0;
  39. }