YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
startdlg.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2006-2021 Istituto Italiano di Tecnologia (IIT)
3 * SPDX-FileCopyrightText: 2006-2010 RobotCub Consortium
4 * SPDX-License-Identifier: LGPL-2.1-or-later
5 */
6
7#ifndef STARTDLG_H
8#define STARTDLG_H
9
10#include <QDialog>
11#include <QCheckBox>
12#include <QPushButton>
13#include <QDialogButtonBox>
14
15namespace Ui {
16class StartDlg;
17}
18
19class StartDlg : public QDialog
20{
21 Q_OBJECT
22
23public:
24 explicit StartDlg(QWidget *parent = 0);
25 ~StartDlg();
26
27 void init(std::vector<std::string> partsName);
28 std::vector<bool> getEnabledParts();
29
30private:
31 Ui::StartDlg *ui;
32
33 QList <QCheckBox*> checkList;
34
35 private slots:
36 void onSelDesel();
37};
38
39#endif // STARTDLG_H
std::vector< bool > getEnabledParts()
Definition startdlg.cpp:63
void init(std::vector< std::string > partsName)
Definition startdlg.cpp:30
std::vector< std::string > partsName
Definition main.cpp:31
Definition aboutdlg.h:11