home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 23 / IOPROG_23.ISO / SOFT / VFORM.ZIP / Samples / vfTest / MainFrm.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-10-10  |  1.4 KB  |  52 lines

  1. // -------------------------------------------------------------------------
  2. // Copyright @ 1997 TCK Software, Incorporated
  3. // All Rights Reserved
  4. // -------------------------------------------------------------------------
  5. // MainFrm.h : interface of the CMainFrame class
  6. //
  7. /////////////////////////////////////////////////////////////////////////////
  8. #include "PalHook.h"
  9.  
  10. class CMainFrame : public CMDIFrameWnd
  11. {
  12.     DECLARE_DYNAMIC(CMainFrame)
  13. public:
  14.     CMainFrame();
  15.  
  16. // Attributes
  17. public:
  18.  
  19. // Operations
  20. public:
  21.  
  22. // Overrides
  23.     // ClassWizard generated virtual function overrides
  24.     //{{AFX_VIRTUAL(CMainFrame)
  25.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  26.     //}}AFX_VIRTUAL
  27.  
  28. // Implementation
  29. public:
  30.     virtual ~CMainFrame();
  31. #ifdef _DEBUG
  32.     virtual void AssertValid() const;
  33.     virtual void Dump(CDumpContext& dc) const;
  34. #endif
  35.  
  36. protected:  // control bar embedded members
  37.     CStatusBar  m_wndStatusBar;
  38.     CToolBar    m_wndToolBar;
  39.     CPalMsgHandler m_palMsgHandler;            // handles palette messages
  40.  
  41. // Generated message map functions
  42. protected:
  43.     //{{AFX_MSG(CMainFrame)
  44.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  45.         // NOTE - the ClassWizard will add and remove member functions here.
  46.         //    DO NOT EDIT what you see in these blocks of generated code!
  47.     //}}AFX_MSG
  48.     DECLARE_MESSAGE_MAP()
  49. };
  50.  
  51. /////////////////////////////////////////////////////////////////////////////
  52.