pose_display.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012, Willow Garage, Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Willow Garage, Inc. nor the names of its
14  * contributors may be used to endorse or promote products derived from
15  * this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27  * POSSIBILITY OF SUCH DAMAGE.
28  */
29 
30 
31 #ifndef RVIZ_POSE_DISPLAY_H_
32 #define RVIZ_POSE_DISPLAY_H_
33 
34 #include <boost/shared_ptr.hpp>
35 
36 #include <geometry_msgs/PoseStamped.h>
37 
40 
41 namespace rviz
42 {
43 class Arrow;
44 class Axes;
45 class ColorProperty;
46 class EnumProperty;
47 class FloatProperty;
48 class Shape;
49 
52 
54 class PoseDisplay : public MessageFilterDisplay<geometry_msgs::PoseStamped>
55 {
56  Q_OBJECT
57 public:
58  enum Shape
59  {
62  };
63 
64  PoseDisplay();
65  ~PoseDisplay() override;
66 
67  void onInitialize() override;
68  void reset() override;
69 
70 protected:
72  void onEnable() override;
73 
74 private Q_SLOTS:
75  void updateShapeVisibility();
76  void updateColorAndAlpha();
77  void updateShapeChoice();
78  void updateAxisGeometry();
79  void updateArrowGeometry();
80 
81 private:
82  void clear();
83 
84  void processMessage(const geometry_msgs::PoseStamped::ConstPtr& message) override;
85 
90 
92 
95 
100 
103 
105 };
106 
107 } // namespace rviz
108 
109 #endif /* RVIZ_POSE_DISPLAY_H_ */
rviz::PoseDisplay::shaft_length_property_
FloatProperty * shaft_length_property_
Definition: pose_display.h:99
rviz::MessageFilterDisplay
Display subclass using a tf2_ros::MessageFilter, templated on the ROS message type.
Definition: message_filter_display.h:90
rviz::PoseDisplay::axes_
rviz::Axes * axes_
Definition: pose_display.h:87
rviz::PoseDisplay::axes_length_property_
FloatProperty * axes_length_property_
Definition: pose_display.h:101
message_filter_display.h
boost::shared_ptr< PoseDisplaySelectionHandler >
rviz::Arrow
An arrow consisting of a cylinder and a cone.
Definition: arrow.h:57
forwards.h
rviz::PoseDisplay::shaft_radius_property_
FloatProperty * shaft_radius_property_
Definition: pose_display.h:98
rviz::PoseDisplay::PoseDisplay
PoseDisplay()
Definition: pose_display.cpp:117
rviz::PoseDisplay::updateShapeVisibility
void updateShapeVisibility()
Definition: pose_display.cpp:234
rviz::PoseDisplay::coll_handler_
PoseDisplaySelectionHandlerPtr coll_handler_
Definition: pose_display.h:89
rviz::ColorProperty
Definition: color_property.h:40
rviz::EnumProperty
Enum property.
Definition: enum_property.h:46
rviz::FloatProperty
Property specialized to enforce floating point max/min.
Definition: float_property.h:37
rviz::PoseDisplay::shape_property_
EnumProperty * shape_property_
Definition: pose_display.h:91
rviz::PoseDisplaySelectionHandlerPtr
boost::shared_ptr< PoseDisplaySelectionHandler > PoseDisplaySelectionHandlerPtr
Definition: pose_display.h:50
rviz::PoseDisplay::arrow_
rviz::Arrow * arrow_
Definition: pose_display.h:86
rviz::PoseDisplay::updateArrowGeometry
void updateArrowGeometry()
Definition: pose_display.cpp:202
rviz
Definition: add_display_dialog.cpp:54
rviz::PoseDisplay::updateShapeChoice
void updateShapeChoice()
Definition: pose_display.cpp:215
rviz::PoseDisplay::onInitialize
void onInitialize() override
Override this function to do subclass-specific initialization.
Definition: pose_display.cpp:155
rviz::PoseDisplay::reset
void reset() override
Called to tell the display to clear its state.
Definition: pose_display.cpp:288
rviz::PoseDisplay::updateAxisGeometry
void updateAxisGeometry()
Definition: pose_display.cpp:209
rviz::PoseDisplay::processMessage
void processMessage(const geometry_msgs::PoseStamped::ConstPtr &message) override
Definition: pose_display.cpp:249
rviz::PoseDisplay::alpha_property_
FloatProperty * alpha_property_
Definition: pose_display.h:94
rviz::PoseDisplay
Accumulates and displays the pose from a geometry_msgs::PoseStamped message.
Definition: pose_display.h:54
rviz::Axes
An object that displays a set of X/Y/Z axes, with X=Red, Y=Green, Z=Blue.
Definition: axes.h:57
rviz::PoseDisplay::Axes
@ Axes
Definition: pose_display.h:61
rviz::PoseDisplay::Shape
Shape
Definition: pose_display.h:58
rviz::PoseDisplay::pose_valid_
bool pose_valid_
Definition: pose_display.h:88
rviz::PoseDisplay::head_radius_property_
FloatProperty * head_radius_property_
Definition: pose_display.h:96
rviz::PoseDisplay::head_length_property_
FloatProperty * head_length_property_
Definition: pose_display.h:97
rviz::PoseDisplay::color_property_
ColorProperty * color_property_
Definition: pose_display.h:93
rviz::PoseDisplay::updateColorAndAlpha
void updateColorAndAlpha()
Definition: pose_display.cpp:192
rviz::PoseDisplay::~PoseDisplay
~PoseDisplay() override
Definition: pose_display.cpp:177
rviz::PoseDisplay::clear
void clear()
rviz::PoseDisplay::Arrow
@ Arrow
Definition: pose_display.h:60
rviz::PoseDisplay::onEnable
void onEnable() override
Overridden from MessageFilterDisplay to get arrow/axes visibility correct.
Definition: pose_display.cpp:186
rviz::PoseDisplay::axes_radius_property_
FloatProperty * axes_radius_property_
Definition: pose_display.h:102
rviz::PoseDisplaySelectionHandler
Definition: pose_display.cpp:52


rviz
Author(s): Dave Hershberger, David Gossow, Josh Faust, William Woodall
autogenerated on Sat Jun 1 2024 02:31:53