MainFrm.cpp
上传用户:hbytqc8
上传日期:2014-07-31
资源大小:527k
文件大小:2k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "MibBrowser.h"
  5. #include "MainFrm.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CMainFrame
  13. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  14. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  15. //{{AFX_MSG_MAP(CMainFrame)
  16. ON_WM_CREATE()
  17. //}}AFX_MSG_MAP
  18. END_MESSAGE_MAP()
  19. static UINT indicators[] =
  20. {
  21. ID_SEPARATOR,           // status line indicator
  22. ID_INDICATOR_CAPS,
  23. ID_INDICATOR_NUM,
  24. ID_INDICATOR_SCRL,
  25. };
  26. /////////////////////////////////////////////////////////////////////////////
  27. // CMainFrame construction/destruction
  28. CMainFrame::CMainFrame()
  29. {
  30. // TODO: add member initialization code here
  31. }
  32. CMainFrame::~CMainFrame()
  33. {
  34. }
  35. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  36. {
  37. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  38. return -1;
  39. if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
  40. | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
  41. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  42. {
  43. TRACE0("Failed to create toolbarn");
  44. return -1;      // fail to create
  45. }
  46. if (!m_wndStatusBar.Create(this) ||
  47. !m_wndStatusBar.SetIndicators(indicators,
  48.   sizeof(indicators)/sizeof(UINT)))
  49. {
  50. TRACE0("Failed to create status barn");
  51. return -1;      // fail to create
  52. }
  53. // TODO: Delete these three lines if you don't want the toolbar to
  54. //  be dockable
  55. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  56. EnableDocking(CBRS_ALIGN_ANY);
  57. DockControlBar(&m_wndToolBar);
  58. return 0;
  59. }
  60. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  61. {
  62. if( !CFrameWnd::PreCreateWindow(cs) )
  63. return FALSE;
  64. // TODO: Modify the Window class or styles here by modifying
  65. //  the CREATESTRUCT cs
  66.     cs.cx=800;
  67. cs.cy=750;
  68. //cs.lpszName="";
  69. return TRUE;
  70. }
  71. /////////////////////////////////////////////////////////////////////////////
  72. // CMainFrame diagnostics
  73. #ifdef _DEBUG
  74. void CMainFrame::AssertValid() const
  75. {
  76. CFrameWnd::AssertValid();
  77. }
  78. void CMainFrame::Dump(CDumpContext& dc) const
  79. {
  80. CFrameWnd::Dump(dc);
  81. }
  82. #endif //_DEBUG
  83. /////////////////////////////////////////////////////////////////////////////