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 #include "tf_frame_property.h"
00031 #include "properties/forwards.h"
00032 #include "frame_manager.h"
00033
00034 #include <ros/console.h>
00035
00036 #include <tf/transform_listener.h>
00037
00038 namespace rviz
00039 {
00040
00041 IMPLEMENT_DYNAMIC_CLASS(TFFramePGEditor, wxPGComboBoxEditor);
00042 IMPLEMENT_DYNAMIC_CLASS(TFFramePGProperty, wxEditEnumProperty);
00043
00044 TFFramePGEditor::TFFramePGEditor()
00045 {
00046
00047 }
00048
00049 wxPGWindowList TFFramePGEditor::CreateControls(wxPropertyGrid *propgrid, wxPGProperty *property, const wxPoint &pos, const wxSize &size) const
00050 {
00051 property->GetChoices().Clear();
00052 property->GetChoices().Add(wxT(FIXED_FRAME_STRING));
00053
00054 typedef std::vector<std::string> V_string;
00055 V_string frames;
00056 FrameManager::instance()->getTFClient()->getFrameStrings( frames );
00057 std::sort(frames.begin(), frames.end());
00058
00059 V_string::iterator it = frames.begin();
00060 V_string::iterator end = frames.end();
00061 for (; it != end; ++it)
00062 {
00063 const std::string& frame = *it;
00064 if (frame.empty())
00065 {
00066 continue;
00067 }
00068
00069 property->GetChoices().Add(wxString::FromAscii(frame.c_str()));
00070 }
00071
00072 return wxPGComboBoxEditor::CreateControls(propgrid, property, pos, size);
00073 }
00074
00075 TFFramePGProperty::TFFramePGProperty()
00076 {
00077
00078 }
00079
00080 TFFramePGProperty::TFFramePGProperty(const wxString& label, const wxString& name, const wxString& value )
00081 : wxEditEnumProperty( label, name )
00082 {
00083 SetValue(value);
00084 }
00085
00086 }
00087