You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
558 B
C++

#pragma once
#include "itemfocusrect.h"
namespace NItem
{
class CItemEllipse : public CItemFocusRect
{
public:
CItemEllipse(CSigmaDoc * ppDoc);
~CItemEllipse(void);
virtual void DoDrawOther(CDC* pDC, int nButton);
void DoLButtonUp(CDC* pDC) override;
//virtual BOOL InitPropertyGrid(CXTPPropertyGrid& grid);
//virtual BOOL OnGridItemChangeValue(CXTPPropertyGridItem* pItem);
int GetWdithPosition(CEllipse* pell);
void SetWidthPosition(CEllipse* pell, int nPos);
int m_nWidthPosition;
double m_dCurveWidth;
CSize8 m_size;
};
}