diff options
Diffstat (limited to 'src/T2DLL/T2DlgItemProfitsGage.h')
-rw-r--r-- | src/T2DLL/T2DlgItemProfitsGage.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/T2DLL/T2DlgItemProfitsGage.h b/src/T2DLL/T2DlgItemProfitsGage.h index 6b555b7..f07cb95 100644 --- a/src/T2DLL/T2DlgItemProfitsGage.h +++ b/src/T2DLL/T2DlgItemProfitsGage.h @@ -1,23 +1,23 @@ #pragma once #include "common.h" +#include "T2DlgItemGageBase.h" -class T2DlgItemProfitsGage { +class AFX_EXT_CLASS T2DlgItemProfitsGage : public T2DlgItemGageBase { public: - T2DlgItemProfitsGage(T2TowerDoc*, T2ImageObj*, CPalette*); + T2DlgItemProfitsGage(T2TowerDoc* inDoc, T2ImageObj* inImageObj, CPalette* inPalette); + void SetTenant(T2Tenant* inTenant); + protected: - void CalcCost(); virtual int GetMinValue(); virtual int GetMaxValue(); virtual int GetValue(); virtual int GetBlueValue(); virtual int GetYellowValue(); - virtual unsigned long GetGageColor(int); -public: - void SetTenant(T2Tenant*); -protected: - virtual void DrawInterior(CDC*, const CRect&); - virtual int IsDrawInterior(); + virtual COLORREF GetGageColor(int inValue); + virtual void DrawInterior(CDC* pDC, const CRect& inRect); + virtual BOOL IsDrawInterior(); + void CalcCost(); -public: - virtual ~T2DlgItemProfitsGage() {} + int mCost; + T2Tenant *mTenant; }; |