38 #include <QVBoxLayout> 39 #include <QPushButton> 40 #include <QMessageBox> 41 #include <QApplication> 48 #include <boost/algorithm/string.hpp> 49 #include <boost/filesystem.hpp> 57 namespace fs = boost::filesystem;
63 moveit_setup_assistant::MoveItConfigDataPtr config_data)
67 QVBoxLayout* layout =
new QVBoxLayout();
68 layout->setAlignment(Qt::AlignTop);
73 "Input contact information of the author and initial maintainer of the " 74 "generated package. catkin requires valid details in the package's " 77 layout->addWidget(header);
79 QLabel* name_title =
new QLabel(
this);
80 name_title->setText(
"Name of the maintainer this MoveIt! configuration:");
81 layout->addWidget(name_title);
87 QLabel* email_title =
new QLabel(
this);
88 email_title->setText(
"Email of the maintainer of this MoveIt! configuration:");
89 layout->addWidget(email_title);
96 this->setLayout(layout);