home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 6 / mastvb6.iso / leadtools / ocx32.lt / Mainfrm.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-01-10  |  1.1 KB  |  49 lines

  1. // mainfrm.h : interface of the CMainFrame class
  2. // Copyright (C) 1990, 1998 LEAD Technologies, Inc.
  3. // All rights reserved.
  4.  
  5. class CMainFrame : public CMDIFrameWnd
  6. {
  7.     DECLARE_DYNAMIC(CMainFrame)
  8. public:
  9.     CMainFrame();
  10.  
  11. // Attributes
  12. public:
  13.  
  14. // Operations
  15. public:
  16.  
  17. // Overrides
  18.     // ClassWizard generated virtual function overrides
  19.     //{{AFX_VIRTUAL(CMainFrame)
  20.     //}}AFX_VIRTUAL
  21.  
  22. // Implementation
  23. public:
  24.     virtual ~CMainFrame();
  25. #ifdef _DEBUG
  26.     virtual void AssertValid() const;
  27.     virtual void Dump(CDumpContext& dc) const;
  28. #endif
  29.  
  30. protected:  // control bar embedded members
  31.     CStatusBar  m_wndStatusBar;
  32.     CToolBar    m_wndToolBar;
  33.  
  34. // Generated message map functions
  35. protected:
  36.     //{{AFX_MSG(CMainFrame)
  37.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  38.     afx_msg BOOL OnQueryNewPalette();
  39.     afx_msg void OnPaletteChanged(CWnd* pFocusWnd);
  40.     afx_msg void OnClose();
  41.     //}}AFX_MSG
  42.     DECLARE_MESSAGE_MAP()
  43. public:
  44.     CLeadContainer    m_LeadContainer;
  45.     CLead*    m_pLead;
  46. };
  47.  
  48. /////////////////////////////////////////////////////////////////////////////
  49.