Iterator.h
资源名称:视频会议系统.rar [点击查看]
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:1k
源码类别:
IP电话/视频会议
开发平台:
Visual C++
- // Iterator.h: interface for the CIterator class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_ITERATOR_H__134EF2FA_0E20_4EB5_9605_1BAA639D0AFB__INCLUDED_)
- #define AFX_ITERATOR_H__134EF2FA_0E20_4EB5_9605_1BAA639D0AFB__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- class CDrawView;
- class CIterator
- {
- public:
- CIterator( CDrawView * view );
- virtual ~CIterator( );
- void SetIterator( bool * m_bShow = NULL , CPoint * point = NULL );
- void Draw( CDC * pDC );
- bool LButtonDown( UINT nFlags , CPoint point );
- bool LButtonUp( UINT nFlags , CPoint point );
- bool MouseMove( UINT nFlags , CPoint point );
- private:
- CDrawView * view;
- CImageList imglist;
- CRect rect;
- bool drag;
- bool m_bShow;
- CPoint dragPoint;
- HCURSOR hCursor;
- HCURSOR hOldCursor;
- };
- #endif // !defined(AFX_ITERATOR_H__134EF2FA_0E20_4EB5_9605_1BAA639D0AFB__INCLUDED_)