VR-Forces 4.7 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
vrvVrlQt
DtRemoteGraphicSetWidget.h
Go to the documentation of this file.
1
/*********************************************************************
2
** Copyright (c) 2010 MaK Technologies, Inc.
3
** All rights reserved.
4
*********************************************************************/
5
/*********************************************************************
6
** $RCSfile: DtRemoteGraphicSetWidget.h,v $ $Revision: 1.1 $ $State: Exp $
7
*********************************************************************/
8
#pragma once
9
13
14
#include <
vrvVrlQt/vrvVrlQt.h
>
15
16
#include <QtWidgets/QWidget>
17
18
#include <
vrvVrlQt/DtRemoteGraphicSetInterface.h
>
19
20
class
QTreeWidget
;
21
class
QTreeWidgetItem
;
22
class
QVBoxLayout;
23
24
namespace
makVrv
25
{
26
class
DtRemoteGraphicSetLogic;
27
30
class
DT_DLL_VRVVRLQT
DtRemoteGraphicSetWidget
31
:
public
QWidget
32
,
public
DtRemoteGraphicSetInterface
33
{
34
Q_OBJECT
35
public
:
37
DtRemoteGraphicSetWidget
(
DtDe
& de, QWidget* parent = 0,
38
Qt::WindowFlags flags = 0);
39
41
virtual
~
DtRemoteGraphicSetWidget
();
42
44
virtual
void
setRemoteGraphicSetStatus(
const
std::string& name,
bool
onOff);
45
46
virtual
void
removeRemoteGraphicSet(
const
std::string& name);
47
48
protected
:
50
void
setupGui();
51
52
virtual
QTreeWidgetItem
* addLayer(
const
QStringList& strList);
53
54
55
protected
slots:
56
virtual
void
onTreeItemChanged(
QTreeWidgetItem
* item,
int
column);
57
58
protected
:
59
QVBoxLayout*
myMasterLayout
;
60
QTreeWidget
*
myTreeWidget
;
61
DtRemoteGraphicSetLogic
*
myLogic
;
62
63
};
64
}
65
66
Document ID: Generated on Fri Apr 26 21:53:14 EDT 2019 from SVN revision 197883
Copyright © 2005-2019 VT MAK. All Rights Reserved (
www.mak.com
)