mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
36 lines
606 B
C
36 lines
606 B
C
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//
|
|
//=============================================================================//
|
|
//
|
|
// defines ids of parts of the status bar
|
|
//
|
|
|
|
enum
|
|
{
|
|
ID_INDICATOR_FIRST = 0xE720,
|
|
ID_INDICATOR_SELECTION,
|
|
ID_INDICATOR_COORDS,
|
|
ID_INDICATOR_SIZE,
|
|
ID_INDICATOR_GRIDZOOM,
|
|
ID_INDICATOR_SNAP,
|
|
ID_INDICATOR_LIGHTPROGRESS
|
|
};
|
|
|
|
enum
|
|
{
|
|
SBI_PROMPT = 0,
|
|
SBI_SELECTION,
|
|
SBI_COORDS,
|
|
SBI_SIZE,
|
|
SBI_GRIDZOOM,
|
|
SBI_SNAP,
|
|
SBI_LIGHTPROGRESS
|
|
};
|
|
|
|
// mainfrm.cpp:
|
|
void SetStatusText(int nIndex, LPCTSTR pszText);
|