![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2008 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: vrfOverlaySelectionListLogic.h,v $ $Revision: 1.2 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00011 00013 00014 #pragma once 00015 00016 #include <vrfGuiCoreQt/vrfGuiCoreQt.h> 00017 #include <string> 00018 00019 namespace makVrv 00020 { 00021 class DtDe; 00022 } 00023 00024 namespace makVrf 00025 { 00026 class DtVrfOverlaySelectionListInterface; 00027 00028 class DT_DLL_VRFGUICOREQT DtVrfOverlaySelectionListLogic 00029 { 00030 00031 public: 00032 00034 static DtVrfOverlaySelectionListLogic* create(makVrv::DtDe& de, DtVrfOverlaySelectionListInterface* iFace ); 00035 00037 virtual ~DtVrfOverlaySelectionListLogic(); 00038 00039 protected: 00040 00042 DtVrfOverlaySelectionListLogic(makVrv::DtDe& de, DtVrfOverlaySelectionListInterface* iFace ); 00043 00045 void slot_overlaySelected(const std::string& name); 00046 00048 void slot_overlayAdded(const std::string& name); 00049 00051 void slot_overlayRemoved(const std::string& name); 00052 00054 void slot_overlayRenamed(const std::string& oldname, const std::string& newName); 00055 00057 void slot_currentOverlayChanged(const std::string& name); 00058 00059 protected: 00060 00061 makVrv::DtDe& myDe; 00062 DtVrfOverlaySelectionListInterface* myInterface; 00063 }; 00064 }