mainwindow.cpp
Go to the documentation of this file.
2 
3 namespace simple_qt_gui
4 {
5 
6 MainWindow::MainWindow(QWidget *parent) :
7  QMainWindow(parent)
8 {
9  QApplication::setWindowIcon(QIcon("://simple_qt_gui.png"));
10  parent = new QWidget;
11  setCentralWidget(parent);
12  QHBoxLayout *layout(new QHBoxLayout);
13  parent->setLayout(layout);
14  layout->addWidget(new QLabel("This is a Qt application that can make use of ROS"));
15 
16  setWindowTitle("ROS Qt application");
17 }
18 
20 {
21 }
22 
23 }
MainWindow(QWidget *parent=0)
Definition: mainwindow.cpp:6


rqt_app_example
Author(s): Victor Lamoine - Institut Maupertuis
autogenerated on Mon Feb 28 2022 23:34:52