VR-Forces 4.3.1 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
DtDisplay.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2010 MAK Technologies, Inc.
3
** All rights reserved.
4
******************************************************************************/
5
/******************************************************************************
6
** $RCSfile: DtDisplay.h,v $ $Revision: 1.46 $ $State: Exp $
7
******************************************************************************/
8
12
13
#ifndef DtDisplay_H_
14
#define DtDisplay_H_
15
16
#include <
vrvCore/vrvCore.h
>
17
#include <string>
18
19
namespace
makVrv
20
{
21
22
class
DtDe;
23
class
DtDisplayConfiguration;
24
class
DtWindowConfiguration;
25
class
DtWindowManager;
26
class
DtDisplayProctor;
27
30
class
DT_DLL_VRVCORE
DtDisplay
31
{
32
33
public
:
34
39
DtDisplay
(
DtDe
& de,
DtDisplayConfiguration
& dec);
40
42
virtual
~
DtDisplay
();
43
45
void
realizeConfiguration();
46
48
virtual
const
DtDisplayConfiguration
& configuration()
const
;
49
51
virtual
bool
addWindow(
const
std::string& displayName,
const
DtWindowConfiguration
& configuration);
52
54
virtual
bool
destroyWindow(
const
std::string& displayName,
const
std::string& windowName );
55
57
virtual
bool
modifyWindow(
const
std::string& displayName,
const
std::string& windowName,
58
const
DtWindowConfiguration
& config );
59
61
62
virtual
DtWindowManager
& windowManager();
63
virtual
const
DtWindowManager
& windowManager()
const
;
65
67
virtual
void
tick();
68
71
static
const
char
* className();
72
73
inline
DtDe
& de()
74
{
75
return
myDe;
76
}
77
79
virtual
bool
isVisibleAndCloseToCamera(
80
float
sphereRadius,
81
float
sphereCenterX,
float
sphereCenterY,
float
sphereCenterZ,
82
float
upX,
float
upY,
float
upZ)
const
;
83
84
protected
:
85
86
DtDe
&
myDe
;
87
DtWindowManager
*
myWindowManager
;
88
DtDisplayConfiguration
&
myDisplayConfiguration
;
89
DtDisplayProctor
*
myDisplayProctor
;
90
static
const
char
*
myClassName
;
91
92
};
93
}
94
95
#endif
Document ID: Generated on Wed Jul 29 00:55:00 EDT 2015 from SVN revision 155257
Copyright © 2005-2015 VT MÄK. All Rights Reserved (
www.mak.com
)