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

  1. // -------------------------------------------------------------------------
  2. // Copyright @ 1997 TCK Software, Incorporated
  3. // All Rights Reserved
  4. // -------------------------------------------------------------------------
  5.  
  6. // MainFrm.h : interface of the CMainFrame class
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9.  
  10. #if !defined(AFX_MAINFRM_H__ACB394C3_9D36_11D1_88FB_00A0C9050951__INCLUDED_)
  11. #define AFX_MAINFRM_H__ACB394C3_9D36_11D1_88FB_00A0C9050951__INCLUDED_
  12.  
  13. #if _MSC_VER >= 1000
  14. #pragma once
  15. #endif // _MSC_VER >= 1000
  16.  
  17. class CMainFrame : public CFrameWnd
  18. {
  19. protected: // create from serialization only
  20.     CMainFrame();
  21.     DECLARE_DYNCREATE(CMainFrame)
  22.  
  23. // Attributes
  24. public:
  25.  
  26. // Operations
  27. public:
  28.  
  29. // Overrides
  30.     // ClassWizard generated virtual function overrides
  31.     //{{AFX_VIRTUAL(CMainFrame)
  32.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  33.     //}}AFX_VIRTUAL
  34.  
  35. // Implementation
  36. public:
  37.     virtual ~CMainFrame();
  38. #ifdef _DEBUG
  39.     virtual void AssertValid() const;
  40.     virtual void Dump(CDumpContext& dc) const;
  41. #endif
  42.     CDialogBar*    GetOptionsTB()    { return &m_wndOptionsTB; }
  43.  
  44. protected:  // control bar embedded members
  45.     CStatusBar  m_wndStatusBar;
  46.     // CToolBar    m_wndToolBar;
  47.  
  48. // Generated message map functions
  49. protected:
  50.     CDialogBar m_wndOptionsTB;
  51.     //{{AFX_MSG(CMainFrame)
  52.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  53.         // NOTE - the ClassWizard will add and remove member functions here.
  54.         //    DO NOT EDIT what you see in these blocks of generated code!
  55.     //}}AFX_MSG
  56.     DECLARE_MESSAGE_MAP()
  57. };
  58.  
  59. /////////////////////////////////////////////////////////////////////////////
  60.  
  61. //{{AFX_INSERT_LOCATION}}
  62. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  63.  
  64. #endif // !defined(AFX_MAINFRM_H__ACB394C3_9D36_11D1_88FB_00A0C9050951__INCLUDED_)
  65.