mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
ebc0e6d3f3
Add class variable tooltip_position to qPrefDisplay Add class variable lastDir to qPrefDisplay qPrefDisplay is updated to use new qPrefPrivate functions Adjust test cases incl. qml tests qPrefAnimations only has 1 variable, that really is a display variable Merge the variable into qPrefDisplay, to simplify setup (and avoid loading extra page in qml). correct theme to save in correct place, and make it a static class variable Signed-off-by: Jan Iversen <jani@apache.org>
121 lines
4.6 KiB
C++
121 lines
4.6 KiB
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#include "preferences_defaults.h"
|
|
#include "ui_preferences_defaults.h"
|
|
#include "core/dive.h"
|
|
#include "core/settings/qPref.h"
|
|
|
|
#include <QFileDialog>
|
|
|
|
PreferencesDefaults::PreferencesDefaults(): AbstractPreferencesWidget(tr("General"), QIcon(":preferences-other-icon"), 0 ), ui(new Ui::PreferencesDefaults())
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
PreferencesDefaults::~PreferencesDefaults()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void PreferencesDefaults::on_chooseFile_clicked()
|
|
{
|
|
QFileInfo fi(system_default_filename());
|
|
QString choosenFileName = QFileDialog::getOpenFileName(this, tr("Open default log file"), fi.absolutePath(), tr("Subsurface files") + " (*.ssrf *.xml)");
|
|
|
|
if (!choosenFileName.isEmpty())
|
|
ui->defaultfilename->setText(choosenFileName);
|
|
}
|
|
|
|
void PreferencesDefaults::on_btnUseDefaultFile_toggled(bool toggle)
|
|
{
|
|
if (toggle) {
|
|
ui->defaultfilename->setText(system_default_filename());
|
|
ui->defaultfilename->setEnabled(false);
|
|
} else {
|
|
ui->defaultfilename->setEnabled(true);
|
|
}
|
|
}
|
|
|
|
void PreferencesDefaults::on_localDefaultFile_toggled(bool toggle)
|
|
{
|
|
ui->defaultfilename->setEnabled(toggle);
|
|
ui->btnUseDefaultFile->setEnabled(toggle);
|
|
ui->chooseFile->setEnabled(toggle);
|
|
}
|
|
|
|
void PreferencesDefaults::on_ffmpegFile_clicked()
|
|
{
|
|
QFileInfo fi(system_default_filename());
|
|
QString ffmpegFileName = QFileDialog::getOpenFileName(this, tr("Select ffmpeg executable"));
|
|
|
|
if (!ffmpegFileName.isEmpty())
|
|
ui->ffmpegExecutable->setText(ffmpegFileName);
|
|
}
|
|
|
|
void PreferencesDefaults::on_extractVideoThumbnails_toggled(bool toggled)
|
|
{
|
|
ui->videoThumbnailPosition->setEnabled(toggled);
|
|
ui->ffmpegExecutable->setEnabled(toggled);
|
|
ui->ffmpegFile->setEnabled(toggled);
|
|
}
|
|
|
|
void PreferencesDefaults::refreshSettings()
|
|
{
|
|
ui->font->setCurrentFont(qPrefDisplay::divelist_font());
|
|
ui->fontsize->setValue(qPrefDisplay::font_size());
|
|
ui->defaultfilename->setText(qPrefGeneral::default_filename());
|
|
ui->noDefaultFile->setChecked(qPrefGeneral::default_file_behavior() == NO_DEFAULT_FILE);
|
|
ui->cloudDefaultFile->setChecked(qPrefGeneral::default_file_behavior() == CLOUD_DEFAULT_FILE);
|
|
ui->localDefaultFile->setChecked(qPrefGeneral::default_file_behavior() == LOCAL_DEFAULT_FILE);
|
|
|
|
ui->default_cylinder->clear();
|
|
for (int i = 0; tank_info[i].name != NULL && i < MAX_TANK_INFO; i++) {
|
|
ui->default_cylinder->addItem(tank_info[i].name);
|
|
if (qPrefGeneral::default_cylinder() == tank_info[i].name)
|
|
ui->default_cylinder->setCurrentIndex(i);
|
|
}
|
|
ui->displayinvalid->setChecked(qPrefDisplay::display_invalid_dives());
|
|
ui->velocitySlider->setValue(qPrefDisplay::animation_speed());
|
|
ui->btnUseDefaultFile->setChecked(qPrefGeneral::use_default_file());
|
|
|
|
if (qPrefCloudStorage::cloud_verification_status() == qPref::CS_VERIFIED) {
|
|
ui->cloudDefaultFile->setEnabled(true);
|
|
} else {
|
|
if (ui->cloudDefaultFile->isChecked())
|
|
ui->noDefaultFile->setChecked(true);
|
|
ui->cloudDefaultFile->setEnabled(false);
|
|
}
|
|
|
|
ui->defaultfilename->setEnabled(qPrefGeneral::default_file_behavior() == LOCAL_DEFAULT_FILE);
|
|
ui->btnUseDefaultFile->setEnabled(qPrefGeneral::default_file_behavior() == LOCAL_DEFAULT_FILE);
|
|
ui->chooseFile->setEnabled(qPrefGeneral::default_file_behavior() == LOCAL_DEFAULT_FILE);
|
|
|
|
ui->videoThumbnailPosition->setEnabled(qPrefGeneral::extract_video_thumbnails());
|
|
ui->ffmpegExecutable->setEnabled(qPrefGeneral::extract_video_thumbnails());
|
|
ui->ffmpegFile->setEnabled(qPrefGeneral::extract_video_thumbnails());
|
|
|
|
ui->extractVideoThumbnails->setChecked(qPrefGeneral::extract_video_thumbnails());
|
|
ui->videoThumbnailPosition->setValue(qPrefGeneral::extract_video_thumbnails_position());
|
|
ui->ffmpegExecutable->setText(qPrefGeneral::ffmpeg_executable());
|
|
}
|
|
|
|
void PreferencesDefaults::syncSettings()
|
|
{
|
|
auto general = qPrefGeneral::instance();
|
|
general->set_default_filename(ui->defaultfilename->text());
|
|
general->set_default_cylinder(ui->default_cylinder->currentText());
|
|
general->set_use_default_file(ui->btnUseDefaultFile->isChecked());
|
|
if (ui->noDefaultFile->isChecked())
|
|
general->set_default_file_behavior(NO_DEFAULT_FILE);
|
|
else if (ui->localDefaultFile->isChecked())
|
|
general->set_default_file_behavior(LOCAL_DEFAULT_FILE);
|
|
else if (ui->cloudDefaultFile->isChecked())
|
|
general->set_default_file_behavior(CLOUD_DEFAULT_FILE);
|
|
general->set_extract_video_thumbnails(ui->extractVideoThumbnails->isChecked());
|
|
general->set_extract_video_thumbnails_position(ui->videoThumbnailPosition->value());
|
|
general->set_ffmpeg_executable(ui->ffmpegExecutable->text());
|
|
|
|
qPrefDisplay::set_divelist_font(ui->font->currentFont().toString());
|
|
qPrefDisplay::set_font_size(ui->fontsize->value());
|
|
qPrefDisplay::set_display_invalid_dives(ui->displayinvalid->isChecked());
|
|
qPrefDisplay::set_animation_speed(ui->velocitySlider->value());
|
|
}
|