VertRuler.h
上传用户:wujian85
上传日期:2010-04-08
资源大小:227k
文件大小:1k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. #if !defined(AFX_VERTRULER_H__A98AD0D2_095E_11D2_840B_0000B43382FE__INCLUDED_)
  2. #define AFX_VERTRULER_H__A98AD0D2_095E_11D2_840B_0000B43382FE__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // VertRuler.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CVertRuler window
  10. class CVertRuler : public CButton
  11. {
  12. // Construction
  13. public:
  14. CVertRuler();
  15. // Attributes
  16. public:
  17. int iFrom, iTo, iDiv, iPos, iTextStep, iGreatStep, iSmallStep, iTextDiv;
  18. CFont ft;
  19. COLORREF crBack, crText, crLines;
  20. int   yMouse;
  21. // Operations
  22. public:
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CVertRuler)
  26. public:
  27. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. public:
  31. void DrawMouse(const int y);
  32. void SetRange(const int r1, const int r2);
  33. void SetPos(const int pos);
  34. virtual ~CVertRuler();
  35. // Generated message map functions
  36. protected:
  37. //{{AFX_MSG(CVertRuler)
  38. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. };
  42. /////////////////////////////////////////////////////////////////////////////
  43. //{{AFX_INSERT_LOCATION}}
  44. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  45. #endif // !defined(AFX_VERTRULER_H__A98AD0D2_095E_11D2_840B_0000B43382FE__INCLUDED_)