1 |
#include "about.h" |
2 |
#include "ui_about.h" |
3 |
|
4 |
About::About(QWidget *parent) : |
5 |
QDialog(parent), |
6 |
ui(new Ui::About) |
7 |
{ |
8 |
ui->setupUi(this); |
9 |
this->setAttribute(Qt::WA_DeleteOnClose,true ); //destroy itself once finished. |
10 |
this->layout()->setSizeConstraint( QLayout::SetFixedSize ); //fixed size |
11 |
ui->lbAbout->setOpenExternalLinks(true); //allow navigate to oni central |
12 |
ui->lbAbout->setText(ui->lbAbout->text().replace("Vago GUI","Vago GUI "+GlobalVars::AppVersion)); |
13 |
} |
14 |
|
15 |
About::~About() |
16 |
{ |
17 |
delete ui; |
18 |
} |
19 |
|
20 |
void About::on_pushButton_clicked() |
21 |
{ |
22 |
this->close(); |
23 |
} |