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.
48 lines
760 B
48 lines
760 B
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose: Holds the enumerated list of default cursors
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef CURSOR_H
|
||
|
#define CURSOR_H
|
||
|
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
#include <vgui/VGUI.h>
|
||
|
|
||
|
namespace vgui
|
||
|
{
|
||
|
|
||
|
enum CursorCode
|
||
|
{
|
||
|
dc_user,
|
||
|
dc_none,
|
||
|
dc_arrow,
|
||
|
dc_ibeam,
|
||
|
dc_hourglass,
|
||
|
dc_waitarrow,
|
||
|
dc_crosshair,
|
||
|
dc_up,
|
||
|
dc_sizenwse,
|
||
|
dc_sizenesw,
|
||
|
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 HTML widget)
|
||
|
dc_last,
|
||
|
dc_alwaysvisible_push,
|
||
|
dc_alwaysvisible_pop,
|
||
|
};
|
||
|
|
||
|
typedef unsigned long HCursor;
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // CURSOR_H
|