38 lines
835 B
C++
38 lines
835 B
C++
#include "exportsubtitlestab.h"
|
|
|
|
#include <QGridLayout>
|
|
#include <QLabel>
|
|
|
|
namespace olive {
|
|
|
|
ExportSubtitlesTab::ExportSubtitlesTab(QWidget *parent) :
|
|
QWidget(parent)
|
|
{
|
|
QVBoxLayout* outer_layout = new QVBoxLayout(this);
|
|
|
|
QGridLayout* layout = new QGridLayout();
|
|
outer_layout->addLayout(layout);
|
|
|
|
int row = 0;
|
|
|
|
layout->addWidget(new QLabel(tr("Codec:")), row, 0);
|
|
|
|
codec_combobox_ = new QComboBox();
|
|
layout->addWidget(codec_combobox_, row, 1);
|
|
|
|
outer_layout->addStretch();
|
|
}
|
|
|
|
int ExportSubtitlesTab::SetFormat(ExportFormat::Format format)
|
|
{
|
|
auto scodecs = ExportFormat::GetSubtitleCodecs(format);
|
|
setEnabled(!scodecs.isEmpty());
|
|
codec_combobox_->clear();
|
|
foreach (ExportCodec::Codec scodec, scodecs) {
|
|
codec_combobox_->addItem(ExportCodec::GetCodecName(scodec), scodec);
|
|
}
|
|
return scodecs.size();
|
|
}
|
|
|
|
}
|