encoder/exportdialog: add compression options for H264 exporting

This commit is contained in:
itsmattkc
2020-03-03 01:47:04 +11:00
parent 796a30eda9
commit 9e8a384f14
15 changed files with 513 additions and 22 deletions
+23
View File
@@ -0,0 +1,23 @@
#include "imagesection.h"
#include <QGridLayout>
#include <QLabel>
ImageSection::ImageSection(QWidget* parent) :
CodecSection(parent)
{
QGridLayout* layout = new QGridLayout(this);
layout->setMargin(0);
int row = 0;
layout->addWidget(new QLabel(tr("Image Sequence:")), row, 0);
image_sequence_checkbox_ = new QCheckBox();
layout->addWidget(new QCheckBox(), row, 1);
}
QCheckBox *ImageSection::image_sequence_checkbox() const
{
return image_sequence_checkbox_;
}