LineTool.h
上传用户:hehe2haha
上传日期:2013-08-16
资源大小:161k
文件大小:1k
源码类别:

CAD

开发平台:

Visual C++

  1. // LineTool.h: interface for the CLineTool class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_LINETOOL_H__9DF7214A_2107_410C_9091_4E37D6B71A73__INCLUDED_)
  5. #define AFX_LINETOOL_H__9DF7214A_2107_410C_9091_4E37D6B71A73__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "Tool.h"
  10. class CLineTool : public CTool  
  11. {
  12. public:
  13. CLineTool();
  14. virtual ~CLineTool();
  15. virtual void OnMouseMove(HWND hWnd, UINT nFlags, POINT ptPos);
  16. virtual void OnRButtonDown(HWND hWnd,UINT nFlags, POINT ptPos);
  17. virtual void OnLButtonDown(HWND hWnd,UINT nFlags, POINT ptPos);
  18. };
  19. #endif // !defined(AFX_LINETOOL_H__9DF7214A_2107_410C_9091_4E37D6B71A73__INCLUDED_)