![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2009 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtPerformanceOptionsPage.h,v $ $Revision: 1.1 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00012 00013 #pragma once 00014 00015 #include <vrfGuiCoreQt/vrfGuiCoreQt.h> 00016 #include <vrvCoreQt/DtPage.h> 00017 00018 class QLabel; 00019 00020 namespace makVrv 00021 { 00022 class DtPersistenceToolbarWidget; 00023 } 00024 00025 namespace makVrf 00026 { 00027 class DtPerformanceOptionsWidget; 00028 class DtPerformanceOptionsWidgetLogic; 00029 00031 class DT_DLL_VRFGUICOREQT DtPerformanceOptionsPage : public makVrv::DtPage 00032 { 00033 Q_OBJECT 00034 00035 public: 00037 DtPerformanceOptionsPage(makVrv::DtDe& de, QWidget* parent, Qt::WindowFlags f); 00038 00040 virtual ~DtPerformanceOptionsPage(); 00041 00043 virtual QIcon icon(); 00044 00046 virtual QString title(); 00047 00049 virtual const std::string& pageClassName() const; 00050 00052 static const std::string& thePageClassName(); 00053 00054 protected: 00056 virtual void activate(); 00057 00059 virtual void deactivate(); 00060 00061 void setupGui(); 00062 00063 protected: 00064 DtPerformanceOptionsWidgetLogic* myLogic; 00065 00066 public: 00067 DtPerformanceOptionsWidget* myPerformanceOptions; 00068 makVrv::DtPersistenceToolbarWidget* myTitle; 00069 }; 00070 00071 typedef makVrv::DtPageCreatorTemplate<DtPerformanceOptionsPage> 00072 DtPerformanceOptionsPageCreator; 00073 }