summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2DlgItemProfitsGage.h
diff options
context:
space:
mode:
authorAsh Wolf <ninji@wuffs.org>2023-06-28 22:22:32 +0100
committerAsh Wolf <ninji@wuffs.org>2023-06-28 22:22:32 +0100
commitc0c336500955a23e344651e5412c9d9d441ef4ee (patch)
tree790769c748db307cf3314f6e896e2f61c68561a2 /src/T2DLL/T2DlgItemProfitsGage.h
parent37e364b2c6cc7487a1c888d256a73e5337bb7189 (diff)
downloadt2win-c0c336500955a23e344651e5412c9d9d441ef4ee.tar.gz
t2win-c0c336500955a23e344651e5412c9d9d441ef4ee.zip
first pass of T2DLL
Diffstat (limited to 'src/T2DLL/T2DlgItemProfitsGage.h')
-rw-r--r--src/T2DLL/T2DlgItemProfitsGage.h22
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;
};