6 #ifndef VISUALIZATION_MSGS_MESSAGE_INTERACTIVEMARKERCONTROL_H
7 #define VISUALIZATION_MSGS_MESSAGE_INTERACTIVEMARKERCONTROL_H
14 #include <ros/types.h>
15 #include <ros/serialization.h>
16 #include <ros/builtin_message_traits.h>
17 #include <ros/message_operations.h>
24 template <
class ContainerAllocator>
53 typedef std::basic_string<char, std::char_traits<char>,
typename ContainerAllocator::template rebind<char>::other >
_name_type;
68 typedef std::vector< ::visualization_msgs::Marker_<ContainerAllocator> ,
typename ContainerAllocator::template rebind< ::visualization_msgs::Marker_<ContainerAllocator> >::other >
_markers_type;
74 typedef std::basic_string<char, std::char_traits<char>,
typename ContainerAllocator::template rebind<char>::other >
_description_type;
80 #if defined(_WIN32) && defined(INHERIT)
83 #if defined(_WIN32) && defined(FIXED)
86 #if defined(_WIN32) && defined(VIEW_FACING)
89 #if defined(_WIN32) && defined(NONE)
92 #if defined(_WIN32) && defined(MENU)
95 #if defined(_WIN32) && defined(BUTTON)
98 #if defined(_WIN32) && defined(MOVE_AXIS)
101 #if defined(_WIN32) && defined(MOVE_PLANE)
104 #if defined(_WIN32) && defined(ROTATE_AXIS)
107 #if defined(_WIN32) && defined(MOVE_ROTATE)
110 #if defined(_WIN32) && defined(MOVE_3D)
113 #if defined(_WIN32) && defined(ROTATE_3D)
116 #if defined(_WIN32) && defined(MOVE_ROTATE_3D)
117 #undef MOVE_ROTATE_3D
137 typedef std::shared_ptr< ::visualization_msgs::InteractiveMarkerControl_<ContainerAllocator> >
Ptr;
138 typedef std::shared_ptr< ::visualization_msgs::InteractiveMarkerControl_<ContainerAllocator>
const>
ConstPtr;
177 template<
typename ContainerAllocator>
178 std::ostream&
operator<<(std::ostream& s, const ::visualization_msgs::InteractiveMarkerControl_<ContainerAllocator> & v)
185 template<
typename ContainerAllocator1,
typename ContainerAllocator2>
186 bool operator==(const ::visualization_msgs::InteractiveMarkerControl_<ContainerAllocator1> & lhs, const ::visualization_msgs::InteractiveMarkerControl_<ContainerAllocator2> & rhs)
188 return lhs.name == rhs.name &&
189 lhs.orientation == rhs.orientation &&
190 lhs.orientation_mode == rhs.orientation_mode &&
191 lhs.interaction_mode == rhs.interaction_mode &&
192 lhs.always_visible == rhs.always_visible &&
193 lhs.markers == rhs.markers &&
194 lhs.independent_marker_orientation == rhs.independent_marker_orientation &&
195 lhs.description == rhs.description;
198 template<
typename ContainerAllocator1,
typename ContainerAllocator2>
199 bool operator!=(const ::visualization_msgs::InteractiveMarkerControl_<ContainerAllocator1> & lhs, const ::visualization_msgs::InteractiveMarkerControl_<ContainerAllocator2> & rhs)
201 return !(lhs == rhs);
209 namespace message_traits
216 template <
class ContainerAllocator>
221 template <
class ContainerAllocator>
226 template <
class ContainerAllocator>
231 template <
class ContainerAllocator>
236 template <
class ContainerAllocator>
241 template <
class ContainerAllocator>
247 template<
class ContainerAllocator>
252 return "b3c81e785788195d1840b86c28da1aac";
255 static const char*
value(const ::visualization_msgs::InteractiveMarkerControl_<ContainerAllocator>&) {
return value(); }
256 static const uint64_t static_value1 = 0xb3c81e785788195dULL;
257 static const uint64_t static_value2 = 0x1840b86c28da1aacULL;
260 template<
class ContainerAllocator>
265 return "visualization_msgs/InteractiveMarkerControl";
268 static const char*
value(const ::visualization_msgs::InteractiveMarkerControl_<ContainerAllocator>&) {
return value(); }
271 template<
class ContainerAllocator>
276 return "# Represents a control that is to be displayed together with an interactive marker\n"
278 "# Identifying string for this control.\n"
279 "# You need to assign a unique value to this to receive feedback from the GUI\n"
280 "# on what actions the user performs on this control (e.g. a button click).\n"
284 "# Defines the local coordinate frame (relative to the pose of the parent\n"
285 "# interactive marker) in which is being rotated and translated.\n"
286 "# Default: Identity\n"
287 "geometry_msgs/Quaternion orientation\n"
290 "# Orientation mode: controls how orientation changes.\n"
291 "# INHERIT: Follow orientation of interactive marker\n"
292 "# FIXED: Keep orientation fixed at initial state\n"
293 "# VIEW_FACING: Align y-z plane with screen (x: forward, y:left, z:up).\n"
294 "uint8 INHERIT = 0 \n"
296 "uint8 VIEW_FACING = 2\n"
298 "uint8 orientation_mode\n"
300 "# Interaction mode for this control\n"
302 "# NONE: This control is only meant for visualization; no context menu.\n"
303 "# MENU: Like NONE, but right-click menu is active.\n"
304 "# BUTTON: Element can be left-clicked.\n"
305 "# MOVE_AXIS: Translate along local x-axis.\n"
306 "# MOVE_PLANE: Translate in local y-z plane.\n"
307 "# ROTATE_AXIS: Rotate around local x-axis.\n"
308 "# MOVE_ROTATE: Combines MOVE_PLANE and ROTATE_AXIS.\n"
312 "uint8 MOVE_AXIS = 3 \n"
313 "uint8 MOVE_PLANE = 4\n"
314 "uint8 ROTATE_AXIS = 5\n"
315 "uint8 MOVE_ROTATE = 6\n"
316 "# \"3D\" interaction modes work with the mouse+SHIFT+CTRL or with 3D cursors.\n"
317 "# MOVE_3D: Translate freely in 3D space.\n"
318 "# ROTATE_3D: Rotate freely in 3D space about the origin of parent frame.\n"
319 "# MOVE_ROTATE_3D: Full 6-DOF freedom of translation and rotation about the cursor origin.\n"
320 "uint8 MOVE_3D = 7\n"
321 "uint8 ROTATE_3D = 8\n"
322 "uint8 MOVE_ROTATE_3D = 9\n"
324 "uint8 interaction_mode\n"
327 "# If true, the contained markers will also be visible\n"
328 "# when the gui is not in interactive mode.\n"
329 "bool always_visible\n"
332 "# Markers to be displayed as custom visual representation.\n"
333 "# Leave this empty to use the default control handles.\n"
336 "# - The markers can be defined in an arbitrary coordinate frame,\n"
337 "# but will be transformed into the local frame of the interactive marker.\n"
338 "# - If the header of a marker is empty, its pose will be interpreted as \n"
339 "# relative to the pose of the parent interactive marker.\n"
343 "# In VIEW_FACING mode, set this to true if you don't want the markers\n"
344 "# to be aligned with the camera view point. The markers will show up\n"
345 "# as in INHERIT mode.\n"
346 "bool independent_marker_orientation\n"
349 "# Short description (< 40 characters) of what this control does,\n"
350 "# e.g. \"Move the robot\". \n"
351 "# Default: A generic description based on the interaction mode\n"
352 "string description\n"
354 "================================================================================\n"
355 "MSG: geometry_msgs/Quaternion\n"
356 "# This represents an orientation in free space in quaternion form.\n"
363 "================================================================================\n"
364 "MSG: visualization_msgs/Marker\n"
365 "# See http://www.ros.org/wiki/rviz/DisplayTypes/Marker and http://www.ros.org/wiki/rviz/Tutorials/Markers%3A%20Basic%20Shapes for more information on using this message with rviz\n"
371 "uint8 LINE_STRIP=4\n"
372 "uint8 LINE_LIST=5\n"
373 "uint8 CUBE_LIST=6\n"
374 "uint8 SPHERE_LIST=7\n"
376 "uint8 TEXT_VIEW_FACING=9\n"
377 "uint8 MESH_RESOURCE=10\n"
378 "uint8 TRIANGLE_LIST=11\n"
383 "uint8 DELETEALL=3\n"
385 "Header header # header for time/frame information\n"
386 "string ns # Namespace to place this object in... used in conjunction with id to create a unique name for the object\n"
387 "int32 id # object ID useful in conjunction with the namespace for manipulating and deleting the object later\n"
388 "int32 type # Type of object\n"
389 "int32 action # 0 add/modify an object, 1 (deprecated), 2 deletes an object, 3 deletes all objects\n"
390 "geometry_msgs/Pose pose # Pose of the object\n"
391 "geometry_msgs/Vector3 scale # Scale of the object 1,1,1 means default (usually 1 meter square)\n"
392 "std_msgs/ColorRGBA color # Color [0.0-1.0]\n"
393 "duration lifetime # How long the object should last before being automatically deleted. 0 means forever\n"
394 "bool frame_locked # If this marker should be frame-locked, i.e. retransformed into its frame every timestep\n"
396 "#Only used if the type specified has some use for them (eg. POINTS, LINE_STRIP, ...)\n"
397 "geometry_msgs/Point[] points\n"
398 "#Only used if the type specified has some use for them (eg. POINTS, LINE_STRIP, ...)\n"
399 "#number of colors must either be 0 or equal to the number of points\n"
400 "#NOTE: alpha is not yet used\n"
401 "std_msgs/ColorRGBA[] colors\n"
403 "# NOTE: only used for text markers\n"
406 "# NOTE: only used for MESH_RESOURCE markers\n"
407 "string mesh_resource\n"
408 "bool mesh_use_embedded_materials\n"
410 "================================================================================\n"
411 "MSG: std_msgs/Header\n"
412 "# Standard metadata for higher-level stamped data types.\n"
413 "# This is generally used to communicate timestamped data \n"
414 "# in a particular coordinate frame.\n"
416 "# sequence ID: consecutively increasing ID \n"
418 "#Two-integer timestamp that is expressed as:\n"
419 "# * stamp.sec: seconds (stamp_secs) since epoch (in Python the variable is called 'secs')\n"
420 "# * stamp.nsec: nanoseconds since stamp_secs (in Python the variable is called 'nsecs')\n"
421 "# time-handling sugar is provided by the client library\n"
423 "#Frame this data is associated with\n"
426 "================================================================================\n"
427 "MSG: geometry_msgs/Pose\n"
428 "# A representation of pose in free space, composed of position and orientation. \n"
430 "Quaternion orientation\n"
432 "================================================================================\n"
433 "MSG: geometry_msgs/Point\n"
434 "# This contains the position of a point in free space\n"
439 "================================================================================\n"
440 "MSG: geometry_msgs/Vector3\n"
441 "# This represents a vector in free space. \n"
442 "# It is only meant to represent a direction. Therefore, it does not\n"
443 "# make sense to apply a translation to it (e.g., when applying a \n"
444 "# generic rigid transformation to a Vector3, tf2 will only apply the\n"
445 "# rotation). If you want your data to be translatable too, use the\n"
446 "# geometry_msgs/Point message instead.\n"
451 "================================================================================\n"
452 "MSG: std_msgs/ColorRGBA\n"
460 static const char*
value(const ::visualization_msgs::InteractiveMarkerControl_<ContainerAllocator>&) {
return value(); }
468 namespace serialization
473 template<
typename Stream,
typename T>
inline static void allInOne(
Stream& stream, T m)
476 stream.next(m.orientation);
477 stream.next(m.orientation_mode);
478 stream.next(m.interaction_mode);
479 stream.next(m.always_visible);
480 stream.next(m.markers);
481 stream.next(m.independent_marker_orientation);
482 stream.next(m.description);
493 namespace message_operations
496 template<
class ContainerAllocator>
499 template<
typename Stream>
static void stream(Stream& s,
const std::string&
indent, const ::visualization_msgs::InteractiveMarkerControl_<ContainerAllocator>& v)
503 s <<
indent <<
"orientation: ";
506 s <<
indent <<
"orientation_mode: ";
508 s <<
indent <<
"interaction_mode: ";
510 s <<
indent <<
"always_visible: ";
512 s <<
indent <<
"markers[]" << std::endl;
513 for (
size_t i = 0; i < v.markers.size(); ++i)
515 s <<
indent <<
" markers[" << i <<
"]: ";
520 s <<
indent <<
"independent_marker_orientation: ";
522 s <<
indent <<
"description: ";
530 #endif // VISUALIZATION_MSGS_MESSAGE_INTERACTIVEMARKERCONTROL_H