mirror of
https://github.com/isledecomp/LEGOIslandRebuilder.git
synced 2024-12-02 11:57:45 -05:00
20 lines
338 B
C
20 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;
|
||
|
};
|