VR-Forces 4.6 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
include
vrvCore
DtDisplayProxy.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2010 MAK Technologies, Inc.
3
** All rights reserved.
4
******************************************************************************/
5
/******************************************************************************
6
** $RCSfile: DtDisplayProxy.h,v $ $Revision: 1.25 $ $State: Exp $
7
******************************************************************************/
8
12
13
#pragma once
14
#include <
vrvCore/DtWindowProxy.h
>
15
16
namespace
makVrv
17
{
18
class
DtDe;
19
class
DtDisplayConfiguration;
20
class
DtDisplayProctor;
21
25
class
DT_DLL_VRVCORE
DtDisplayProxy
:
public
DtProxy
26
{
27
public
:
28
30
friend
class
DtDe
;
31
33
virtual
~
DtDisplayProxy
();
34
36
37
39
bool
addWindow(
const
DtWindowConfiguration
& configuration);
40
42
void
destroyWindow(
DtWindowProxySP
window);
43
45
bool
modifyWindow(
DtWindowProxySP
window,
46
const
DtWindowConfiguration
& config);
47
49
50
52
53
56
const
DtDisplayConfiguration
& configuration()
const
;
57
60
DtWindowProxySP
findWindow(
const
std::string& windowName );
61
64
DtWindowProxySP
findWindowByIndex(
int
index);
65
68
int
windowCount()
const
;
69
71
const
std::string& displayName()
const
;
73
74
75
protected
:
76
78
DtDisplayProxy
(
DtDe
& de,
DtDisplayConfiguration
& configuration);
79
81
DtDisplayProctor
* proctor();
82
83
protected
:
84
85
DtDe
&
myDe
;
86
DtDisplayConfiguration
*
myConfiguration
;
87
DtDisplayProctor
*
myProctorCache
;
88
89
typedef
std::map<std::string,DtWindowProxyWP>
WindowProxies
;
90
WindowProxies
myWindowProxies
;
91
92
};
93
94
typedef
DtBoost::shared_ptr<DtDisplayProxy>
DtDisplayProxySP
;
95
typedef
DtBoost::weak_ptr<DtDisplayProxy>
DtDisplayProxyWP
;
96
}
Document ID: Generated on Thu Apr 12 03:15:37 EDT 2018 from SVN revision 187986
Copyright © 2005-2018 VT MÄK. All Rights Reserved (
www.mak.com
)