YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
genericinfodlg.cpp
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2006-2021 Istituto Italiano di Tecnologia (IIT)
3 * SPDX-License-Identifier: LGPL-2.1-or-later
4 */
5
6#include "genericinfodlg.h"
7#include "ui_genericinfodlg.h"
8
9GenericInfoDlg::GenericInfoDlg(QString title, QString description, QString text,QWidget *parent) :
10 QDialog(parent),
11 ui(new Ui::GenericInfoDlg)
12{
13 ui->setupUi(this);
14 this->setWindowTitle(title);
15 ui->description->setText(description);
16 ui->textBrowser->setHtml(text);
17
18 connect(ui->pushButton,SIGNAL(clicked()),this,SLOT(accept()));
19}
20
22{
23 delete ui;
24}
int SIGNAL(int pid, int signum)
GenericInfoDlg(QString title, QString description, QString text, QWidget *parent=0)
Definition aboutdlg.h:11