horizontal_property_control.hpp
Go to the documentation of this file.
1 #ifndef RADIAL_MENU_RVIZ_HORIZONTAL_PROPERTY_CONTROL_HPP
2 #define RADIAL_MENU_RVIZ_HORIZONTAL_PROPERTY_CONTROL_HPP
3 
4 #include <radial_menu_msgs/State.h>
13 
14 #include <QFontDatabase>
15 #include <QStringList>
16 
17 namespace radial_menu_rviz {
18 
19 class HorizontalPropertyControl : public QObject {
20  Q_OBJECT
21 
22 public:
24  // description control
26  /* name = */ "Menu description", /* default val = */ "",
27  /* desc = */ "ROS parameter describing the menu tree model", /* parent = */ parent,
28  /* slot = */ SLOT(updateDescriptionProperty()), /* receiver = */ this));
29 
30  // subscription control
32  "State topic", "",
33  /* msg type = */ ros::message_traits::datatype< radial_menu_msgs::State >(),
34  "Subscribed topic of radial_menu_msgs::State to visualize", parent,
35  SLOT(updateSubscriptionProperty()), this));
36 
37  // drawing control (font)
38  font_ctl_.reset(new rviz::EnumProperty("Font", "DejaVu Sans Mono", "", parent,
39  SLOT(updateDrawingProperty()), this));
40  const QStringList font_families_(QFontDatabase().families());
41  for (int i = 0; i < font_families_.size(); ++i) {
42  font_ctl_->addOption(font_families_[i], i);
43  }
44  font_bold_ctl_.reset(
45  new rviz::BoolProperty("Font bold", true, "", parent, SLOT(updateDrawingProperty()), this));
46  font_size_ctl_.reset(new rviz::IntProperty("Font size", 12, "In points", parent,
47  SLOT(updateDrawingProperty()), this));
48 
49  // drawing control (title)
50  title_bg_rgb_ctl_.reset(new rviz::ColorProperty("Title bg", QColor(0, 0, 0),
51  "RGB of title background", parent,
52  SLOT(updateDrawingProperty()), this));
53  title_rgb_ctl_.reset(new rviz::ColorProperty("Title", QColor(255, 255, 255),
54  "RGB of title text", parent,
55  SLOT(updateDrawingProperty()), this));
56 
57  // drawing control (line)
58  line_width_ctl_.reset(new rviz::IntProperty("Line width", 2,
59  "Width of line between areas in pixels", parent,
60  SLOT(updateDrawingProperty()), this));
61  line_width_ctl_->setMin(0);
62 
63  // drawing control (item area)
65  "Item bg (pointed)", QColor(128, 128, 128), "RGB of item background when pointed", parent,
66  SLOT(updateDrawingProperty()), this));
67  item_rgb_pointed_ctl_.reset(new rviz::ColorProperty("Item (pointed)", QColor(0, 0, 0),
68  "RGB of item text when pointed", parent,
69  SLOT(updateDrawingProperty()), this));
71  "Item bg (selected)", QColor(0, 0, 0), "RGB of item background when selected", parent,
72  SLOT(updateDrawingProperty()), this));
73  item_rgb_selected_ctl_.reset(new rviz::ColorProperty("Item (selected)", QColor(255, 255, 255),
74  "RGB of item text when selected", parent,
75  SLOT(updateDrawingProperty()), this));
76 
77  // drawing control (common for title and items)
79  "Bg alpha", 255, "Alpha of all background colors from 0 (transparent) to 255 (opaque)",
80  parent, SLOT(updateDrawingProperty()), this));
81  bg_alpha_ctl_->setMin(0);
82  bg_alpha_ctl_->setMax(255);
84  "Fg alpha", 255, "Alpha of all foreground colors from 0 (transparent) to 255 (opaque)",
85  parent, SLOT(updateDrawingProperty()), this));
86  fg_alpha_ctl_->setMin(0);
87  fg_alpha_ctl_->setMax(255);
88  bg_padding_ctl_.reset(new rviz::IntProperty("Bg padding", 16,
89  "Padding of all background area in pixels", parent,
90  SLOT(updateDrawingProperty()), this));
91  bg_padding_ctl_->setMin(0);
92  fg_height_ctl_.reset(new rviz::IntProperty("Fg height", 32,
93  "Height of all foreground area in pixels", parent,
94  SLOT(updateDrawingProperty()), this));
95  fg_height_ctl_->setMin(0);
96 
97  // position control
98  left_ctl_.reset(new rviz::IntProperty("Left", 128, "Position of menu's left edge in pixels",
99  parent, SLOT(updatePositionProperty()), this));
100  left_ctl_->setMin(0);
101  top_ctl_.reset(new rviz::IntProperty("Top", 128, "Position of menu's top edge in pixels",
102  parent, SLOT(updatePositionProperty()), this));
103  top_ctl_->setMin(0);
104 
105  // manually call slots to populate the initial properties
109  }
110 
112 
114 
116 
118 
119  const PositionProperty &positionProperty() const { return pos_prop_; }
120 
121 Q_SIGNALS:
125  void positionPropertyChanged(const PositionProperty &prop);
126 
127 protected Q_SLOTS:
129  desc_prop_.param_name = desc_param_ctl_->getString();
130 
132  }
133 
135  sub_prop_.topic = state_topic_ctl_->getTopic();
136 
138  }
139 
141  drawing_prop_.font.setFamily(font_ctl_->getString());
142  drawing_prop_.font.setBold(font_bold_ctl_->getBool());
143  drawing_prop_.font.setPointSize(font_size_ctl_->getInt());
144 
145  drawing_prop_.title_bg_rgb = title_bg_rgb_ctl_->getColor().rgb();
146  drawing_prop_.title_rgb = title_rgb_ctl_->getColor().rgb();
147 
149 
154 
159 
161  }
162 
164  pos_prop_.origin.setX(left_ctl_->getInt());
165  pos_prop_.origin.setY(top_ctl_->getInt());
166 
168  }
169 
170 protected:
171  // description property & control
172  std::unique_ptr< rviz::StringProperty > desc_param_ctl_;
174 
175  // subscription property & control
176  std::unique_ptr< rviz::RosTopicProperty > state_topic_ctl_;
178 
179  // drawing property & control
180  std::unique_ptr< rviz::EnumProperty > font_ctl_;
181  std::unique_ptr< rviz::BoolProperty > font_bold_ctl_;
182  std::unique_ptr< rviz::IntProperty > font_size_ctl_;
183  std::unique_ptr< rviz::ColorProperty > title_bg_rgb_ctl_, title_rgb_ctl_;
184  std::unique_ptr< rviz::IntProperty > line_width_ctl_;
185  std::unique_ptr< rviz::ColorProperty > item_bg_rgb_pointed_ctl_, item_rgb_pointed_ctl_;
186  std::unique_ptr< rviz::ColorProperty > item_bg_rgb_selected_ctl_, item_rgb_selected_ctl_;
187  std::unique_ptr< rviz::IntProperty > bg_alpha_ctl_, fg_alpha_ctl_;
188  std::unique_ptr< rviz::IntProperty > bg_padding_ctl_, fg_height_ctl_;
190 
191  // position property & control
192  std::unique_ptr< rviz::IntProperty > left_ctl_, top_ctl_;
194 };
195 } // namespace radial_menu_rviz
196 
197 #endif
std::unique_ptr< rviz::ColorProperty > title_rgb_ctl_
void descriptionPropertyChanged(const DescriptionProperty &prop)
void drawingPropertyChanged(const HorizontalDrawingProperty &prop)
std::unique_ptr< rviz::IntProperty > bg_padding_ctl_
std::unique_ptr< rviz::RosTopicProperty > state_topic_ctl_
std::unique_ptr< rviz::IntProperty > fg_height_ctl_
std::unique_ptr< rviz::ColorProperty > item_bg_rgb_pointed_ctl_
std::unique_ptr< rviz::IntProperty > font_size_ctl_
std::unique_ptr< rviz::ColorProperty > item_rgb_pointed_ctl_
void subscriptionPropertyChanged(const SubscriptionProperty &prop)
std::unique_ptr< rviz::IntProperty > line_width_ctl_
const SubscriptionProperty & subscriptionProperty() const
const DescriptionProperty & descriptionProperty() const
std::unique_ptr< rviz::BoolProperty > font_bold_ctl_
std::unique_ptr< rviz::ColorProperty > item_bg_rgb_selected_ctl_
std::unique_ptr< rviz::IntProperty > bg_alpha_ctl_
std::unique_ptr< rviz::StringProperty > desc_param_ctl_
const HorizontalDrawingProperty & drawingProperty() const
std::unique_ptr< rviz::ColorProperty > title_bg_rgb_ctl_
std::unique_ptr< rviz::IntProperty > fg_alpha_ctl_
void positionPropertyChanged(const PositionProperty &prop)
std::unique_ptr< rviz::ColorProperty > item_rgb_selected_ctl_


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