![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2008 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtPropCreatePaletteInterface.h,v $ $Revision: 1.1.2.1 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00011 00013 00014 #pragma once 00015 00016 #include <vrfGuiCoreQt/vrfGuiCoreQt.h> 00017 #include <vrfGuiCoreQt/genericPaletteInterface.h> 00018 00019 #include <boost/signal.hpp> 00020 00021 namespace makVrf 00022 { 00026 class DT_DLL_VRFGUICOREQT DtPropCreatePaletteInterface : public DtGenericPaletteInterface 00027 { 00028 00029 public: 00030 00032 virtual ~DtPropCreatePaletteInterface(){}; 00033 00035 virtual void addItem( const std::string& name, const std::string& type, const std::string& modelDef, 00036 const std::string& group) = 0; 00037 00038 public: 00039 00040 boost::signal<void (const std::string&, const std::string&)> signal_itemSelected; 00041 boost::signal<void (DtPropCreatePaletteInterface*)> signal_Updated; 00042 }; 00043 }