17 lines
374 B
C++
17 lines
374 B
C++
#include "Help.h"
|
|
|
|
Help::Help(QWidget *parent)
|
|
: QWidget(parent)
|
|
{
|
|
ui.setupUi(this);
|
|
this->setWindowIcon(QIcon(":/icon/image/common/icon.png"));
|
|
QPixmap *pixmap = new QPixmap(":/Reconstruction/image/reconstruction/help.png");
|
|
pixmap->scaled(ui.label->size(), Qt::KeepAspectRatio);
|
|
ui.label->setScaledContents(true);
|
|
ui.label->setPixmap(*pixmap);
|
|
}
|
|
|
|
Help::~Help()
|
|
{
|
|
}
|