MainFrm.cpp
上传用户:sztlpcb
上传日期:2007-06-09
资源大小:741k
文件大小:2k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "ccd.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_COMMAND(ID_MENUITEMSHOWFILTER, OnMenuitemshowfilter)
  17. //}}AFX_MSG_MAP
  18. END_MESSAGE_MAP()
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CMainFrame construction/destruction
  21. CMainFrame::CMainFrame()
  22. {
  23. // TODO: add member initialization code here
  24. }
  25. CMainFrame::~CMainFrame()
  26. {
  27. }
  28. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  29. {
  30. cs.x=320;
  31. cs.y=240;
  32. if( !CFrameWnd::PreCreateWindow(cs) )
  33. return FALSE;
  34. // TODO: Modify the Window class or styles here by modifying
  35. //  the CREATESTRUCT cs
  36. return TRUE;
  37. }
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CMainFrame diagnostics
  40. #ifdef _DEBUG
  41. void CMainFrame::AssertValid() const
  42. {
  43. CFrameWnd::AssertValid();
  44. }
  45. void CMainFrame::Dump(CDumpContext& dc) const
  46. {
  47. CFrameWnd::Dump(dc);
  48. }
  49. #endif //_DEBUG
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CMainFrame message handlers
  52. void CMainFrame::OnMenuitemshowfilter() 
  53. {
  54. // TODO: Add your command handler code here
  55. }