RECTANGE.h
上传用户:shangwu01
上传日期:2013-04-22
资源大小:707k
文件大小:1k
- // RECTANGE.h: interface for the CRECTANGE class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_RECTANGE_H__D72692D4_F5FF_4370_A8D7_67784ADF495E__INCLUDED_)
- #define AFX_RECTANGE_H__D72692D4_F5FF_4370_A8D7_67784ADF495E__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- class CRECTANGE
- {
- public:
- CRECTANGE();
- virtual ~CRECTANGE();
- class rectange_data
- {
- public:
- rectange_data(CPoint m_pointorg,CPoint m_pointfal,int m_line_style,int m_line_width,COLORREF m_line_color);
- virtual ~rectange_data();
- public:
- CPoint m_pointorg;
- CPoint m_pointfal;
- int m_line_style;
- int m_line_width;
- COLORREF m_line_color;
- };
- public:
- CPtrArray m_rectange_save;
- public:
- void rectange_drawMove(CPoint m_pointorg,CPoint m_pointfal,CDC *pDC,int m_line_style,int m_line_width,COLORREF m_line_color);
- void rectange_drawAttribution(CDC *pDC);
- void rectange_store(CPoint m_pointorg,CPoint m_pointfal,int m_line_style,int m_line_width,COLORREF m_line_color);
- };
- #endif // !defined(AFX_RECTANGE_H__D72692D4_F5FF_4370_A8D7_67784ADF495E__INCLUDED_)