Iterator.h
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:1k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. // Iterator.h: interface for the CIterator class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_ITERATOR_H__134EF2FA_0E20_4EB5_9605_1BAA639D0AFB__INCLUDED_)
  5. #define AFX_ITERATOR_H__134EF2FA_0E20_4EB5_9605_1BAA639D0AFB__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CDrawView;
  10. class CIterator  
  11. {
  12. public:
  13.          CIterator( CDrawView * view );
  14.  
  15. virtual ~CIterator( );
  16. void     SetIterator( bool * m_bShow = NULL , CPoint * point = NULL );
  17. void    Draw( CDC * pDC );
  18. bool LButtonDown( UINT nFlags , CPoint point );
  19. bool LButtonUp( UINT nFlags , CPoint point );
  20. bool MouseMove( UINT nFlags , CPoint point );
  21. private:
  22. CDrawView  * view;
  23. CImageList imglist;
  24. CRect      rect;
  25. bool       drag;
  26. bool       m_bShow;
  27. CPoint     dragPoint;
  28. HCURSOR    hCursor;
  29. HCURSOR    hOldCursor;
  30. };
  31. #endif // !defined(AFX_ITERATOR_H__134EF2FA_0E20_4EB5_9605_1BAA639D0AFB__INCLUDED_)