VR-Forces 5.0.3 Developer's Guide
Home
Modules
Namespaces
Classes
Files
Examples
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
examples
exampleDialogPage
DtExampleLogic.h
Go to the documentation of this file.
1
/*****************************************************************************
2
* Copyright (c) 2020 MAK Technologies, Inc.
3
* All rights reserved.
4
*****************************************************************************/
5
9
10
#pragma once
11
12
#include "
exampleDialogPagePlugin.h
"
13
#include <
vrvUtil/DtSignalConnectionManager.h
>
14
15
namespace
makVrv
16
{
17
18
class
DtDe;
19
class
DtSettingsBackup;
20
class
DtExampleInterface;
21
class
DtPersistenceControlsInterface;
22
25
class
DT_DLL_EXAMPLEDIALOGPAGE
DtExampleLogic
26
:
private
DtSignalConnectionManager
27
{
28
public
:
29
31
DtExampleLogic
(
DtDe
& de,
DtExampleInterface
& iFace,
32
DtPersistenceControlsInterface
& pIFace );
33
35
virtual
~
DtExampleLogic
();
36
37
protected
:
38
40
virtual
void
sendSettingsToGui();
41
43
void
slot_onDisplayEngineInitialized();
44
46
void
slot_onIntChanged(
int
val);
47
49
virtual
void
on_import();
50
virtual
void
on_export();
51
virtual
void
on_importFilePathChosen(
const
std::string& filePath);
52
virtual
void
on_exportFilePathChosen(
const
std::string& filePath);
53
55
virtual
void
settingsRestored(
const
DtSettingsBackup
* b);
56
57
58
DtDe
&
myDe
;
59
DtExampleInterface
&
myInterface
;
60
DtPersistenceControlsInterface
&
myPersistenceInterface
;
61
62
};
63
64
}
DT_DLL_EXAMPLEDIALOGPAGE
#define DT_DLL_EXAMPLEDIALOGPAGE
Definition:
exampleDialogPagePlugin.h:19
makVrv::DtExampleLogic
Example Logic (based on humble dialog pattern).
Definition:
DtExampleLogic.h:25
exampleDialogPagePlugin.h
Contains DLL export macros.
makVrv::DtPersistenceControlsInterface
Abstract interface for controlling persistence of state in a dialog.
Definition:
DtPersistenceControlsInterface.h:20
makVrv::DtExampleLogic::myPersistenceInterface
DtPersistenceControlsInterface & myPersistenceInterface
Definition:
DtExampleLogic.h:60
makVrv::DtExampleLogic::myDe
DtDe & myDe
Definition:
DtExampleLogic.h:58
makVrv::DtSignalConnectionManager
Class to manage disconnection of boost connections on deletion.
Definition:
DtSignalConnectionManager.h:20
makVrv::DtSettingsBackup
Provides a method of doign settings backup.
Definition:
DtSettingsBackup.h:23
DtSignalConnectionManager.h
Base class to provide boost signal/slot management.
makVrv::DtDe
The DtDe is the core component of any VR-Vantage application. It owns a DtRenderer, DtDeCommunicator, as well as a DtDisplay and other things.
Definition:
DtDe.h:70
makVrv::DtExampleInterface
Example Interface (based on the humble dialog pattern).
Definition:
DtExampleInterface.h:21
makVrv::DtExampleLogic::myInterface
DtExampleInterface & myInterface
Definition:
DtExampleLogic.h:59
Document ID: Generated on Thu Jun 1 17:58:13 EDT 2023 from SVN revision 255404
Copyright © 2005-2021 MAK Technologies. All Rights Reserved (
www.mak.com
)