mirror of
https://github.com/jmarshall23/Hellfire.git
synced 2026-08-12 07:50:53 +02:00
36 lines
1.3 KiB
C++
36 lines
1.3 KiB
C++
//****************************************************************************
|
|
// DiabEdit.h
|
|
// Diablo UI custom edit ctrl
|
|
//
|
|
// By Frank Pearce
|
|
// created 10.23.96
|
|
//****************************************************************************
|
|
|
|
|
|
//****************************************************************************
|
|
//****************************************************************************
|
|
#define DIABLO_EDITCURSOR '|'
|
|
|
|
|
|
//****************************************************************************
|
|
// DiabloEdit ctrl notification messages
|
|
//****************************************************************************
|
|
#define DEN_SETFOCUS 1
|
|
#define DEN_KILLFOCUS 2
|
|
#define DEN_UPDATE 3
|
|
|
|
|
|
//****************************************************************************
|
|
// messages the parent can send to the Diablo edit
|
|
//****************************************************************************
|
|
#define DEM_CLEAR WM_USER
|
|
#define DEM_LIMITTEXT (WM_USER+1)
|
|
#define DEM_GETLIMITTEXT (WM_USER+2)
|
|
#define DEM_CURSORON (WM_USER+3)
|
|
#define DEM_RESTRICTCHARS (WM_USER+4)
|
|
|
|
|
|
//****************************************************************************
|
|
//****************************************************************************
|
|
void DiabEditRegisterClass(void);
|