VR-Forces 4.5 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
DtDisplayNameProvider.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2014 MAK Technologies, Inc.
3
** All rights reserved.
4
******************************************************************************/
5
9
10
#pragma once
11
12
#include <
vrvCore/vrvCore.h
>
13
14
#include <
vrvUtil/DtUnicode.h
>
15
16
#include <map>
17
18
namespace
makVrv
19
{
27
class
DT_DLL_VRVCORE
DtDisplayNameProvider
28
{
29
30
public
:
31
32
typedef
std::map<int, DtUnicode>
IntKeyToDisplayNameMap
;
33
35
DtDisplayNameProvider
();
36
38
virtual
~
DtDisplayNameProvider
();
39
41
virtual
const
DtUnicode
* findDisplayName(
int
intKey )
const
;
42
45
virtual
void
setDisplayName(
int
intKey,
const
DtUnicode
& displayName );
46
48
virtual
const
IntKeyToDisplayNameMap
& displayNames()
const
;
49
52
virtual
const
DtUnicode
* findToolTip(
int
intKey )
const
;
53
56
virtual
void
setToolTip(
int
intKey,
const
DtUnicode
& displayName );
57
59
virtual
const
IntKeyToDisplayNameMap
& toolTips()
const
;
60
61
protected
:
62
IntKeyToDisplayNameMap
myIntKeyToDisplayNameMap
;
63
IntKeyToDisplayNameMap
myIntKeyToToolTipMap
;
64
};
65
}
66
67
68
Document ID: Generated on Thu Mar 23 18:54:12 EDT 2017 from SVN revision 174804
Copyright © 2005-2017 VT MÄK. All Rights Reserved (
www.mak.com
)