home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / database / catalog2 / mainfrm.cpp < prev    next >
C/C++ Source or Header  |  1998-03-26  |  3KB  |  113 lines

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #include "stdafx.h"
  14. #include "catalog2.h"
  15.  
  16. #include "MainFrm.h"
  17.  
  18. #ifdef _DEBUG
  19. #undef THIS_FILE
  20. static char THIS_FILE[] = __FILE__;
  21. #endif
  22.  
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CMainFrame
  25.  
  26. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  27.  
  28. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  29.     //{{AFX_MSG_MAP(CMainFrame)
  30.         // NOTE - the ClassWizard will add and remove mapping macros here.
  31.         //    DO NOT EDIT what you see in these blocks of generated code !
  32.     ON_WM_CREATE()
  33.     //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35.  
  36. static UINT indicators[] =
  37. {
  38.     ID_SEPARATOR,           // status line indicator
  39. };
  40.  
  41. /////////////////////////////////////////////////////////////////////////////
  42. // CMainFrame construction/destruction
  43.  
  44. CMainFrame::CMainFrame()
  45. {
  46.     // TODO: add member initialization code here
  47.  
  48. }
  49.  
  50. CMainFrame::~CMainFrame()
  51. {
  52. }
  53.  
  54. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  55. {
  56.     if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  57.         return -1;
  58.  
  59.     if (!m_wndToolBar.Create(this) ||
  60.         !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  61.     {
  62.         TRACE0("Failed to create toolbar\n");
  63.         return -1;      // fail to create
  64.     }
  65.  
  66.     if (!m_wndStatusBar.Create(this) ||
  67.         !m_wndStatusBar.SetIndicators(indicators,
  68.           sizeof(indicators)/sizeof(UINT)))
  69.     {
  70.         TRACE0("Failed to create status bar\n");
  71.         return -1;      // fail to create
  72.     }
  73.  
  74.     // TODO: Delete these three lines if you don't want the toolbar to
  75.     //  be dockable
  76.     m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  77.     EnableDocking(CBRS_ALIGN_ANY);
  78.     DockControlBar(&m_wndToolBar);
  79.  
  80.     // TODO: Remove this if you don't want tool tips
  81.     m_wndToolBar.SetBarStyle(m_wndToolBar.GetBarStyle() |
  82.         CBRS_TOOLTIPS | CBRS_FLYBY);
  83.  
  84.     return 0;
  85. }
  86.  
  87. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  88. {
  89.     // TODO: Modify the Window class or styles here by modifying
  90.     //  the CREATESTRUCT cs
  91.  
  92.     return CFrameWnd::PreCreateWindow(cs);
  93. }
  94.  
  95. /////////////////////////////////////////////////////////////////////////////
  96. // CMainFrame diagnostics
  97.  
  98. #ifdef _DEBUG
  99. void CMainFrame::AssertValid() const
  100. {
  101.     CFrameWnd::AssertValid();
  102. }
  103.  
  104. void CMainFrame::Dump(CDumpContext& dc) const
  105. {
  106.     CFrameWnd::Dump(dc);
  107. }
  108.  
  109. #endif //_DEBUG
  110.  
  111. /////////////////////////////////////////////////////////////////////////////
  112. // CMainFrame message handlers
  113.