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

CAD

开发平台:

Visual C++

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