home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / vb_code1 / ole_vbx1 / mainfrm.cpp next >
C/C++ Source or Header  |  1994-01-24  |  3KB  |  117 lines

  1. // mainfrm.cpp : implementation of the CMainFrame class
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "testvbx.h"
  6.  
  7. #include "mainfrm.h"
  8.  
  9. #ifdef _DEBUG
  10. #undef THIS_FILE
  11. static char BASED_CODE THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. CMainFrame *pFrame = NULL;
  15.  
  16. /////////////////////////////////////////////////////////////////////////////
  17. // CMainFrame
  18.  
  19. IMPLEMENT_DYNAMIC(CMainFrame, CMDIFrameWnd)
  20.  
  21. BEGIN_MESSAGE_MAP(CMainFrame, CMDIFrameWnd)
  22.     //{{AFX_MSG_MAP(CMainFrame)
  23.         // NOTE - the ClassWizard will add and remove mapping macros here.
  24.         //    DO NOT EDIT what you see in these blocks of generated code !
  25.     ON_WM_CREATE()
  26.     //}}AFX_MSG_MAP
  27. END_MESSAGE_MAP()
  28.  
  29. /////////////////////////////////////////////////////////////////////////////
  30. // arrays of IDs used to initialize control bars
  31.  
  32. // toolbar buttons - IDs are command buttons
  33. static UINT BASED_CODE buttons[] =
  34. {
  35.     // same order as in the bitmap 'toolbar.bmp'
  36.     ID_FILE_NEW,
  37.     ID_FILE_OPEN,
  38.     ID_FILE_SAVE,
  39.         ID_SEPARATOR,
  40.     ID_EDIT_CUT,
  41.     ID_EDIT_COPY,
  42.     ID_EDIT_PASTE,
  43.         ID_SEPARATOR,
  44.     ID_FILE_PRINT,
  45.     ID_APP_ABOUT,
  46. };
  47.  
  48. static UINT BASED_CODE indicators[] =
  49. {
  50.     ID_SEPARATOR,           // status line indicator
  51.     ID_INDICATOR_CAPS,
  52.     ID_INDICATOR_NUM,
  53.     ID_INDICATOR_SCRL,
  54. };
  55.  
  56. /////////////////////////////////////////////////////////////////////////////
  57. // CMainFrame construction/destruction
  58.  
  59. CMainFrame::CMainFrame()
  60. {
  61.     // Initialize global pointer to the main frame window
  62.     pFrame = this;
  63. }
  64.  
  65. CMainFrame::~CMainFrame()
  66. {
  67. }
  68.  
  69. void CMainFrame::setStatusText(LPCSTR lpszText)
  70. {
  71.     m_wndStatusBar.SetWindowText(lpszText);    
  72. }
  73.  
  74. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  75. {
  76.     if (CMDIFrameWnd::OnCreate(lpCreateStruct) == -1)
  77.         return -1;
  78.  
  79.     if (!m_wndToolBar.Create(this) ||
  80.         !m_wndToolBar.LoadBitmap(IDR_MAINFRAME) ||
  81.         !m_wndToolBar.SetButtons(buttons,
  82.           sizeof(buttons)/sizeof(UINT)))
  83.     {
  84.         TRACE("Failed to create toolbar\n");
  85.         return -1;      // fail to create
  86.     }
  87.  
  88.     if (!m_wndStatusBar.Create(this) ||
  89.         !m_wndStatusBar.SetIndicators(indicators,
  90.           sizeof(indicators)/sizeof(UINT)))
  91.     {
  92.         TRACE("Failed to create status bar\n");
  93.         return -1;      // fail to create
  94.     }
  95.  
  96.     return 0;
  97. }
  98.  
  99. /////////////////////////////////////////////////////////////////////////////
  100. // CMainFrame diagnostics
  101.  
  102. #ifdef _DEBUG
  103. void CMainFrame::AssertValid() const
  104. {
  105.     CMDIFrameWnd::AssertValid();
  106. }
  107.  
  108. void CMainFrame::Dump(CDumpContext& dc) const
  109. {
  110.     CMDIFrameWnd::Dump(dc);
  111. }
  112.  
  113. #endif //_DEBUG
  114.  
  115. /////////////////////////////////////////////////////////////////////////////
  116. // CMainFrame message handlers
  117.