blob: 61f2f61aae9ea21e062b0588f1c30b6f3fef364e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef T2DLL_T2DLGITEMPPLEVALGAGE_H
#define T2DLL_T2DLGITEMPPLEVALGAGE_H
#include "../common.h"
#include "T2DlgItemGageBase.h"
class AFX_CLASS_EXPORT T2DlgItemPPLEvalGage : public T2DlgItemGageBase {
public:
T2DlgItemPPLEvalGage(T2TowerDoc* towerDoc, T2ImageObj* imageObj, CPalette* palette);
void SetPeople(T2People* people);
protected:
virtual int GetMinValue();
virtual int GetMaxValue();
virtual int GetValue();
virtual int GetBlueValue();
virtual int GetYellowValue();
virtual COLORREF GetGageColor(int value);
virtual BOOL IsDrawInterior();
T2People *mPeople;
};
#endif
|