VR-Forces Development_Version Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
include
vrvCore
DtCursor.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2010 MAK Technologies, Inc.
3
** All rights reserved.
4
******************************************************************************/
5
/******************************************************************************
6
** $RCSfile: DtCursor.h,v $ $Revision: 1.31 $ $State: Exp $
7
******************************************************************************/
8
12
13
#pragma once
14
15
#include <
vrvCore/vrvCore.h
>
16
17
namespace
makVrv
18
{
22
class
DT_DLL_VRVCORE
DtCursor
23
{
24
25
public
:
26
enum
CursorShape
27
{
28
ArrowCursor
,
29
UpArrowCursor
,
30
CrossCursor
,
31
WaitCursor
,
32
IBeamCursor
,
33
SizeVerCursor
,
34
SizeHorCursor
,
35
SizeBDiagCursor
,
36
SizeFDiagCursor
,
37
SizeAllCursor
,
38
BlankCursor
,
39
SplitVCursor
,
40
SplitHCursor
,
41
PointingHandCursor
,
42
ForbiddenCursor
,
43
WhatsThisCursor
,
44
BusyCursor
,
45
OpenHandCursor
,
46
ClosedHandCursor
,
47
LastCursor = ClosedHandCursor,
48
BitmapCursor = 24,
49
CustomCursor = 25
50
};
51
53
DtCursor
();
54
56
DtCursor
(CursorShape);
57
59
DtCursor
(
const
DtCursor
&);
60
62
virtual
~
DtCursor
();
63
64
inline
const
CursorShape
& cursorShape()
const
65
{
66
return
myCursorShape;
67
}
68
69
virtual
DtCursor
* clone()
const
;
70
71
protected
:
72
CursorShape
myCursorShape
;
73
};
74
}
75
76
Document ID: Generated on Tue Mar 8 22:13:38 EST 2016 from SVN revision 162938
Copyright © 2005-2015 VT MÄK. All Rights Reserved (
www.mak.com
)