- File inputs marked with the 'lut_library' property (currently the OCIO LUT node) now show a combo box populated from the global LUT library above the path field: pick a library LUT directly, or use 'Other (Custom File)...' with the regular path field; selections go through the standard undoable input-change path - Refresh zh_CN translations with lupdate and translate all strings introduced by the proxy dialog, LUT library, LUT picker, waveform sync and footage start time work - Document the new per-footage custom <proxy> attributes and the 'manual' source-start-time origin in the project file reference - Add LutFileField UI tests
90 lines
2.5 KiB
C++
90 lines
2.5 KiB
C++
/***
|
|
|
|
Oak - Non-Linear Video Editor
|
|
Copyright (C) 2026 Oak Team
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
***/
|
|
|
|
#include "lutfilefield.h"
|
|
|
|
#include <QDir>
|
|
#include <QHBoxLayout>
|
|
|
|
#include "render/lutlibrary.h"
|
|
|
|
namespace olive
|
|
{
|
|
|
|
LutFileField::LutFileField(QWidget *parent) : FileField(parent)
|
|
{
|
|
library_combo_ = new QComboBox();
|
|
library_combo_->setSizeAdjustPolicy(QComboBox::AdjustToMinimumContentsLengthWithIcon);
|
|
library_combo_->setMinimumContentsLength(12);
|
|
static_cast<QHBoxLayout *>(layout())->insertWidget(0, library_combo_, 1);
|
|
|
|
RefreshLibraryEntries();
|
|
|
|
connect(library_combo_,
|
|
static_cast<void (QComboBox::*)(int)>(&QComboBox::activated), this,
|
|
[this](int index) {
|
|
const QString path =
|
|
library_combo_->itemData(index).toString();
|
|
if (!path.isEmpty()) {
|
|
SetFilename(path);
|
|
emit FilenameChanged(path);
|
|
}
|
|
});
|
|
|
|
// Keep the combo in sync when the path is edited directly
|
|
connect(this, &FileField::FilenameChanged, this, [this](const QString &) {
|
|
RefreshLibraryEntries();
|
|
});
|
|
}
|
|
|
|
void LutFileField::SetFilename(const QString &s)
|
|
{
|
|
FileField::SetFilename(s);
|
|
RefreshLibraryEntries();
|
|
}
|
|
|
|
void LutFileField::RefreshLibraryEntries()
|
|
{
|
|
const QString current = GetFilename();
|
|
|
|
const QSignalBlocker blocker(library_combo_);
|
|
library_combo_->clear();
|
|
library_combo_->addItem(tr("Other (Custom File)..."), QString());
|
|
|
|
const QStringList library_dirs = LUTLibrary::GetDirectories();
|
|
const QStringList luts = LUTLibrary::GetLutFiles();
|
|
for (const QString &lut : luts) {
|
|
// Show the path relative to the library directory that contains it
|
|
QString display = lut;
|
|
for (const QString &dir : library_dirs) {
|
|
if (lut.startsWith(dir)) {
|
|
display = QDir(dir).relativeFilePath(lut);
|
|
break;
|
|
}
|
|
}
|
|
library_combo_->addItem(display, lut);
|
|
}
|
|
|
|
const int index = library_combo_->findData(current);
|
|
library_combo_->setCurrentIndex(index >= 0 ? index : 0);
|
|
}
|
|
|
|
}
|