summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2DlgItemRadioText.h
blob: c2100c06c7d670513e13d2fbf6053ad28d52410f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef T2DLL_T2DLGITEMRADIOTEXT_H
#define T2DLL_T2DLGITEMRADIOTEXT_H
#include "../common.h"
#include "T2DlgItemICheck.h"

class T2DlgItemRadioText : public T2DlgItemICheck {
public:
    T2DlgItemRadioText(T2TowerDoc *inDoc, T2ImageObj *inImageObj, CPalette *inPalette);
    ~T2DlgItemRadioText();
    virtual BOOL Create(const char *inWindowName, DWORD inStyle, const RECT &inRect, CWnd *inParentWnd, UINT inID);

protected:
    virtual BOOL OnT2DlgItemEraseBkgnd(CDC *pDC);
    virtual void OnT2DlgItemLButtonDown(UINT inFlags, CPoint inPt);

    char mText[256];
};
#endif