Spinner.h
上传用户:z_mail1980
上传日期:2007-06-01
资源大小:647k
文件大小:1k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. // Spinner.h: interface for the CSpinner class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_SPINNER_H__E9069FF4_8D25_4B46_A782_0BAA7D8E68C6__INCLUDED_)
  5. #define AFX_SPINNER_H__E9069FF4_8D25_4B46_A782_0BAA7D8E68C6__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CSpinner : public CObject  
  10. {
  11. public:
  12. void Draw();
  13. BOOL *GetContinue(){return m_bContinue;}
  14. void SetContinue(BOOL *bContinue){m_bContinue=bContinue;}
  15. CWnd *GetViewWnd(){return m_pViewWnd;}
  16. void SetViewWnd(CWnd *pWnd){m_pViewWnd=pWnd;}
  17. void SetLength(int iLength){m_iRadius=iLength;}
  18. void SetPoint(CPoint pPoint){m_pCenter=pPoint;}
  19. CSpinner();
  20. virtual ~CSpinner();
  21. private:
  22. int m_crColor;
  23. int m_nMinute;
  24.     int m_iRadius;
  25. CPoint m_pCenter;
  26. static COLORREF m_crColors[8];
  27. CWnd *m_pViewWnd;
  28. BOOL *m_bContinue;
  29. };
  30. #endif // !defined(AFX_SPINNER_H__E9069FF4_8D25_4B46_A782_0BAA7D8E68C6__INCLUDED_)