radial_property_control.hpp
Go to the documentation of this file.
1 #ifndef RADIAL_MENU_RVIZ_RADIAL_PROPERTY_CONTROL_HPP
2 #define RADIAL_MENU_RVIZ_RADIAL_PROPERTY_CONTROL_HPP
3 
4 #include <memory>
5 
6 #include <radial_menu_msgs/State.h>
15 
16 #include <QFontDatabase>
17 #include <QStringList>
18 
19 namespace radial_menu_rviz {
20 
21 class RadialPropertyControl : public QObject {
22  Q_OBJECT
23 
24 public:
26  // description control
28  /* name = */ "Menu description", /* default val = */ "",
29  /* desc = */ "ROS parameter describing the menu tree model", /* parent = */ parent,
30  /* slot = */ SLOT(updateDescriptionProperty()), /* receiver = */ this));
31 
32  // subscription control
34  "State topic", "",
35  /* msg type = */ ros::message_traits::datatype< radial_menu_msgs::State >(),
36  "Subscribed topic of radial_menu_msgs::State to visualize", parent,
37  SLOT(updateSubscriptionProperty()), this));
38 
39  // drawing control (font)
40  font_ctl_.reset(new rviz::EnumProperty("Font", "DejaVu Sans Mono", "", parent,
41  SLOT(updateDrawingProperty()), this));
42  const QStringList font_families_(QFontDatabase().families());
43  for (int i = 0; i < font_families_.size(); ++i) {
44  font_ctl_->addOption(font_families_[i], i);
45  }
46  font_bold_ctl_.reset(
47  new rviz::BoolProperty("Font bold", true, "", parent, SLOT(updateDrawingProperty()), this));
48  font_size_ctl_.reset(new rviz::IntProperty("Font size", 12, "In points", parent,
49  SLOT(updateDrawingProperty()), this));
50 
51  // drawing control (title area)
52  draw_title_area_ctl_.reset(new rviz::BoolProperty("Title area", true, "", parent,
53  SLOT(updateDrawingProperty()), this));
55  "Title area radius", 128, "In pixels", parent, SLOT(updateDrawingProperty()), this));
56  title_area_radius_ctl_->setMin(1);
57  title_bg_rgb_ctl_.reset(new rviz::ColorProperty("Title bg", QColor(0, 0, 0),
58  "RGB of title background", parent,
59  SLOT(updateDrawingProperty()), this));
60  title_rgb_ctl_.reset(new rviz::ColorProperty("Title", QColor(255, 255, 255),
61  "RGB of title text", parent,
62  SLOT(updateDrawingProperty()), this));
63 
64  // drawing control (line)
65  line_width_ctl_.reset(new rviz::IntProperty("Line width", 2,
66  "Width of line between areas in pixels", parent,
67  SLOT(updateDrawingProperty()), this));
68  line_width_ctl_->setMin(0);
69 
70  // drawing control (item area)
71  item_area_width_ctl_.reset(new rviz::IntProperty("Item area width", 128, "In pixels", parent,
72  SLOT(updateDrawingProperty()), this));
73  item_area_width_ctl_->setMin(1);
74 
76  new rviz::ColorProperty("Item bg (default)", QColor(255, 255, 255),
77  "RGB of item background when not pointed or selected", parent,
78  SLOT(updateDrawingProperty()), this));
80  "Item (default)", QColor(0, 0, 0), "RGB of item text when not pointed or selected", parent,
81  SLOT(updateDrawingProperty()), this));
83  new rviz::ColorProperty("Item bg (pointed)", QColor(128, 128, 128),
84  "RGB to be blended to item background when pointed", parent,
85  SLOT(updateDrawingProperty()), this));
87  "Item (pointed)", QColor(0, 0, 0), "RGB to be blended to item text when pointed", parent,
88  SLOT(updateDrawingProperty()), this));
90  "Item bg (selected)", QColor(0, 0, 0), "RGB of item background when selected", parent,
91  SLOT(updateDrawingProperty()), this));
92  item_rgb_selected_ctl_.reset(new rviz::ColorProperty("Item (selected)", QColor(255, 255, 255),
93  "RGB of item text when selected", parent,
94  SLOT(updateDrawingProperty()), this));
95 
96  // drawing control (alpha)
98  "Bg alpha", 255, "Alpha of all background colors from 0 (transparent) to 255 (opaque)",
99  parent, SLOT(updateDrawingProperty()), this));
100  bg_alpha_ctl_->setMin(0);
101  bg_alpha_ctl_->setMax(255);
103  "Fg alpha", 255, "Alpha of all foreground colors from 0 (transparent) to 255 (opaque)",
104  parent, SLOT(updateDrawingProperty()), this));
105  fg_alpha_ctl_->setMin(0);
106  fg_alpha_ctl_->setMax(255);
107 
108  // position control
109  center_x_ctl_.reset(new rviz::IntProperty("Center x", 256,
110  "X position of menu's center in pixels", parent,
111  SLOT(updatePositionProperty()), this));
112  center_x_ctl_->setMin(0);
113  center_y_ctl_.reset(new rviz::IntProperty("Center y", 256,
114  "Y position of menu's center in pixels", parent,
115  SLOT(updatePositionProperty()), this));
116  center_y_ctl_->setMin(0);
117 
118  // manually call slots to populate the initial properties
122  }
123 
125 
127 
129 
131 
132  const PositionProperty &positionProperty() const { return pos_prop_; }
133 
134 Q_SIGNALS:
138  void positionPropertyChanged(const PositionProperty &prop);
139 
140 protected Q_SLOTS:
142  desc_prop_.param_name = desc_param_ctl_->getString();
143 
145  }
146 
148  sub_prop_.topic = state_topic_ctl_->getTopic();
149 
151  }
152 
154  drawing_prop_.font.setFamily(font_ctl_->getString());
155  drawing_prop_.font.setBold(font_bold_ctl_->getBool());
156  drawing_prop_.font.setPointSize(font_size_ctl_->getInt());
157 
160  drawing_prop_.title_bg_rgb = title_bg_rgb_ctl_->getColor().rgb();
161  drawing_prop_.title_rgb = title_rgb_ctl_->getColor().rgb();
162 
164 
172 
175 
177  }
178 
180  pos_prop_.origin.setX(center_x_ctl_->getInt());
181  pos_prop_.origin.setY(center_y_ctl_->getInt());
182 
184  }
185 
186 protected:
187  // description property & control
188  std::unique_ptr< rviz::StringProperty > desc_param_ctl_;
190 
191  // subscription property & control
192  std::unique_ptr< rviz::RosTopicProperty > state_topic_ctl_;
194 
195  // drawing property & control
196  // - font
197  std::unique_ptr< rviz::EnumProperty > font_ctl_;
198  std::unique_ptr< rviz::BoolProperty > font_bold_ctl_;
199  std::unique_ptr< rviz::IntProperty > font_size_ctl_;
200  // - title area
201  std::unique_ptr< rviz::BoolProperty > draw_title_area_ctl_;
202  std::unique_ptr< rviz::IntProperty > title_area_radius_ctl_;
203  std::unique_ptr< rviz::ColorProperty > title_bg_rgb_ctl_, title_rgb_ctl_;
204  // - line
205  std::unique_ptr< rviz::IntProperty > line_width_ctl_;
206  // - item area
207  std::unique_ptr< rviz::IntProperty > item_area_width_ctl_;
208  std::unique_ptr< rviz::ColorProperty > item_bg_rgb_default_ctl_, item_rgb_default_ctl_;
209  std::unique_ptr< rviz::ColorProperty > item_bg_rgb_pointed_ctl_, item_rgb_pointed_ctl_;
210  std::unique_ptr< rviz::ColorProperty > item_bg_rgb_selected_ctl_, item_rgb_selected_ctl_;
211  // - others
212  std::unique_ptr< rviz::IntProperty > bg_alpha_ctl_, fg_alpha_ctl_;
214 
215  // position property & control
216  std::unique_ptr< rviz::IntProperty > center_x_ctl_, center_y_ctl_;
218 };
219 } // namespace radial_menu_rviz
220 
221 #endif
std::unique_ptr< rviz::IntProperty > bg_alpha_ctl_
std::unique_ptr< rviz::ColorProperty > item_bg_rgb_default_ctl_
std::unique_ptr< rviz::ColorProperty > item_bg_rgb_pointed_ctl_
std::unique_ptr< rviz::ColorProperty > item_rgb_pointed_ctl_
const RadialDrawingProperty & drawingProperty() const
std::unique_ptr< rviz::RosTopicProperty > state_topic_ctl_
std::unique_ptr< rviz::EnumProperty > font_ctl_
std::unique_ptr< rviz::BoolProperty > font_bold_ctl_
std::unique_ptr< rviz::IntProperty > font_size_ctl_
std::unique_ptr< rviz::IntProperty > center_y_ctl_
void descriptionPropertyChanged(const DescriptionProperty &prop)
const PositionProperty & positionProperty() const
RadialPropertyControl(rviz::Property *const parent)
std::unique_ptr< rviz::ColorProperty > title_rgb_ctl_
std::unique_ptr< rviz::BoolProperty > draw_title_area_ctl_
std::unique_ptr< rviz::ColorProperty > item_rgb_default_ctl_
std::unique_ptr< rviz::ColorProperty > title_bg_rgb_ctl_
void subscriptionPropertyChanged(const SubscriptionProperty &prop)
void drawingPropertyChanged(const RadialDrawingProperty &prop)
std::unique_ptr< rviz::StringProperty > desc_param_ctl_
std::unique_ptr< rviz::IntProperty > item_area_width_ctl_
std::unique_ptr< rviz::IntProperty > title_area_radius_ctl_
const SubscriptionProperty & subscriptionProperty() const
std::unique_ptr< rviz::ColorProperty > item_bg_rgb_selected_ctl_
const DescriptionProperty & descriptionProperty() const
std::unique_ptr< rviz::IntProperty > line_width_ctl_
std::unique_ptr< rviz::IntProperty > center_x_ctl_
std::unique_ptr< rviz::IntProperty > fg_alpha_ctl_
std::unique_ptr< rviz::ColorProperty > item_rgb_selected_ctl_
void positionPropertyChanged(const PositionProperty &prop)


radial_menu_rviz
Author(s):
autogenerated on Mon Feb 28 2022 23:22:04