StatusBarView.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // StatusBarView.h : interface of the CStatusBarView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_STATUSBARVIEW_H__FD81C154_425F_404B_89EA_69A1D7627549__INCLUDED_)
  5. #define AFX_STATUSBARVIEW_H__FD81C154_425F_404B_89EA_69A1D7627549__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CStatusBarView : public CView
  10. {
  11. protected: // create from serialization only
  12. CStatusBarView();
  13. DECLARE_DYNCREATE(CStatusBarView)
  14. // Attributes
  15. public:
  16. CStatusBarDoc* GetDocument();
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CStatusBarView)
  22. public:
  23. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  24. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  25. protected:
  26. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  27. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  28. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. public:
  32. virtual ~CStatusBarView();
  33. #ifdef _DEBUG
  34. virtual void AssertValid() const;
  35. virtual void Dump(CDumpContext& dc) const;
  36. #endif
  37. protected:
  38. CFont m_font;
  39. void OnZoomIndicator();
  40. void OnZoomSliderScroll(NMHDR* pNMHDR, LRESULT* pResult);
  41. int m_nZoom;
  42. // Generated message map functions
  43. protected:
  44. //{{AFX_MSG(CStatusBarView)
  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. #ifndef _DEBUG  // debug version in StatusBarView.cpp
  51. inline CStatusBarDoc* CStatusBarView::GetDocument()
  52.    { return (CStatusBarDoc*)m_pDocument; }
  53. #endif
  54. /////////////////////////////////////////////////////////////////////////////
  55. //{{AFX_INSERT_LOCATION}}
  56. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  57. #endif // !defined(AFX_STATUSBARVIEW_H__FD81C154_425F_404B_89EA_69A1D7627549__INCLUDED_)