Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 #include "tool_properties_panel.h"
00032 #include "visualization_manager.h"
00033 #include "properties/property.h"
00034 #include "properties/property_manager.h"
00035 #include "tools/tool.h"
00036 #include "config.h"
00037
00038 #include <boost/bind.hpp>
00039
00040 static const std::string PROPERTY_GRID_CONFIG("Property Grid State");
00041
00042 namespace rviz
00043 {
00044
00045 ToolPropertiesPanel::ToolPropertiesPanel( QWidget* parent )
00046 : PropertyTreeWidget( parent )
00047 , manager_( NULL )
00048 {
00049 }
00050
00051 void ToolPropertiesPanel::initialize( VisualizationManager* manager )
00052 {
00053 manager_ = manager;
00054
00055 manager_->getToolPropertyManager()->setPropertyTreeWidget( this );
00056
00057 connect( manager_, SIGNAL( toolAdded( Tool* )), this, SLOT( onToolAdded( Tool* )));
00058 }
00059
00060 void ToolPropertiesPanel::onToolAdded( Tool* tool )
00061 {
00062 if( tool->hasProperties() )
00063 {
00064 std::string name = tool->getName();
00065 CategoryPropertyWPtr cat = manager_->getToolPropertyManager()->createCategory( name, "", CategoryPropertyWPtr(), tool );
00066 tool->enumerateProperties( manager_->getToolPropertyManager(), cat );
00067 }
00068 }
00069
00070 void ToolPropertiesPanel::onDisplaysConfigLoaded(const boost::shared_ptr<Config>& config)
00071 {
00077 }
00078
00079 void ToolPropertiesPanel::onDisplaysConfigSaving(const boost::shared_ptr<Config>& config)
00080 {
00082 }
00083
00084 }