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

CAD

开发平台:

Visual C++

  1. // MoveShape.h: interface for the CMoveShape class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MOVESHAPE_H__F209781A_8225_4392_8F68_411F01D84153__INCLUDED_)
  5. #define AFX_MOVESHAPE_H__F209781A_8225_4392_8F68_411F01D84153__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "Shape.h"
  10. const int    PenStyle = PS_SOLID;             // pen style
  11. const int    PenWidth = 1;                    // pen width
  12. const COLORREF PenColor = RGB(255,128,255);     // pen color
  13. class CMoveShape  
  14. {
  15. public:
  16. CShape * pShape;
  17. public:
  18. virtual void Move(HDC hdc ,int xOffset,int yOffset);
  19. CMoveShape();
  20. virtual ~CMoveShape();
  21. };
  22. #endif // !defined(AFX_MOVESHAPE_H__F209781A_8225_4392_8F68_411F01D84153__INCLUDED_)