mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
394 B
24 lines
394 B
#ifndef __ODB_H
|
|
#define __ODB_H
|
|
|
|
class C3DButton : public CButton
|
|
{
|
|
public:
|
|
enum enumDir {Up, Down};
|
|
public:
|
|
C3DButton() {m_buttonBitmap=0;}
|
|
~C3DButton();
|
|
|
|
protected:
|
|
TCHAR m_szCaption[32];
|
|
HBITMAP m_buttonBitmap;
|
|
|
|
public:
|
|
BOOL Create(HWND hParent, HINSTANCE hInst, LPCTSTR lpszCaption, int nID, enumDir dir);
|
|
|
|
protected:
|
|
void CreateBtnFace(enumDir dir);
|
|
};
|
|
|
|
|
|
#endif
|