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.
27 lines
625 B
C++
27 lines
625 B
C++
#pragma once
|
|
#include "itemfocusrect.h"
|
|
|
|
namespace NItem
|
|
{
|
|
class CItemEditFrame : public CItemFocusRect
|
|
{
|
|
public:
|
|
CItemEditFrame(CSigmaDoc * ppDoc);
|
|
virtual ~CItemEditFrame(void);
|
|
|
|
//ÊôÐÔÏî
|
|
//virtual BOOL InitPropertyGrid(CXTPPropertyGrid& grid);
|
|
//virtual BOOL OnGridItemChangeValue(CXTPPropertyGridItem* pItem);
|
|
|
|
//BOOL InitPropertyGrid(CXTPPropertyGrid& grid, CFrame* pValue);
|
|
//BOOL OnGridItemChangeValue(CXTPPropertyGridItem* pItem, CFrame* pValue);
|
|
|
|
double m_dThickness;
|
|
CRect8 m_rect;
|
|
CFrame* m_pFrame;
|
|
COLORREF color;
|
|
BOOL m_bBlackLine;
|
|
int CreateFrame(CFrame &frame, CNet* pNet, COLORREF &color);
|
|
};
|
|
|
|
}; |