![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2008 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtVrfOverlaySelectionListInterface.h,v $ $Revision: 1.1 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00011 00013 00014 #pragma once 00015 00016 #include <vrfGuiCoreQt/vrfGuiCoreQt.h> 00017 #include <string> 00018 00019 #include <boost/signal.hpp> 00020 00021 namespace makVrf 00022 { 00024 class DT_DLL_VRFGUICOREQT DtVrfOverlaySelectionListInterface 00025 { 00026 public: 00027 00029 virtual ~DtVrfOverlaySelectionListInterface(); 00030 00032 virtual void addOverlay(const std::string& name) = 0; 00033 00035 virtual void removeOverlay(const std::string& name) = 0; 00036 00038 virtual void renameOverlay(const std::string& oldName, const std::string& newName) = 0; 00039 00041 virtual void selectOverlay(const std::string& name) = 0; 00042 00043 public: 00044 boost::signal<void (const std::string&)> signal_overlaySelected; 00045 }; 00046 }