mirror of
https://github.com/isledecomp/LEGOIslandRebuilder.git
synced 2024-11-27 09:35:41 -05:00
19 lines
338 B
C++
19 lines
338 B
C++
#pragma once
|
|
#include "..\CustomItem.h"
|
|
|
|
class CRectItem : public ICustomItem
|
|
{
|
|
public:
|
|
CRectItem(void);
|
|
~CRectItem(void);
|
|
|
|
virtual CPropertyGrid::EEditMode GetEditMode();
|
|
virtual void DrawItem(CDC& dc, CRect rc, bool focused);
|
|
virtual bool OnEditItem();
|
|
|
|
protected:
|
|
int m_left;
|
|
int m_top;
|
|
int m_right;
|
|
int m_bottom;
|
|
};
|