![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /***************************************************************************** 00002 * Copyright (c) 2012 MAK Technologies, Inc. 00003 * All rights reserved. 00004 *****************************************************************************/ 00005 00009 00010 #pragma once 00011 00012 #include <vrvOsgQt/DtLoaderSettingsLogic.h> 00013 00014 namespace makVrv 00015 { 00016 class DtDe; 00017 class DtPersistenceControlsInterface; 00018 } 00019 00020 class ExtraDialogInterface; 00021 00022 00035 class DerivedDialogLogic : public makVrv::DtLoaderSettingsLogic 00036 { 00037 public: 00038 00043 DerivedDialogLogic(makVrv::DtDe& de, 00044 makVrv::DtPersistenceControlsInterface& persistenceControls, 00045 makVrv::DtLoaderSettingsInterface& settingsIFace, 00046 ExtraDialogInterface& extraIFace); 00047 00050 virtual ~DerivedDialogLogic(); 00051 00055 void slot_enableFlagSet(bool value); 00056 00057 protected: 00058 // A handle to the interface of the widget. 00059 ExtraDialogInterface& myInterface; 00060 };