VR-Forces 4.3 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
vrfGuiCoreQt
terrainAndSMSSelection.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2014 MAK Technologies, Inc.
3
** All rights reserved.
4
******************************************************************************/
5
8
10
11
#pragma once
12
13
#include <
vrfGuiCoreQt/vrfGuiCoreQt.h
>
14
#include <
vrvUtil/DtVirtualBaseClass.h
>
15
16
#ifdef QT_NO_FILEDIALOG
17
#define RESET_NO_FILE_DIALOG
18
#endif
19
20
#undef QT_NO_FILEDIALOG
21
#include <QtGui/QFileDialog>
22
23
class
QComboBox
;
24
class
QLabel
;
25
26
namespace
makVrv
27
{
28
class
DtDe;
29
}
30
31
namespace
makVrf
32
{
34
class
DT_DLL_VRFGUICOREQT
DtTerrainAndSMSSelection
:
public
QFileDialog
35
{
36
Q_OBJECT;
37
38
public
:
39
41
DtTerrainAndSMSSelection
(
makVrv::DtDe
& de,
QWidget
* parent, Qt::WindowFlags f = Qt::Tool,
42
bool
addSimulationModelSetCombo =
false
);
43
45
virtual
~
DtTerrainAndSMSSelection
();
46
49
virtual
std::string simulationModelSetFiles()
const
;
50
51
protected
:
52
virtual
void
addSimulationModelSetCombo();
53
54
protected
:
55
makVrv::DtDe
&
myDe
;
56
57
public
:
58
QComboBox
*
mySimulationModelSetComboBox
;
59
QLabel
*
mySimulationModelSetLabel
;
60
};
61
63
class
DT_DLL_VRFGUICOREQT
DtTerrainAndSMSSelectionCreator
:
public
makVrv::DtVirtualBaseClass
64
{
65
public
:
67
DtTerrainAndSMSSelectionCreator
(
makVrv::DtDe
&);
68
70
virtual
~
DtTerrainAndSMSSelectionCreator
();
71
73
static
DtTerrainAndSMSSelectionCreator
& instance(
makVrv::DtDe
&);
74
static
void
registerInstance(
makVrv::DtDe
&,
DtTerrainAndSMSSelectionCreator
*);
75
76
virtual
DtTerrainAndSMSSelection
* create(
QWidget
* parent);
77
78
protected
:
79
makVrv::DtDe
&
myDe
;
80
};
81
82
}
83
84
#ifdef RESET_NO_FILE_DIALOG
85
#define QT_NO_FILEDIALOG
86
#undef RESET_NO_FILE_DIALOG
87
#endif
Document ID: Generated on Wed Mar 11 21:20:57 EDT 2015 from SVN revision 150940
Copyright © 2005-2014 VT MÄK. All Rights Reserved (
www.mak.com
)