summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2DlgItemBelongGage.h
blob: 878be445e884eb9535654c5920b6d0a29c324e60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once
#include "common.h"
#include "T2DlgItemGageBase.h"

class AFX_CLASS_EXPORT T2DlgItemBelongGage : public T2DlgItemGageBase {
public:
	T2DlgItemBelongGage(T2TowerDoc* towerDoc, T2ImageObj* imageObj, CPalette* palette);
	void SetTenant(T2Tenant* tenant);

protected:
	virtual int GetMinValue();
	virtual int GetMaxValue();
	virtual int GetValue();
	virtual int GetBlueValue();
	virtual int GetYellowValue();
	virtual COLORREF GetGageColor(int value);
	virtual BOOL IsDrawInterior();

	T2Tenant *mTenant;
};