2010-11-12 19:02:01 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// LameXP - Audio Encoder Front-End
|
|
|
|
// Copyright (C) 2004-2010 LoRd_MuldeR <MuldeR2@GMX.de>
|
|
|
|
//
|
|
|
|
// 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 2 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, write to the Free Software Foundation, Inc.,
|
|
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
//
|
|
|
|
// http://www.gnu.org/licenses/gpl-2.0.txt
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "Model_Settings.h"
|
|
|
|
|
|
|
|
#include "Global.h"
|
|
|
|
|
|
|
|
#include <QSettings>
|
|
|
|
#include <QDesktopServices>
|
|
|
|
#include <QApplication>
|
2010-11-20 02:14:22 +01:00
|
|
|
#include <QString>
|
|
|
|
#include <QFileInfo>
|
2010-12-30 16:12:21 +01:00
|
|
|
#include <QStringList>
|
2010-11-12 19:02:01 +01:00
|
|
|
|
2010-11-21 21:51:22 +01:00
|
|
|
//Constants
|
2010-11-15 04:42:06 +01:00
|
|
|
static const char *g_settingsId_versionNumber = "VersionNumber";
|
|
|
|
static const char *g_settingsId_licenseAccepted = "LicenseAccepted";
|
|
|
|
static const char *g_settingsId_interfaceStyle = "InterfaceStyle";
|
|
|
|
static const char *g_settingsId_compressionEncoder = "Compression/Encoder";
|
|
|
|
static const char *g_settingsId_compressionRCMode = "Compression/RCMode";
|
|
|
|
static const char *g_settingsId_compressionBitrate = "Compression/Bitrate";
|
2010-11-21 21:51:22 +01:00
|
|
|
static const char *g_settingsId_outputDir = "OutputDirectory/SelectedPath";
|
|
|
|
static const char *g_settingsId_outputToSourceDir = "OutputDirectory/OutputToSourceFolder";
|
2010-12-14 01:25:13 +01:00
|
|
|
static const char *g_settingsId_prependRelativeSourcePath = "OutputDirectory/PrependRelativeSourcePath";
|
2010-11-29 20:36:27 +01:00
|
|
|
static const char *g_settingsId_writeMetaTags = "Flags/WriteMetaTags";
|
|
|
|
static const char *g_settingsId_createPlaylist = "Flags/AutoCreatePlaylist";
|
|
|
|
static const char *g_settingsId_autoUpdateLastCheck = "AutoUpdate/LastCheck";
|
|
|
|
static const char *g_settingsId_autoUpdateEnabled = "AutoUpdate/Enabled";
|
|
|
|
static const char *g_settingsId_soundsEnabled = "Flags/EnableSounds";
|
2010-12-19 21:23:43 +01:00
|
|
|
static const char *g_settingsId_neroAacNotificationsEnabled = "Flags/EnableNeroAacNotifications";
|
|
|
|
static const char *g_settingsId_wmaDecoderNotificationsEnabled = "Flags/EnableWmaDecoderNotifications";
|
2010-12-22 01:01:01 +01:00
|
|
|
static const char *g_settingsId_dropBoxWidgetEnabled = "Flags/EnableDropBoxWidget";
|
2010-12-28 21:26:16 +01:00
|
|
|
static const char *g_settingsId_currentLanguage = "Localization/Language";
|
2010-11-21 21:51:22 +01:00
|
|
|
//Macros
|
|
|
|
#define MAKE_OPTION1(OPT,DEF) \
|
|
|
|
int SettingsModel::OPT(void) { return m_settings->value(g_settingsId_##OPT, DEF).toInt(); } \
|
|
|
|
void SettingsModel::OPT(int value) { m_settings->setValue(g_settingsId_##OPT, value); }
|
2010-11-12 19:02:01 +01:00
|
|
|
|
2010-11-21 21:51:22 +01:00
|
|
|
#define MAKE_OPTION2(OPT,DEF) \
|
|
|
|
QString SettingsModel::OPT(void) { return m_settings->value(g_settingsId_##OPT, DEF).toString().trimmed(); } \
|
|
|
|
void SettingsModel::OPT(const QString &value) { m_settings->setValue(g_settingsId_##OPT, value); }
|
|
|
|
|
|
|
|
#define MAKE_OPTION3(OPT,DEF) \
|
|
|
|
bool SettingsModel::OPT(void) { return m_settings->value(g_settingsId_##OPT, DEF).toBool(); } \
|
|
|
|
void SettingsModel::OPT(bool value) { m_settings->setValue(g_settingsId_##OPT, value); }
|
|
|
|
|
|
|
|
//LUT
|
2010-11-15 21:07:58 +01:00
|
|
|
const int SettingsModel::mp3Bitrates[15] = {32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320, -1};
|
|
|
|
|
2010-11-12 19:02:01 +01:00
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// Constructor
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
SettingsModel::SettingsModel(void)
|
|
|
|
{
|
2010-11-12 21:02:14 +01:00
|
|
|
QString appPath = QDesktopServices::storageLocation(QDesktopServices::DataLocation);
|
|
|
|
m_settings = new QSettings(appPath.append("/config.ini"), QSettings::IniFormat);
|
2010-11-12 19:02:01 +01:00
|
|
|
m_settings->beginGroup(QString().sprintf("LameXP_%u%02u%05u", lamexp_version_major(), lamexp_version_minor(), lamexp_version_build()));
|
2010-11-15 04:42:06 +01:00
|
|
|
m_settings->setValue(g_settingsId_versionNumber, QApplication::applicationVersion());
|
2010-11-12 19:02:01 +01:00
|
|
|
m_settings->sync();
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// Destructor
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
SettingsModel::~SettingsModel(void)
|
|
|
|
{
|
|
|
|
LAMEXP_DELETE(m_settings);
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// Public Functions
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
2010-11-15 04:42:06 +01:00
|
|
|
void SettingsModel::validate(void)
|
|
|
|
{
|
|
|
|
if(this->compressionEncoder() < SettingsModel::MP3Encoder || this->compressionEncoder() > SettingsModel::PCMEncoder)
|
|
|
|
{
|
|
|
|
this->compressionEncoder(SettingsModel::MP3Encoder);
|
|
|
|
}
|
2010-12-30 16:12:21 +01:00
|
|
|
|
2010-11-15 04:42:06 +01:00
|
|
|
if(this->compressionRCMode() < SettingsModel::VBRMode || this->compressionRCMode() > SettingsModel::CBRMode)
|
|
|
|
{
|
|
|
|
this->compressionEncoder(SettingsModel::VBRMode);
|
|
|
|
}
|
2010-12-30 16:12:21 +01:00
|
|
|
|
2010-11-15 04:42:06 +01:00
|
|
|
if(!(lamexp_check_tool("neroAacEnc.exe") && lamexp_check_tool("neroAacDec.exe") && lamexp_check_tool("neroAacTag.exe")))
|
|
|
|
{
|
2010-12-03 23:01:17 +01:00
|
|
|
if(this->compressionEncoder() == SettingsModel::AACEncoder)
|
|
|
|
{
|
|
|
|
qWarning("Nero encoder selected, but not available any more. Reverting to MP3!");
|
|
|
|
this->compressionEncoder(SettingsModel::MP3Encoder);
|
|
|
|
}
|
2010-11-15 04:42:06 +01:00
|
|
|
}
|
2010-12-30 16:12:21 +01:00
|
|
|
|
2010-11-20 02:14:22 +01:00
|
|
|
if(this->outputDir().isEmpty() || !QFileInfo(this->outputDir()).isDir())
|
|
|
|
{
|
|
|
|
this->outputDir(QDesktopServices::storageLocation(QDesktopServices::MusicLocation));
|
|
|
|
}
|
2010-12-30 16:12:21 +01:00
|
|
|
|
|
|
|
if(!lamexp_query_translations().contains(this->currentLanguage(), Qt::CaseInsensitive))
|
|
|
|
{
|
|
|
|
qWarning("Current language is unknown, reverting to default language!");
|
|
|
|
this->currentLanguage(LAMEXP_DEFAULT_LANGID);
|
|
|
|
}
|
2010-11-15 04:42:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// Getter and Setter
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
2010-11-21 21:51:22 +01:00
|
|
|
MAKE_OPTION1(licenseAccepted, 0)
|
|
|
|
MAKE_OPTION1(interfaceStyle, 0)
|
|
|
|
MAKE_OPTION1(compressionEncoder, 0)
|
|
|
|
MAKE_OPTION1(compressionRCMode, 0)
|
|
|
|
MAKE_OPTION1(compressionBitrate, 7)
|
|
|
|
MAKE_OPTION2(outputDir, QString())
|
|
|
|
MAKE_OPTION3(outputToSourceDir, false)
|
2010-12-14 01:25:13 +01:00
|
|
|
MAKE_OPTION3(prependRelativeSourcePath, false)
|
2010-11-21 21:51:22 +01:00
|
|
|
MAKE_OPTION3(writeMetaTags, true)
|
|
|
|
MAKE_OPTION3(createPlaylist, true)
|
2010-11-29 20:36:27 +01:00
|
|
|
MAKE_OPTION2(autoUpdateLastCheck, "Never")
|
|
|
|
MAKE_OPTION3(autoUpdateEnabled, true)
|
|
|
|
MAKE_OPTION3(soundsEnabled, true)
|
2010-12-19 21:23:43 +01:00
|
|
|
MAKE_OPTION3(neroAacNotificationsEnabled, true)
|
|
|
|
MAKE_OPTION3(wmaDecoderNotificationsEnabled, true)
|
2010-12-22 01:01:01 +01:00
|
|
|
MAKE_OPTION3(dropBoxWidgetEnabled, true)
|
2010-12-30 16:12:21 +01:00
|
|
|
MAKE_OPTION2(currentLanguage, LAMEXP_DEFAULT_LANGID);
|