1 #include "AboutDialog.h"
2 #include "ui_AboutDialog.h"
11 QDialog(parent, Qt::Dialog),
15 ui->label_ProgramName->setText(QString(
"NCL Composer v.") +
16 QString(NCLCOMPOSER_GUI_VERSION));
18 connect(ui->button_Close, SIGNAL(pressed()),
this, SLOT(close()));
26 void AboutDialog::showLicense()
28 QMessageBox box(
this);
29 QFile file(
":/LICENSE.LGPL");
30 box.setInformativeText(file.readAll());
31 box.setTextFormat(Qt::RichText);