2018-02-27 18:06:05 +01:00
|
|
|
/*
|
|
|
|
* Strawberry Music Player
|
|
|
|
* This file was part of Clementine.
|
|
|
|
* Copyright 2010, David Sansome <me@davidsansome.com>
|
|
|
|
*
|
|
|
|
* Strawberry 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.
|
|
|
|
*
|
|
|
|
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
2018-08-09 18:39:44 +02:00
|
|
|
*
|
2018-02-27 18:06:05 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QWidget>
|
|
|
|
#include <QString>
|
|
|
|
#include <QSlider>
|
|
|
|
#include <QSettings>
|
|
|
|
|
|
|
|
#include "transcoderoptionsinterface.h"
|
2018-02-27 18:06:05 +01:00
|
|
|
#include "transcoderoptionsflac.h"
|
|
|
|
#include "ui_transcoderoptionsflac.h"
|
|
|
|
|
2024-04-11 02:56:01 +02:00
|
|
|
#include "core/settings.h"
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
constexpr char kSettingsGroup[] = "Transcoder/flacenc";
|
|
|
|
}
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2021-07-11 07:40:57 +02:00
|
|
|
TranscoderOptionsFLAC::TranscoderOptionsFLAC(QWidget *parent) : TranscoderOptionsInterface(parent), ui_(new Ui_TranscoderOptionsFLAC) {
|
2018-02-27 18:06:05 +01:00
|
|
|
ui_->setupUi(this);
|
|
|
|
}
|
|
|
|
|
2019-01-06 14:34:50 +01:00
|
|
|
TranscoderOptionsFLAC::~TranscoderOptionsFLAC() {
|
2018-02-27 18:06:05 +01:00
|
|
|
delete ui_;
|
|
|
|
}
|
|
|
|
|
2019-01-06 14:34:50 +01:00
|
|
|
void TranscoderOptionsFLAC::Load() {
|
2020-05-25 23:56:54 +02:00
|
|
|
|
2024-04-11 02:56:01 +02:00
|
|
|
Settings s;
|
|
|
|
s.beginGroup(QLatin1String(kSettingsGroup) + settings_postfix_);
|
2018-02-27 18:06:05 +01:00
|
|
|
ui_->quality->setValue(s.value("quality", 5).toInt());
|
2020-05-25 23:56:54 +02:00
|
|
|
s.endGroup();
|
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|
|
|
|
|
2019-01-06 14:34:50 +01:00
|
|
|
void TranscoderOptionsFLAC::Save() {
|
2020-05-25 23:56:54 +02:00
|
|
|
|
2024-04-11 02:56:01 +02:00
|
|
|
Settings s;
|
|
|
|
s.beginGroup(QLatin1String(kSettingsGroup) + settings_postfix_);
|
2018-02-27 18:06:05 +01:00
|
|
|
s.setValue("quality", ui_->quality->value());
|
2020-05-25 23:56:54 +02:00
|
|
|
s.endGroup();
|
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
}
|