MainFrm.h
上传用户:hzzhuce
上传日期:2013-04-01
资源大小:1289k
文件大小:2k
源码类别:

SQL Server

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__623C97A2_19A8_4D06_9B30_D4EAB71033C8__INCLUDED_)
  5. #define AFX_MAINFRM_H__623C97A2_19A8_4D06_9B30_D4EAB71033C8__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CMainFrame : public CFrameWnd
  10. {
  11. protected: // create from serialization only
  12. CMainFrame();
  13. DECLARE_DYNCREATE(CMainFrame)
  14. // Attributes
  15. public:
  16. // Operations
  17. public:
  18. // Overrides
  19. // ClassWizard generated virtual function overrides
  20. //{{AFX_VIRTUAL(CMainFrame)
  21. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  22. //}}AFX_VIRTUAL
  23. // Implementation
  24. public:
  25. CRect m_rtIcon;
  26. CRect m_rtButtMin;
  27. CRect m_rtButtExit;
  28. CRect m_rtButtMax;
  29. LRESULT DefWindwoProc(UINT message,WPARAM wParam,LPARAM lParam);
  30. void DrawTitleBar(CDC*pDC);
  31. void DrawBmpTitleBar(CDC*pDC,CRect rcTitle);
  32. //void OnNcLButtonDown(UINT nHitTest,CPoint point);
  33. virtual ~CMainFrame();
  34. #ifdef _DEBUG
  35. virtual void AssertValid() const;
  36. virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38. protected:  // control bar embedded members
  39. CStatusBar  m_wndStatusBar;
  40. CToolBar    m_wndToolBar;
  41. // Generated message map functions
  42. protected:
  43. //{{AFX_MSG(CMainFrame)
  44. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  45. afx_msg void OnNcLButtonDown(UINT nHitTest, CPoint point);
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. };
  49. /////////////////////////////////////////////////////////////////////////////
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  52. #endif // !defined(AFX_MAINFRM_H__623C97A2_19A8_4D06_9B30_D4EAB71033C8__INCLUDED_)