![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 2007 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 /******************************************************************************* 00006 ** $RCSfile: uiFrameElement.h,v $ $Revision: 1.1 $ $State: Exp $ 00007 *******************************************************************************/ 00008 00011 00013 00014 #ifndef uiFrameElement_h 00015 #define uiFrameElement_h 00016 00017 #include "entityEditorImpl/uiElement.h" 00018 00019 class QGroupBox; 00020 00021 #include "entityEditorImpl/entityEditorImplDefines.h" 00022 00023 class DT_DLL_entityeditorimpl DtUiFrameElement : public DtUiElement 00024 { 00025 public: 00026 00028 DtUiFrameElement(const DtString& name, 00029 DtReaderWriterRegistry* const parentRegistry = NULL); 00030 00032 virtual ~DtUiFrameElement(); 00033 00035 DtUiFrameElement(const DtUiFrameElement& orig); 00036 00038 DtUiFrameElement& operator=(const DtUiFrameElement& orig); 00039 00040 virtual QWidget* createControls(QWidget* parent); 00041 00042 protected: 00043 virtual DtUiElement* clone(); 00044 00045 virtual void decorateElement(); 00046 00047 protected: 00048 QGroupBox* myFrame; 00049 }; 00050 00051 #endif