MainFrm.cpp
上传用户:benben_wyd
上传日期:2010-02-26
资源大小:1229k
文件大小:2k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "OLEDBMFCBlob.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. }
  31. CMainFrame::~CMainFrame()
  32. {
  33. }
  34. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  35. {
  36. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  37. return -1;
  38. if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
  39. | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
  40. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  41. {
  42. TRACE0("Failed to create toolbarn");
  43. return -1;      // fail to create
  44. }
  45. if (!m_wndStatusBar.Create(this) ||
  46. !m_wndStatusBar.SetIndicators(indicators,
  47.   sizeof(indicators)/sizeof(UINT)))
  48. {
  49. TRACE0("Failed to create status barn");
  50. return -1;      // fail to create
  51. }
  52. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  53. EnableDocking(CBRS_ALIGN_ANY);
  54. DockControlBar(&m_wndToolBar);
  55. return 0;
  56. }
  57. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  58. {
  59. if( !CFrameWnd::PreCreateWindow(cs) )
  60. return FALSE;
  61. return TRUE;
  62. }
  63. /////////////////////////////////////////////////////////////////////////////
  64. // CMainFrame diagnostics
  65. #ifdef _DEBUG
  66. void CMainFrame::AssertValid() const
  67. {
  68. CFrameWnd::AssertValid();
  69. }
  70. void CMainFrame::Dump(CDumpContext& dc) const
  71. {
  72. CFrameWnd::Dump(dc);
  73. }
  74. #endif //_DEBUG
  75. /////////////////////////////////////////////////////////////////////////////
  76. // CMainFrame message handlers