From ad8da103b4055b6412d84a1071b88f78d79edf07 Mon Sep 17 00:00:00 2001 From: ksuprynowicz Date: Sun, 11 Sep 2022 15:55:30 +0200 Subject: [PATCH] Fixed default preference selection bug for screenshot formats and added short descriptions --- interface/src/ui/PreferencesDialog.cpp | 16 ++++++++++++---- interface/src/ui/Snapshot.cpp | 8 ++++++++ interface/src/ui/Snapshot.h | 14 ++++++++++++++ 3 files changed, 34 insertions(+), 4 deletions(-) diff --git a/interface/src/ui/PreferencesDialog.cpp b/interface/src/ui/PreferencesDialog.cpp index 36df5c93f4..6d13f586d4 100644 --- a/interface/src/ui/PreferencesDialog.cpp +++ b/interface/src/ui/PreferencesDialog.cpp @@ -250,22 +250,30 @@ void setupPreferences() { } { - auto getter = []()->int { return DependencyManager::get()->getAvailableSnapshotFormats().indexOf(DependencyManager::get()->getSnapshotFormat()); }; + auto getter = []()->int { + if (!DependencyManager::get()->_snapshotFormat.isSet()) { + DependencyManager::get()->setSnapshotFormat(DependencyManager::get()->getAvailableSnapshotFormats()[0]); + } + return DependencyManager::get()->getAvailableSnapshotFormats().indexOf(DependencyManager::get()->getSnapshotFormat()); }; auto setter = [](int value) { DependencyManager::get()->setSnapshotFormat(DependencyManager::get()->getAvailableSnapshotFormats()[value]); }; auto preference = new RadioButtonsPreference(SNAPSHOTS, "Snapshot format", getter, setter); QStringList items; - items << DependencyManager::get()->getAvailableSnapshotFormats(); + items << DependencyManager::get()->getAvailableSnapshotFormatsWithDescriptions(); preference->setHeading("Snapshot format"); preference->setItems(items); preferences->addPreference(preference); } { - auto getter = []()->int { return DependencyManager::get()->getAvailableAnimatedSnapshotFormats().indexOf(DependencyManager::get()->getAnimatedSnapshotFormat()); }; + auto getter = []()->int { + if (!DependencyManager::get()->_animatedSnapshotFormat.isSet()) { + DependencyManager::get()->setAnimatedSnapshotFormat(DependencyManager::get()->getAvailableAnimatedSnapshotFormats()[0]); + } + return DependencyManager::get()->getAvailableAnimatedSnapshotFormats().indexOf(DependencyManager::get()->getAnimatedSnapshotFormat()); }; auto setter = [](int value) { DependencyManager::get()->setAnimatedSnapshotFormat(DependencyManager::get()->getAvailableAnimatedSnapshotFormats()[value]); }; auto preference = new RadioButtonsPreference(SNAPSHOTS, "Animated snapshot format", getter, setter); QStringList items; - items << DependencyManager::get()->getAvailableAnimatedSnapshotFormats(); + items << DependencyManager::get()->getAvailableAnimatedSnapshotFormatsWithDescriptions(); preference->setHeading("Animated snapshot format"); preference->setItems(items); preferences->addPreference(preference); diff --git a/interface/src/ui/Snapshot.cpp b/interface/src/ui/Snapshot.cpp index aaffbade3c..2884574767 100644 --- a/interface/src/ui/Snapshot.cpp +++ b/interface/src/ui/Snapshot.cpp @@ -552,6 +552,14 @@ QStringList Snapshot::getAvailableSnapshotFormats() { return QStringList({"png", "jpg", "webp"}); } +QStringList Snapshot::getAvailableSnapshotFormatsWithDescriptions() { + return QStringList({"PNG - lossless, large file size", "JPG - lossy, fast compression", "WEBP - lossy, higher quality and file size than JPG"}); +} + QStringList Snapshot::getAvailableAnimatedSnapshotFormats() { return QStringList({"gif"}); } + +QStringList Snapshot::getAvailableAnimatedSnapshotFormatsWithDescriptions() { + return QStringList({"GIF"}); +} diff --git a/interface/src/ui/Snapshot.h b/interface/src/ui/Snapshot.h index ad55186be4..61af735af7 100644 --- a/interface/src/ui/Snapshot.h +++ b/interface/src/ui/Snapshot.h @@ -135,12 +135,26 @@ public slots: */ Q_INVOKABLE QStringList getAvailableSnapshotFormats(); + /*@jsdoc + * Returns a list of supported snapshot formats with short descriptions. + * @function Snapshot.getAvailableSnapshotFormatsWithDescriptions + * @returns {Array.} List of supported snapshot formats with short descriptions. + */ + Q_INVOKABLE QStringList getAvailableSnapshotFormatsWithDescriptions(); + /*@jsdoc * Returns a list of supported animated snapshot formats. * @function Snapshot.getAvailableAnimatedSnapshotFormats * @returns {Array.} List of supported animated snapshot formats. */ Q_INVOKABLE QStringList getAvailableAnimatedSnapshotFormats(); + + /*@jsdoc + * Returns a list of supported animated snapshot formats with short descriptions. + * @function Snapshot.getAvailableAnimatedSnapshotFormatsWithDescriptions + * @returns {Array.} List of supported animated snapshot formats with short descriptions. + */ + Q_INVOKABLE QStringList getAvailableAnimatedSnapshotFormatsWithDescriptions();