You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
408 B
C++
23 lines
408 B
C++
#include "cexportdialog.h"
|
|
#include "ui_cexportdialog.h"
|
|
|
|
|
|
cExportDialog::cExportDialog(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::cExportDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
connect(ui->m_lpQuality, &QSlider::valueChanged, this, &cExportDialog::onQualityChanged);
|
|
}
|
|
|
|
cExportDialog::~cExportDialog()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void cExportDialog::onQualityChanged(int value)
|
|
{
|
|
ui->m_lpQualityValue->setNum(value);
|
|
}
|