![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2010 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtInterfaceLayoutEditorWidget.h,v $ $Revision: 1.12 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00012 00013 #pragma once 00014 00015 #include <vrvCoreQt/vrvCoreQt.h> 00016 #include <vrvCoreQt/DtInterfaceLayoutEditorWidgetInterface.h> 00017 00018 #include <QtGui/QWidget> 00019 00020 class QLabel; 00021 class QVBoxLayout; 00022 00023 namespace makVrv 00024 { 00025 class DtDe; 00026 00029 class DT_DLL_VRVCOREQT DtInterfaceLayoutEditorWidget : public QWidget, 00030 public DtInterfaceLayoutEditorWidgetInterface 00031 { 00032 Q_OBJECT 00033 00034 public: 00035 00037 DtInterfaceLayoutEditorWidget( DtDe& de, QWidget* parent = 0, Qt::WindowFlags flags = 0 ); 00038 00040 virtual ~DtInterfaceLayoutEditorWidget(); 00041 00042 protected: 00043 00044 void setupGui(); 00045 00046 protected: 00047 00048 DtDe& myDe; 00049 QLabel* myDescription; 00050 QVBoxLayout* myMainLayout; 00051 00052 }; 00053 }