home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / mysqlmanager / mainfrm.h < prev    next >
C/C++ Source or Header  |  1999-10-12  |  2KB  |  70 lines

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