home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / mslang / ttips2 / mainfrm.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-08  |  936 b   |  43 lines

  1. // mainfrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #include "tooltip.h"
  5.  
  6. class CMainFrame : public CMDIFrameWnd
  7. {
  8.     DECLARE_DYNAMIC(CMainFrame)
  9. public:
  10.     CMainFrame();
  11.  
  12. // Attributes
  13. public:
  14.  
  15. // Operations
  16. public:
  17.  
  18. // Implementation
  19. public:
  20.     virtual ~CMainFrame();
  21. #ifdef _DEBUG
  22.     virtual void AssertValid() const;
  23.     virtual void Dump(CDumpContext& dc) const;
  24. #endif
  25.  
  26. protected:  // control bar embedded members
  27.     CStatusBar  m_wndStatusBar;
  28.     CToolTipBar m_wndToolBar;
  29.  
  30. // Generated message map functions
  31. protected:
  32.     void SetToolbarOptions(BOOL bDisplayDialog);
  33.     
  34.     //{{AFX_MSG(CMainFrame)
  35.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  36.     afx_msg void OnToolbar();
  37.     afx_msg void OnSampleButton();
  38.     //}}AFX_MSG
  39.     DECLARE_MESSAGE_MAP()
  40. };
  41.  
  42. /////////////////////////////////////////////////////////////////////////////
  43.