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

SNMP编程

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "Trap.h"
  5. #include "Scan.h"
  6. #include "MainFrm.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CMainFrame
  14. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  15. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  16. //{{AFX_MSG_MAP(CMainFrame)
  17. ON_WM_CREATE()
  18. ON_WM_SYSCOMMAND()
  19. ON_WM_DESTROY()
  20.     ON_MESSAGE(WM_NOTIFYICON, OnNotifyIcon)
  21. //}}AFX_MSG_MAP
  22. END_MESSAGE_MAP()
  23. static UINT indicators[] =
  24. {
  25. ID_SEPARATOR,           // status line indicator
  26. ID_INDICATOR_CAPS,
  27. ID_INDICATOR_NUM,
  28. ID_INDICATOR_SCRL,
  29. };
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CMainFrame construction/destruction
  32. CMainFrame::CMainFrame()
  33. {
  34. // TODO: add member initialization code here
  35. }
  36. CMainFrame::~CMainFrame()
  37. {
  38. }
  39. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  40. {
  41. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  42. return -1;
  43. if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
  44. | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
  45. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  46. {
  47. TRACE0("Failed to create toolbarn");
  48. return -1;      // fail to create
  49. }
  50. if (!m_wndStatusBar.Create(this) ||
  51. !m_wndStatusBar.SetIndicators(indicators,
  52.   sizeof(indicators)/sizeof(UINT)))
  53. {
  54. TRACE0("Failed to create status barn");
  55. return -1;      // fail to create
  56. }
  57. // TODO: Delete these three lines if you don't want the toolbar to
  58. //  be dockable
  59. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  60. EnableDocking(CBRS_ALIGN_ANY);
  61. DockControlBar(&m_wndToolBar);
  62.     m_hIcon=AfxGetApp()->LoadIcon(IDI_ICON1);;
  63.     NOTIFYICONDATA ndata;
  64. ndata.cbSize= sizeof (NOTIFYICONDATA);
  65. ndata.hWnd= m_hWnd;
  66. ndata.uID= IDI_ICON1;
  67. ndata.uFlags= NIF_ICON|NIF_MESSAGE|NIF_TIP;
  68. ndata.uCallbackMessage=WM_NOTIFYICON;
  69. ndata.hIcon= m_hIcon;
  70. strcpy(ndata.szTip, "线路监视");
  71. Shell_NotifyIcon(NIM_ADD, &ndata);
  72. return 0;
  73. }
  74. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  75. {
  76. if( !CFrameWnd::PreCreateWindow(cs) )
  77. return FALSE;
  78. // TODO: Modify the Window class or styles here by modifying
  79. //  the CREATESTRUCT cs
  80.     cs.x=10;
  81. cs.y=10;
  82. cs.cx=680;
  83. cs.cy=530;
  84. return TRUE;
  85. }
  86. /////////////////////////////////////////////////////////////////////////////
  87. // CMainFrame diagnostics
  88. #ifdef _DEBUG
  89. void CMainFrame::AssertValid() const
  90. {
  91. CFrameWnd::AssertValid();
  92. }
  93. void CMainFrame::Dump(CDumpContext& dc) const
  94. {
  95. CFrameWnd::Dump(dc);
  96. }
  97. #endif //_DEBUG
  98. /////////////////////////////////////////////////////////////////////////////
  99. // CMainFrame message handlers
  100. void CMainFrame::OnSysCommand(UINT nID, LPARAM lParam) 
  101. {
  102. if (nID==SC_MINIMIZE)
  103. ShowWindow(SW_HIDE);
  104. else
  105.     CFrameWnd::OnSysCommand(nID, lParam);
  106. }
  107. void CMainFrame::OnDestroy() 
  108. {
  109. CFrameWnd::OnDestroy();
  110.     NOTIFYICONDATA ndata;
  111. ndata.cbSize= sizeof (NOTIFYICONDATA);
  112. ndata.hWnd= m_hWnd;
  113. Shell_NotifyIcon(NIM_DELETE, &ndata); 
  114. }
  115. void CMainFrame::OnNotifyIcon(WPARAM wParam, LPARAM lParam)
  116. {
  117. // 响应在托盘图标上的单击
  118. if ((wParam == IDI_ICON1)&&(lParam == WM_LBUTTONDOWN))
  119. ShowWindow(SW_SHOWNORMAL);
  120. }