MainFrm.cpp
上传用户:xakehao
上传日期:2013-08-28
资源大小:100k
文件大小:3k
源码类别:

CA认证

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "MyCap.h"
  5. #include "MyCapDoc.h"
  6. #include "mycapview.h"
  7. #include "myview.h"
  8. #include "mysniffview.h"
  9. #include "MainFrm.h"
  10. #ifdef _DEBUG
  11. #define new DEBUG_NEW
  12. #undef THIS_FILE
  13. static char THIS_FILE[] = __FILE__;
  14. #endif
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CMainFrame
  17. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  18. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  19. //{{AFX_MSG_MAP(CMainFrame)
  20. ON_WM_CREATE()
  21. ON_COMMAND(ID_FILE_START, OnFileStart)
  22. ON_COMMAND(ID_FILE_STOP, OnFileStop)
  23. ON_COMMAND(ID_FILE_SAVE, OnFileSave)
  24. ON_COMMAND(ID_OPTION_CARD, OnOptionCard)
  25. ON_COMMAND(ID_OPTION_FILTER, OnOptionFilter)
  26. //}}AFX_MSG_MAP
  27. END_MESSAGE_MAP()
  28. static UINT indicators[] =
  29. {
  30. ID_SEPARATOR,           // status line indicator
  31. ID_INDICATOR_CAPS,
  32. ID_INDICATOR_NUM,
  33. ID_INDICATOR_SCRL,
  34. };
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CMainFrame construction/destruction
  37. CMainFrame::CMainFrame()
  38. {
  39. // TODO: add member initialization code here
  40. }
  41. CMainFrame::~CMainFrame()
  42. {
  43. }
  44. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  45. {
  46. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  47. return -1;
  48. if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
  49. | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
  50. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  51. {
  52. TRACE0("Failed to create toolbarn");
  53. return -1;      // fail to create
  54. }
  55. if (!m_wndStatusBar.Create(this) ||
  56. !m_wndStatusBar.SetIndicators(indicators,
  57.   sizeof(indicators)/sizeof(UINT)))
  58. {
  59. TRACE0("Failed to create status barn");
  60. return -1;      // fail to create
  61. }
  62. // TODO: Delete these three lines if you don't want the toolbar to
  63. //  be dockable
  64. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  65. EnableDocking(CBRS_ALIGN_ANY);
  66. DockControlBar(&m_wndToolBar);
  67. return 0;
  68. }
  69. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  70. {
  71. if( !CFrameWnd::PreCreateWindow(cs) )
  72. return FALSE;
  73. // TODO: Modify the Window class or styles here by modifying
  74. //  the CREATESTRUCT cs
  75. return TRUE;
  76. }
  77. /////////////////////////////////////////////////////////////////////////////
  78. // CMainFrame diagnostics
  79. #ifdef _DEBUG
  80. void CMainFrame::AssertValid() const
  81. {
  82. CFrameWnd::AssertValid();
  83. }
  84. void CMainFrame::Dump(CDumpContext& dc) const
  85. {
  86. CFrameWnd::Dump(dc);
  87. }
  88. #endif //_DEBUG
  89. /////////////////////////////////////////////////////////////////////////////
  90. // CMainFrame message handlers
  91. void CMainFrame::OnFileStart() 
  92. {
  93. // TODO: Add your command handler code here
  94. }
  95. void CMainFrame::OnFileStop() 
  96. {
  97. // TODO: Add your command handler code here
  98. }
  99. void CMainFrame::OnFileSave() 
  100. {
  101. // TODO: Add your command handler code here
  102. }
  103. void CMainFrame::OnOptionCard() 
  104. {
  105. // TODO: Add your command handler code here
  106. }
  107. void CMainFrame::OnOptionFilter() 
  108. {
  109. // TODO: Add your command handler code here
  110. }
  111. BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext *pContext)
  112. {
  113. if(!m_wndSplitter.CreateStatic(this, 3, 1) ||
  114. !m_wndSplitter.CreateView(0, 0, RUNTIME_CLASS(CMyCapView), CSize(0, 180), pContext) ||
  115. !m_wndSplitter.CreateView(1, 0, RUNTIME_CLASS(mysniffview), CSize(0, 140), pContext) ||
  116. !m_wndSplitter.CreateView(2, 0, RUNTIME_CLASS(myview), CSize(0, 150), pContext))
  117. return FALSE;
  118. return TRUE;
  119. }