|
14 | 14 | #include "dialog_select_ros_topics.h" |
15 | 15 | #include "ui_dialog_select_ros_topics.h" |
16 | 16 |
|
17 | | -DialogSelectRosTopics::DialogSelectRosTopics( |
18 | | - const std::vector<std::pair<QString, QString>>& topic_list, const PJ::RosParserConfig& config, |
19 | | - QWidget* parent) |
| 17 | +DialogSelectRosTopics::DialogSelectRosTopics(const std::vector<std::pair<QString, QString>>& topic_list, |
| 18 | + const PJ::RosParserConfig& config, QWidget* parent) |
20 | 19 | : QDialog(parent) |
21 | 20 | , ui(new Ui::dialogSelectRosTopics) |
22 | 21 | , _default_selected_topics(config.topics) |
@@ -70,8 +69,7 @@ DialogSelectRosTopics::DialogSelectRosTopics( |
70 | 69 | } |
71 | 70 | }); |
72 | 71 |
|
73 | | - connect(&_deselect_all, &QShortcut::activated, ui->listRosTopics, |
74 | | - &QAbstractItemView::clearSelection); |
| 72 | + connect(&_deselect_all, &QShortcut::activated, ui->listRosTopics, &QAbstractItemView::clearSelection); |
75 | 73 |
|
76 | 74 | on_spinBoxArraySize_valueChanged(ui->spinBoxArraySize->value()); |
77 | 75 |
|
@@ -190,18 +188,17 @@ void DialogSelectRosTopics::on_maximumSizeHelp_pressed() |
190 | 188 | { |
191 | 189 | QMessageBox msgBox; |
192 | 190 | msgBox.setWindowTitle("Help"); |
193 | | - msgBox.setText( |
194 | | - "Maximum Size of Arrays:\n\n" |
195 | | - "If the size of an Arrays is larger than this maximum value, the entire array is skipped.\n\n" |
196 | | - "This parameter is used to prevent the user from loading HUGE arrays, " |
197 | | - "such as images, pointclouds, maps, etc.\n" |
198 | | - "The term 'array' refers to the array in a message field,\n\n" |
199 | | - " See http://wiki.ros.org/msg.\n\n" |
200 | | - "This is NOT about the duration of a time series!\n\n" |
201 | | - "MOTIVATION: pretend that a user tries to load a RGB image, which probably contains " |
202 | | - "a few millions pixels.\n" |
203 | | - "Plotjuggler would naively create a single time series for each pixel of the image! " |
204 | | - "That makes no sense, of course, and it would probably freeze your system.\n"); |
| 191 | + msgBox.setText("Maximum Size of Arrays:\n\n" |
| 192 | + "If the size of an Arrays is larger than this maximum value, the entire array is skipped.\n\n" |
| 193 | + "This parameter is used to prevent the user from loading HUGE arrays, " |
| 194 | + "such as images, pointclouds, maps, etc.\n" |
| 195 | + "The term 'array' refers to the array in a message field,\n\n" |
| 196 | + " See http://wiki.ros.org/msg.\n\n" |
| 197 | + "This is NOT about the duration of a time series!\n\n" |
| 198 | + "MOTIVATION: pretend that a user tries to load a RGB image, which probably contains " |
| 199 | + "a few millions pixels.\n" |
| 200 | + "Plotjuggler would naively create a single time series for each pixel of the image! " |
| 201 | + "That makes no sense, of course, and it would probably freeze your system.\n"); |
205 | 202 | msgBox.exec(); |
206 | 203 | } |
207 | 204 |
|
|
0 commit comments