From c0c336500955a23e344651e5412c9d9d441ef4ee Mon Sep 17 00:00:00 2001 From: Ash Wolf Date: Wed, 28 Jun 2023 22:22:32 +0100 Subject: first pass of T2DLL --- src/T2DLL/T2DlgItemProfitsGage.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'src/T2DLL/T2DlgItemProfitsGage.h') 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; }; -- cgit v1.2.3