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.
61 lines
1023 B
61 lines
1023 B
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef INPUT_MOUSECURSORS_H
|
||
|
#define INPUT_MOUSECURSORS_H
|
||
|
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
enum EMouseCursor
|
||
|
{
|
||
|
dc_user = 0,
|
||
|
dc_none,
|
||
|
dc_arrow,
|
||
|
dc_ibeam,
|
||
|
dc_hourglass,
|
||
|
dc_waitarrow,
|
||
|
dc_crosshair,
|
||
|
dc_up,
|
||
|
dc_sizenw,
|
||
|
dc_sizese,
|
||
|
dc_sizene,
|
||
|
dc_sizesw,
|
||
|
dc_sizew,
|
||
|
dc_sizee,
|
||
|
dc_sizen,
|
||
|
dc_sizes,
|
||
|
dc_sizewe,
|
||
|
dc_sizens,
|
||
|
dc_sizeall,
|
||
|
dc_no,
|
||
|
dc_hand,
|
||
|
dc_blank, // don't show any custom vgui cursor, just let windows do it stuff (for IE HTML widget)
|
||
|
dc_middle_pan,
|
||
|
dc_north_pan,
|
||
|
dc_north_east_pan,
|
||
|
dc_east_pan,
|
||
|
dc_south_east_pan,
|
||
|
dc_south_pan,
|
||
|
dc_south_west_pan,
|
||
|
dc_west_pan,
|
||
|
dc_north_west_pan,
|
||
|
dc_alias,
|
||
|
dc_cell,
|
||
|
dc_colresize,
|
||
|
dc_copycur,
|
||
|
dc_verticaltext,
|
||
|
dc_rowresize,
|
||
|
dc_zoomin,
|
||
|
dc_zoomout,
|
||
|
dc_help,
|
||
|
dc_custom,
|
||
|
|
||
|
dc_last, // custom cursors start from this value and up
|
||
|
};
|
||
|
|
||
|
#endif // INPUT_MOUSECURSORS_H
|