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

CAD

开发平台:

Visual C++

  1. // Tool.h: interface for the CTool class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_TOOL_H__2293E5B7_9DAB_4A65_9656_FB03EBAC255E__INCLUDED_)
  5. #define AFX_TOOL_H__2293E5B7_9DAB_4A65_9656_FB03EBAC255E__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "resource.h"
  10. #include "Shape.h"
  11. enum tagToolState 
  12. {Init_State,FirstHit,SecondHit};
  13. class CTool  
  14. {
  15. public:
  16. POINT  m_ptBeginPos;        // 始点
  17. POINT  m_ptPrePos;          // 终点
  18. protected:
  19. tagToolState m_eToolState;  //鼠标状态标记
  20. public:
  21. CTool();
  22. virtual ~CTool();
  23. public:
  24. virtual void OnMouseMove(HWND hWnd, UINT nFlags, POINT ptPos)   { }
  25. virtual void OnRButtonDown(HWND hWnd,UINT nFlags, POINT ptPos)  {OverCurTool(hWnd);}
  26. virtual void OnLButtonDown(HWND hWnd,UINT nFlags, POINT ptPos)  { }
  27. void OverCurTool(HWND hWnd)
  28. {
  29. //发送一个鼠标无状态消息
  30. ::PostMessage(hWnd,WM_COMMAND,OVER_CUR_TOOL,0);
  31. }
  32. };
  33. #endif // !defined(AFX_TOOL_H__2293E5B7_9DAB_4A65_9656_FB03EBAC255E__INCLUDED_)