ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

You have a typo in both plugin.xml and package.xml. It's rqt_gui not qt_gui Use rqt_gui_py::Plugin as the base class in your plugin.xml file and use

<export>
  <rqt_gui plugin="${prefix}/plugin.xml"/>
</export>

in the package.xml

You have a typo in both plugin.xml and package.xml. It's rqt_gui not qt_gui qt_gui

Use rqt_gui_py::Plugin as the base class in your plugin.xml file and use

<export>
  <rqt_gui plugin="${prefix}/plugin.xml"/>
</export>

in the package.xml

You have a typo in both plugin.xml and package.xmlmanifest.xml. It's rqt_gui not qt_gui

Use rqt_gui_py::Plugin as the base class in your plugin.xml file and use

<export>
  <rqt_gui plugin="${prefix}/plugin.xml"/>
</export>

in the package.xmlmanifest.xml

EDIT: Just realized you use rosbuild. But it's still rqt_gui Have a look at this answer: answers.ros.org/question/65679/install-rqt-plugin-with-rosbuild/?answer=65698#post-id-65698 and the rqt_console code for fuerte: github.com/ros-visualization/rqt/tree/fuerte-devel/rqt_console

(Sorry for the unformatted links - my karma is insufficient...)

You have a typo in both plugin.xml and manifest.xmlpackage.xml. It's rqt_gui not qt_gui

Use rqt_gui_py::Plugin as the base class in your plugin.xml file and use

<export>
  <rqt_gui plugin="${prefix}/plugin.xml"/>
</export>

in the manifest.xml

EDIT: Just realized you use rosbuild. But it's still rqt_gui Have a look at this answer: answers.ros.org/question/65679/install-rqt-plugin-with-rosbuild/?answer=65698#post-id-65698 and the rqt_console code for fuerte: github.com/ros-visualization/rqt/tree/fuerte-devel/rqt_console

(Sorry for the unformatted links - my karma is insufficient...)