1511 lines
36 KiB
C++
1511 lines
36 KiB
C++
/*
|
|
* Cantata
|
|
*
|
|
* Copyright (c) 2011-2014 Craig Drummond <craig.p.drummond@gmail.com>
|
|
*
|
|
* ----
|
|
*
|
|
* 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; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "settings.h"
|
|
#include "musiclibraryitemalbum.h"
|
|
#include "fancytabwidget.h"
|
|
#include "albumsmodel.h"
|
|
#include "itemview.h"
|
|
#include "mpdparseutils.h"
|
|
#include "utils.h"
|
|
#include "mediakeys.h"
|
|
#ifdef ENABLE_KDE_SUPPORT
|
|
#include <KDE/KGlobal>
|
|
#include <KDE/KConfig>
|
|
#ifdef ENABLE_KWALLET
|
|
#include <kwallet.h>
|
|
#endif
|
|
#include <QApplication>
|
|
#include <QWidget>
|
|
#include <QTimer>
|
|
|
|
K_GLOBAL_STATIC(Settings, instance)
|
|
#else
|
|
#include "mediakeys.h"
|
|
#endif
|
|
#include <QFile>
|
|
#include <QDir>
|
|
#include <qglobal.h>
|
|
|
|
#define RESTRICT(VAL, MIN_VAL, MAX_VAL) (VAL<MIN_VAL ? MIN_VAL : (VAL>MAX_VAL ? MAX_VAL : VAL))
|
|
|
|
Settings * Settings::self()
|
|
{
|
|
#ifdef ENABLE_KDE_SUPPORT
|
|
return instance;
|
|
#else
|
|
static Settings *instance=0;
|
|
if (!instance) {
|
|
instance=new Settings;
|
|
}
|
|
return instance;
|
|
#endif
|
|
}
|
|
|
|
struct MpdDefaults
|
|
{
|
|
MpdDefaults()
|
|
: host("localhost")
|
|
, dir("/var/lib/mpd/music/")
|
|
, port(6600) {
|
|
}
|
|
|
|
static QString getVal(const QString &line) {
|
|
QStringList parts=line.split('\"');
|
|
return parts.count()>1 ? parts[1] : QString();
|
|
}
|
|
|
|
enum Details {
|
|
DT_DIR = 0x01,
|
|
DT_ADDR = 0x02,
|
|
DT_PORT = 0x04,
|
|
DT_PASSWD = 0x08,
|
|
|
|
DT_ALL = DT_DIR|DT_ADDR|DT_PORT|DT_PASSWD
|
|
};
|
|
|
|
void read() {
|
|
QFile f("/etc/mpd.conf");
|
|
|
|
if (f.open(QIODevice::ReadOnly|QIODevice::Text)) {
|
|
int details=0;
|
|
while (!f.atEnd()) {
|
|
QString line = f.readLine().trimmed();
|
|
if (line.startsWith('#')) {
|
|
continue;
|
|
} else if (!(details&DT_DIR) && line.startsWith(QLatin1String("music_directory"))) {
|
|
QString val=getVal(line);
|
|
if (!val.isEmpty() && QDir(val).exists()) {
|
|
dir=Utils::fixPath(val);
|
|
details|=DT_DIR;
|
|
}
|
|
} else if (!(details&DT_ADDR) && line.startsWith(QLatin1String("bind_to_address"))) {
|
|
QString val=getVal(line);
|
|
if (!val.isEmpty() && val!=QLatin1String("any")) {
|
|
host=val;
|
|
details|=DT_ADDR;
|
|
}
|
|
} else if (!(details&DT_PORT) && line.startsWith(QLatin1String("port"))) {
|
|
int val=getVal(line).toInt();
|
|
if (val>0) {
|
|
port=val;
|
|
details|=DT_PORT;
|
|
}
|
|
} else if (!(details&DT_PASSWD) && line.startsWith(QLatin1String("password"))) {
|
|
QString val=getVal(line);
|
|
if (!val.isEmpty()) {
|
|
QStringList parts=val.split('@');
|
|
if (!parts.isEmpty()) {
|
|
passwd=parts[0];
|
|
details|=DT_PASSWD;
|
|
}
|
|
}
|
|
}
|
|
if (details==DT_ALL) {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
QString host;
|
|
QString dir;
|
|
QString passwd;
|
|
int port;
|
|
};
|
|
|
|
static MpdDefaults mpdDefaults;
|
|
|
|
static QString getStartupStateStr(Settings::StartupState s)
|
|
{
|
|
switch (s) {
|
|
case Settings::SS_ShowMainWindow: return QLatin1String("show");
|
|
case Settings::SS_HideMainWindow: return QLatin1String("hide");
|
|
default:
|
|
case Settings::SS_Previous: return QLatin1String("prev");
|
|
}
|
|
}
|
|
|
|
static Settings::StartupState getStartupState(const QString &str)
|
|
{
|
|
for (int i=0; i<=Settings::SS_Previous; ++i) {
|
|
if (getStartupStateStr((Settings::StartupState)i)==str) {
|
|
return (Settings::StartupState)i;
|
|
}
|
|
}
|
|
return Settings::SS_Previous;
|
|
}
|
|
|
|
Settings::Settings()
|
|
: isFirstRun(false)
|
|
, modified(false)
|
|
, timer(0)
|
|
, ver(-1)
|
|
#ifdef ENABLE_KDE_SUPPORT
|
|
, cfg(KGlobal::config(), "General")
|
|
#ifdef ENABLE_KWALLET
|
|
, wallet(0)
|
|
#endif
|
|
#endif
|
|
{
|
|
// Only need to read system defaults if we have not previously been configured...
|
|
if (version()<CANTATA_MAKE_VERSION(0, 8, 0)
|
|
? GET_STRING("connectionHost", QString()).isEmpty()
|
|
: !HAS_GROUP(MPDConnectionDetails::configGroupName())) {
|
|
mpdDefaults.read();
|
|
}
|
|
}
|
|
|
|
Settings::~Settings()
|
|
{
|
|
#if defined ENABLE_KDE_SUPPORT && defined ENABLE_KWALLET
|
|
delete wallet;
|
|
#endif
|
|
}
|
|
|
|
QString Settings::currentConnection()
|
|
{
|
|
return GET_STRING("currentConnection", QString());
|
|
}
|
|
|
|
MPDConnectionDetails Settings::connectionDetails(const QString &name)
|
|
{
|
|
MPDConnectionDetails details;
|
|
if (version()<CANTATA_MAKE_VERSION(0, 8, 0) || (name.isEmpty() && !HAS_GROUP(MPDConnectionDetails::configGroupName(name)))) {
|
|
details.hostname=GET_STRING("connectionHost", name.isEmpty() ? mpdDefaults.host : QString());
|
|
#if defined ENABLE_KDE_SUPPORT && defined ENABLE_KWALLET
|
|
if (GET_BOOL("connectionPasswd", false)) {
|
|
if (openWallet()) {
|
|
wallet->readPassword("mpd", details.password);
|
|
}
|
|
} else if (name.isEmpty()) {
|
|
details.password=mpdDefaults.passwd;
|
|
}
|
|
#else
|
|
details.password=GET_STRING("connectionPasswd", name.isEmpty() ? mpdDefaults.passwd : QString());
|
|
#endif
|
|
details.port=GET_INT("connectionPort", name.isEmpty() ? mpdDefaults.port : 6600);
|
|
#ifdef Q_OS_WIN32
|
|
details.dir=Utils::fixPath(QDir::fromNativeSeparators(GET_STRING("mpdDir", mpdDefaults.dir)));
|
|
#else
|
|
details.dir=Utils::fixPath(GET_STRING("mpdDir", mpdDefaults.dir));
|
|
#endif
|
|
details.dynamizerPort=0;
|
|
} else {
|
|
QString n=MPDConnectionDetails::configGroupName(name);
|
|
details.name=name;
|
|
if (!HAS_GROUP(n)) {
|
|
details.name=QString();
|
|
n=MPDConnectionDetails::configGroupName(details.name);
|
|
}
|
|
if (HAS_GROUP(n)) {
|
|
#ifdef ENABLE_KDE_SUPPORT
|
|
KConfigGroup grp(KGlobal::config(), n);
|
|
details.hostname=CFG_GET_STRING(grp, "host", name.isEmpty() ? mpdDefaults.host : QString());
|
|
details.port=CFG_GET_INT(grp, "port", name.isEmpty() ? mpdDefaults.port : 6600);
|
|
details.dir=Utils::fixPath(CFG_GET_STRING(grp, "dir", name.isEmpty() ? mpdDefaults.dir : "/var/lib/mpd/music"));
|
|
#ifdef ENABLE_KWALLET
|
|
if (KWallet::Wallet::isEnabled()) {
|
|
if (CFG_GET_BOOL(grp, "passwd", false)) {
|
|
if (openWallet()) {
|
|
wallet->readPassword(name.isEmpty() ? "mpd" : name, details.password);
|
|
}
|
|
} else if (name.isEmpty()) {
|
|
details.password=mpdDefaults.passwd;
|
|
}
|
|
} else
|
|
#endif // ENABLE_KWALLET
|
|
{
|
|
details.password=CFG_GET_STRING(grp, "pass", name.isEmpty() ? mpdDefaults.passwd : QString());
|
|
}
|
|
details.dynamizerPort=CFG_GET_INT(grp, "dynamizerPort", 0);
|
|
details.coverName=CFG_GET_STRING(grp, "coverName", QString());
|
|
#ifdef ENABLE_HTTP_STREAM_PLAYBACK
|
|
details.streamUrl=CFG_GET_STRING(grp, "streamUrl", QString());
|
|
#endif
|
|
#else // ENABLE_KDE_SUPPORT
|
|
cfg.beginGroup(n);
|
|
details.hostname=GET_STRING("host", name.isEmpty() ? mpdDefaults.host : QString());
|
|
details.port=GET_INT("port", name.isEmpty() ? mpdDefaults.port : 6600);
|
|
#ifdef Q_OS_WIN32
|
|
details.dir=Utils::fixPath(QDir::fromNativeSeparators(GET_STRING("dir", name.isEmpty() ? mpdDefaults.dir : "/var/lib/mpd/music")));
|
|
#else
|
|
details.dir=Utils::fixPath(GET_STRING("dir", name.isEmpty() ? mpdDefaults.dir : "/var/lib/mpd/music"));
|
|
#endif
|
|
details.password=GET_STRING("passwd", name.isEmpty() ? mpdDefaults.passwd : QString());
|
|
details.dynamizerPort=GET_INT("dynamizerPort", 0);
|
|
details.coverName=GET_STRING("coverName", QString());
|
|
#ifdef ENABLE_HTTP_STREAM_PLAYBACK
|
|
details.streamUrl=GET_STRING("streamUrl", QString());
|
|
#endif
|
|
cfg.endGroup();
|
|
#endif // ENABLE_KDE_SUPPORT
|
|
} else {
|
|
details.hostname=mpdDefaults.host;
|
|
details.port=mpdDefaults.port;
|
|
details.dir=mpdDefaults.dir;
|
|
details.password=mpdDefaults.passwd;
|
|
details.dynamizerPort=0;
|
|
details.coverName=QString();
|
|
#ifdef ENABLE_HTTP_STREAM_PLAYBACK
|
|
details.streamUrl=QString();
|
|
#endif
|
|
}
|
|
}
|
|
details.setDirReadable();
|
|
return details;
|
|
}
|
|
|
|
QList<MPDConnectionDetails> Settings::allConnections()
|
|
{
|
|
#ifdef ENABLE_KDE_SUPPORT
|
|
QStringList groups=KGlobal::config()->groupList();
|
|
#else
|
|
QStringList groups=cfg.childGroups();
|
|
#endif
|
|
QList<MPDConnectionDetails> connections;
|
|
foreach (const QString &grp, groups) {
|
|
if (HAS_GROUP(grp) && grp.startsWith("Connection")) {
|
|
connections.append(connectionDetails(grp=="Connection" ? QString() : grp.mid(11)));
|
|
}
|
|
}
|
|
|
|
if (connections.isEmpty()) {
|
|
// If we are empty, add at lease the default connection...
|
|
connections.append(connectionDetails());
|
|
}
|
|
return connections;
|
|
}
|
|
|
|
#if defined ENABLE_KDE_SUPPORT && defined ENABLE_KWALLET
|
|
bool Settings::openWallet()
|
|
{
|
|
if (wallet) {
|
|
return true;
|
|
}
|
|
|
|
wallet=KWallet::Wallet::openWallet(KWallet::Wallet::LocalWallet(), QApplication::activeWindow() ? QApplication::activeWindow()->winId() : 0);
|
|
if (wallet) {
|
|
if (!wallet->hasFolder(PACKAGE_NAME)) {
|
|
wallet->createFolder(PACKAGE_NAME);
|
|
}
|
|
wallet->setFolder(PACKAGE_NAME);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
#endif
|
|
|
|
#ifndef ENABLE_KDE_SUPPORT
|
|
QString Settings::iconTheme()
|
|
{
|
|
return GET_STRING("iconTheme", QString());
|
|
}
|
|
#endif
|
|
|
|
bool Settings::showPlaylist()
|
|
{
|
|
return GET_BOOL("showPlaylist", true);
|
|
}
|
|
|
|
bool Settings::showFullScreen()
|
|
{
|
|
return GET_BOOL("showFullScreen", false);
|
|
}
|
|
|
|
QByteArray Settings::headerState(const QString &key)
|
|
{
|
|
if (version()<CANTATA_MAKE_VERSION(1, 2, 54)) {
|
|
return QByteArray();
|
|
}
|
|
return GET_BYTE_ARRAY(key+"HeaderState");
|
|
}
|
|
|
|
QByteArray Settings::splitterState()
|
|
{
|
|
return GET_BYTE_ARRAY("splitterState");
|
|
}
|
|
|
|
bool Settings::splitterAutoHide()
|
|
{
|
|
return GET_BOOL("splitterAutoHide", false);
|
|
}
|
|
|
|
QSize Settings::mainWindowSize()
|
|
{
|
|
return GET_SIZE("mainWindowSize");
|
|
}
|
|
|
|
QSize Settings::mainWindowCollapsedSize()
|
|
{
|
|
return GET_SIZE("mainWindowCollapsedSize");
|
|
}
|
|
|
|
bool Settings::useSystemTray()
|
|
{
|
|
return GET_BOOL("useSystemTray", false);
|
|
}
|
|
|
|
bool Settings::minimiseOnClose()
|
|
{
|
|
return GET_BOOL("minimiseOnClose", true);
|
|
}
|
|
|
|
bool Settings::showPopups()
|
|
{
|
|
return GET_BOOL("showPopups", false);
|
|
}
|
|
|
|
bool Settings::stopOnExit()
|
|
{
|
|
return GET_BOOL("stopOnExit", false);
|
|
}
|
|
|
|
bool Settings::stopDynamizerOnExit()
|
|
{
|
|
return GET_BOOL("stopDynamizerOnExit", false);
|
|
}
|
|
|
|
bool Settings::storeCoversInMpdDir()
|
|
{
|
|
return GET_BOOL("storeCoversInMpdDir", true);
|
|
}
|
|
|
|
bool Settings::storeLyricsInMpdDir()
|
|
{
|
|
return GET_BOOL("storeLyricsInMpdDir", true);
|
|
}
|
|
|
|
bool Settings::storeStreamsInMpdDir()
|
|
{
|
|
#ifdef Q_OS_WIN
|
|
bool def=false;
|
|
#else
|
|
bool def=version()>=CANTATA_MAKE_VERSION(0, 9, 50);
|
|
#endif
|
|
return GET_BOOL("storeStreamsInMpdDir", def);
|
|
}
|
|
|
|
bool Settings::storeBackdropsInMpdDir()
|
|
{
|
|
return GET_BOOL("storeBackdropsInMpdDir", false);
|
|
}
|
|
|
|
int Settings::libraryView()
|
|
{
|
|
int v=version();
|
|
QString def=ItemView::modeStr(v<CANTATA_MAKE_VERSION(0, 9, 50) ? ItemView::Mode_SimpleTree : ItemView::Mode_DetailedTree);
|
|
return ItemView::toMode(GET_STRING("libraryView", def));
|
|
}
|
|
|
|
int Settings::albumsView()
|
|
{
|
|
return ItemView::toMode(GET_STRING("albumsView", ItemView::modeStr(ItemView::Mode_IconTop)));
|
|
}
|
|
|
|
int Settings::folderView()
|
|
{
|
|
int v=version();
|
|
QString def=ItemView::modeStr(v<CANTATA_MAKE_VERSION(1, 0, 51) ? ItemView::Mode_SimpleTree : ItemView::Mode_DetailedTree);
|
|
return ItemView::toMode(GET_STRING("folderView", def));
|
|
}
|
|
|
|
int Settings::playlistsView()
|
|
{
|
|
int v=version();
|
|
QString def=ItemView::modeStr(v<CANTATA_MAKE_VERSION(0, 9, 50)
|
|
? ItemView::Mode_SimpleTree
|
|
: v<CANTATA_MAKE_VERSION(1, 0, 51)
|
|
? ItemView::Mode_GroupedTree
|
|
: ItemView::Mode_DetailedTree);
|
|
return ItemView::toMode(GET_STRING("playlistsView", def));
|
|
}
|
|
|
|
int Settings::streamsView()
|
|
{
|
|
int v=version();
|
|
QString def=ItemView::modeStr(v<CANTATA_MAKE_VERSION(0, 9, 50) ? ItemView::Mode_SimpleTree : ItemView::Mode_DetailedTree);
|
|
return ItemView::toMode(GET_STRING("streamsView", def));
|
|
}
|
|
|
|
int Settings::onlineView()
|
|
{
|
|
return ItemView::toMode(GET_STRING("onlineView", ItemView::modeStr(ItemView::Mode_DetailedTree)));
|
|
}
|
|
|
|
bool Settings::libraryArtistImage()
|
|
{
|
|
if (GET_BOOL("libraryArtistImage", false)) {
|
|
int view=libraryView();
|
|
return ItemView::Mode_SimpleTree!=view && ItemView::Mode_BasicTree!=view;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
int Settings::libraryCoverSize()
|
|
{
|
|
int size=GET_INT("libraryCoverSize", (int)(MusicLibraryItemAlbum::CoverMedium));
|
|
return size>MusicLibraryItemAlbum::CoverExtraLarge || size<0 ? MusicLibraryItemAlbum::CoverMedium : size;
|
|
}
|
|
|
|
int Settings::albumsCoverSize()
|
|
{
|
|
int size=GET_INT("albumsCoverSize", (int)(MusicLibraryItemAlbum::CoverMedium));
|
|
return size>MusicLibraryItemAlbum::CoverExtraLarge || size<0 ? MusicLibraryItemAlbum::CoverMedium : size;
|
|
}
|
|
|
|
int Settings::albumSort()
|
|
{
|
|
return GET_INT("albumSort", 0);
|
|
}
|
|
|
|
int Settings::sidebar()
|
|
{
|
|
if (version()<CANTATA_MAKE_VERSION(1, 2, 52)) {
|
|
switch (GET_INT("sidebar", 1)) {
|
|
default:
|
|
case 1: return FancyTabWidget::Side|FancyTabWidget::Large;
|
|
case 2: return FancyTabWidget::Side|FancyTabWidget::Small;
|
|
case 3: return FancyTabWidget::Side|FancyTabWidget::Tab;
|
|
case 4: return FancyTabWidget::Top|FancyTabWidget::Tab;
|
|
case 5: return FancyTabWidget::Top|FancyTabWidget::Tab|FancyTabWidget::IconOnly;
|
|
case 6: return FancyTabWidget::Bot|FancyTabWidget::Tab;
|
|
case 7: return FancyTabWidget::Bot|FancyTabWidget::Tab|FancyTabWidget::IconOnly;
|
|
case 8: return FancyTabWidget::Side|FancyTabWidget::Large|FancyTabWidget::IconOnly;
|
|
case 9: return FancyTabWidget::Side|FancyTabWidget::Small|FancyTabWidget::IconOnly;
|
|
case 10: return FancyTabWidget::Side|FancyTabWidget::Tab|FancyTabWidget::IconOnly;
|
|
case 11: return FancyTabWidget::Bot|FancyTabWidget::Large;
|
|
case 12: return FancyTabWidget::Bot|FancyTabWidget::Large|FancyTabWidget::IconOnly;
|
|
case 13: return FancyTabWidget::Top|FancyTabWidget::Large;
|
|
case 14: return FancyTabWidget::Top|FancyTabWidget::Large|FancyTabWidget::IconOnly;
|
|
case 15: return FancyTabWidget::Bot|FancyTabWidget::Small;
|
|
case 16: return FancyTabWidget::Bot|FancyTabWidget::Small|FancyTabWidget::IconOnly;
|
|
case 17: return FancyTabWidget::Top|FancyTabWidget::Small;
|
|
case 18: return FancyTabWidget::Top|FancyTabWidget::Small|FancyTabWidget::IconOnly;
|
|
}
|
|
} else {
|
|
return GET_INT("sidebar", (int)(FancyTabWidget::Side|FancyTabWidget::Large))&FancyTabWidget::All_Mask;
|
|
}
|
|
}
|
|
|
|
bool Settings::libraryYear()
|
|
{
|
|
return GET_BOOL("libraryYear", true);
|
|
}
|
|
|
|
bool Settings::groupSingle()
|
|
{
|
|
return GET_BOOL("groupSingle", MPDParseUtils::groupSingle());
|
|
}
|
|
|
|
bool Settings::groupMultiple()
|
|
{
|
|
return GET_BOOL("groupMultiple", MPDParseUtils::groupMultiple());
|
|
}
|
|
|
|
bool Settings::useComposer()
|
|
{
|
|
return GET_BOOL("useComposer", Song::useComposer());
|
|
}
|
|
|
|
QStringList Settings::lyricProviders()
|
|
{
|
|
QStringList def;
|
|
def << "lyrics.wikia.com"
|
|
<< "lyricstime.com"
|
|
<< "lyricsreg.com"
|
|
<< "lyricsmania.com"
|
|
<< "metrolyrics.com"
|
|
<< "azlyrics.com"
|
|
<< "songlyrics.com"
|
|
<< "elyrics.net"
|
|
<< "lyricsdownload.com"
|
|
<< "lyrics.com"
|
|
<< "lyricsbay.com"
|
|
<< "directlyrics.com"
|
|
<< "loudson.gs"
|
|
<< "teksty.org"
|
|
<< "tekstowo.pl (POLISH)"
|
|
<< "vagalume.uol.com.br"
|
|
<< "vagalume.uol.com.br (PORTUGUESE)";
|
|
return GET_STRINGLIST("lyricProviders", def);
|
|
}
|
|
|
|
QStringList Settings::wikipediaLangs()
|
|
{
|
|
QStringList def=QStringList() << "en:en";
|
|
return GET_STRINGLIST("wikipediaLangs", def);
|
|
}
|
|
|
|
bool Settings::wikipediaIntroOnly()
|
|
{
|
|
return GET_BOOL("wikipediaIntroOnly", true);
|
|
}
|
|
|
|
int Settings::contextBackdrop()
|
|
{
|
|
if (version()<CANTATA_MAKE_VERSION(1, 0, 53)) {
|
|
return GET_BOOL("contextBackdrop", true) ? 1 : 1;
|
|
}
|
|
return GET_INT("contextBackdrop", 1);
|
|
}
|
|
|
|
int Settings::contextBackdropOpacity()
|
|
{
|
|
int v=GET_INT("contextBackdropOpacity", 15);
|
|
return RESTRICT(v, 0, 100);
|
|
}
|
|
|
|
int Settings::contextBackdropBlur()
|
|
{
|
|
int v=GET_INT("contextBackdropBlur", 0);
|
|
return RESTRICT(v, 0, 20);
|
|
}
|
|
|
|
QString Settings::contextBackdropFile()
|
|
{
|
|
return GET_STRING("contextBackdropFile", QString());
|
|
}
|
|
|
|
bool Settings::contextDarkBackground()
|
|
{
|
|
return GET_BOOL("contextDarkBackground", false);
|
|
}
|
|
|
|
int Settings::contextZoom()
|
|
{
|
|
return GET_INT("contextZoom", 0);
|
|
}
|
|
|
|
QString Settings::contextSlimPage()
|
|
{
|
|
return GET_STRING("contextSlimPage", QString());
|
|
}
|
|
|
|
QByteArray Settings::contextSplitterState()
|
|
{
|
|
return GET_BYTE_ARRAY("contextSplitterState");
|
|
}
|
|
|
|
bool Settings::contextAlwaysCollapsed()
|
|
{
|
|
return GET_BOOL("contextAlwaysCollapsed", false);
|
|
}
|
|
|
|
QString Settings::page()
|
|
{
|
|
return GET_STRING("page", QString());
|
|
}
|
|
|
|
QStringList Settings::hiddenPages()
|
|
{
|
|
QStringList def=QStringList() << "PlayQueuePage" << "FolderPage" << "SearchPage" << "ContextPage";
|
|
QStringList config=GET_STRINGLIST("hiddenPages", def);
|
|
if (version()<CANTATA_MAKE_VERSION(1, 2, 51) && !config.contains("SearchPage")) {
|
|
config.append("SearchPage");
|
|
}
|
|
return config;
|
|
}
|
|
|
|
#ifndef ENABLE_KDE_SUPPORT
|
|
QString Settings::mediaKeysIface()
|
|
{
|
|
#if defined Q_OS_WIN
|
|
return GET_STRING("mediaKeysIface", MediaKeys::toString(MediaKeys::QxtInterface));
|
|
#else
|
|
return GET_STRING("mediaKeysIface", MediaKeys::toString(MediaKeys::GnomeInteface));
|
|
#endif
|
|
}
|
|
#endif
|
|
|
|
#ifdef ENABLE_DEVICES_SUPPORT
|
|
bool Settings::overwriteSongs()
|
|
{
|
|
return GET_BOOL("overwriteSongs", false);
|
|
}
|
|
|
|
bool Settings::showDeleteAction()
|
|
{
|
|
return GET_BOOL("showDeleteAction", false);
|
|
}
|
|
|
|
int Settings::devicesView()
|
|
{
|
|
if (version()<CANTATA_MAKE_VERSION(1, 0, 51)) {
|
|
int v=GET_INT("devicesView", (int)ItemView::Mode_DetailedTree);
|
|
modified=true;
|
|
SET_VALUE("devicesView", ItemView::modeStr((ItemView::Mode)v));
|
|
return v;
|
|
} else {
|
|
return ItemView::toMode(GET_STRING("devicesView", ItemView::modeStr(ItemView::Mode_DetailedTree)));
|
|
}
|
|
}
|
|
#endif
|
|
|
|
int Settings::searchView()
|
|
{
|
|
return ItemView::toMode(GET_STRING("searchView", ItemView::modeStr(ItemView::Mode_List)));
|
|
}
|
|
|
|
int Settings::version()
|
|
{
|
|
if (-1==ver) {
|
|
isFirstRun=!HAS_ENTRY("version");
|
|
QStringList parts=GET_STRING("version", QLatin1String(PACKAGE_VERSION_STRING)).split('.');
|
|
if (3==parts.size()) {
|
|
ver=CANTATA_MAKE_VERSION(parts.at(0).toInt(), parts.at(1).toInt(), parts.at(2).toInt());
|
|
} else {
|
|
ver=PACKAGE_VERSION;
|
|
SET_VALUE("version", PACKAGE_VERSION);
|
|
}
|
|
}
|
|
return ver;
|
|
}
|
|
|
|
int Settings::stopFadeDuration()
|
|
{
|
|
int v=GET_INT("stopFadeDuration", (int)DefaultFade);
|
|
if (0!=v && (v<MinFade || v>MaxFade)) {
|
|
v=DefaultFade;
|
|
}
|
|
return v;
|
|
}
|
|
|
|
int Settings::httpAllocatedPort()
|
|
{
|
|
return GET_INT("httpAllocatedPort", 0);
|
|
}
|
|
|
|
QString Settings::httpInterface()
|
|
{
|
|
return GET_STRING("httpInterface", QString());
|
|
}
|
|
|
|
bool Settings::alwaysUseHttp()
|
|
{
|
|
#ifdef ENABLE_HTTP_SERVER
|
|
return GET_BOOL("alwaysUseHttp", false);
|
|
#else
|
|
return false;
|
|
#endif
|
|
}
|
|
|
|
bool Settings::playQueueGrouped()
|
|
{
|
|
return GET_BOOL("playQueueGrouped", true);
|
|
}
|
|
|
|
bool Settings::playQueueAutoExpand()
|
|
{
|
|
return GET_BOOL("playQueueAutoExpand", true);
|
|
}
|
|
|
|
bool Settings::playQueueStartClosed()
|
|
{
|
|
return GET_BOOL("playQueueStartClosed", false);
|
|
}
|
|
|
|
bool Settings::playQueueScroll()
|
|
{
|
|
return GET_BOOL("playQueueScroll", true);
|
|
}
|
|
|
|
int Settings::playQueueBackground()
|
|
{
|
|
if (version()<CANTATA_MAKE_VERSION(1, 0, 53)) {
|
|
return GET_BOOL("playQueueBackground", false) ? 1 : 1;
|
|
}
|
|
return GET_INT("playQueueBackground", 0);
|
|
}
|
|
|
|
int Settings::playQueueBackgroundOpacity()
|
|
{
|
|
int v=GET_INT("playQueueBackgroundOpacity", 15);
|
|
return RESTRICT(v, 0, 100);
|
|
}
|
|
|
|
int Settings::playQueueBackgroundBlur()
|
|
{
|
|
int v=GET_INT("playQueueBackgroundBlur", 0);
|
|
return RESTRICT(v, 0, 20);
|
|
}
|
|
|
|
QString Settings::playQueueBackgroundFile()
|
|
{
|
|
return GET_STRING("playQueueBackgroundFile", QString());
|
|
}
|
|
|
|
bool Settings::playQueueConfirmClear()
|
|
{
|
|
return GET_BOOL("playQueueConfirmClear", true);
|
|
}
|
|
|
|
bool Settings::playListsStartClosed()
|
|
{
|
|
return GET_BOOL("playListsStartClosed", true);
|
|
}
|
|
|
|
#ifdef ENABLE_HTTP_STREAM_PLAYBACK
|
|
bool Settings::playStream()
|
|
{
|
|
return GET_BOOL("playStream", false);
|
|
}
|
|
#endif
|
|
|
|
#if defined CDDB_FOUND || defined MUSICBRAINZ5_FOUND
|
|
bool Settings::cdAuto()
|
|
{
|
|
return GET_BOOL("cdAuto", true);
|
|
}
|
|
|
|
bool Settings::paranoiaFull()
|
|
{
|
|
return GET_BOOL("paranoiaFull", true);
|
|
}
|
|
|
|
bool Settings::paranoiaNeverSkip()
|
|
{
|
|
return GET_BOOL("paranoiaNeverSkip", true);
|
|
}
|
|
#endif
|
|
|
|
#if defined CDDB_FOUND && defined MUSICBRAINZ5_FOUND
|
|
bool Settings::useCddb()
|
|
{
|
|
return GET_BOOL("useCddb", true);
|
|
}
|
|
#endif
|
|
|
|
#ifdef CDDB_FOUND
|
|
QString Settings::cddbHost()
|
|
{
|
|
return GET_STRING("cddbHost", QString("freedb.freedb.org"));
|
|
}
|
|
|
|
int Settings::cddbPort()
|
|
{
|
|
return GET_INT("cddbPort", 8880);
|
|
}
|
|
#endif
|
|
|
|
bool Settings::forceSingleClick()
|
|
{
|
|
return GET_BOOL("forceSingleClick", true);
|
|
}
|
|
|
|
bool Settings::startHidden()
|
|
{
|
|
return GET_BOOL("startHidden", false);
|
|
}
|
|
|
|
bool Settings::monoSidebarIcons()
|
|
{
|
|
#ifdef Q_OS_WIN
|
|
return GET_BOOL("monoSidebarIcons", false);
|
|
#else
|
|
return GET_BOOL("monoSidebarIcons", true);
|
|
#endif
|
|
}
|
|
|
|
bool Settings::showTimeRemaining()
|
|
{
|
|
return GET_BOOL("showTimeRemaining", false);
|
|
}
|
|
|
|
QStringList Settings::hiddenStreamCategories()
|
|
{
|
|
return GET_STRINGLIST("hiddenStreamCategories", QStringList());
|
|
}
|
|
|
|
QStringList Settings::hiddenOnlineProviders()
|
|
{
|
|
return GET_STRINGLIST("hiddenOnlineProviders", QStringList());
|
|
}
|
|
|
|
#ifndef Q_OS_WIN32
|
|
bool Settings::inhibitSuspend()
|
|
{
|
|
return GET_BOOL("inhibitSuspend", false);
|
|
}
|
|
#endif
|
|
|
|
int Settings::rssUpdate()
|
|
{
|
|
static int constMax=7*24*60;
|
|
int v=GET_INT("rssUpdate", 0);
|
|
return RESTRICT(v, 0, constMax);
|
|
}
|
|
|
|
QDateTime Settings::lastRssUpdate()
|
|
{
|
|
return GET_DATE_TIME("lastRssUpdate");
|
|
}
|
|
|
|
QString Settings::podcastDownloadPath()
|
|
{
|
|
return Utils::fixPath(GET_STRING("podcastDownloadPath", Utils::fixPath(QDir::homePath())+QLatin1String("Podcasts/")));
|
|
}
|
|
|
|
bool Settings::podcastAutoDownload()
|
|
{
|
|
return GET_BOOL("podcastAutoDownload", false);
|
|
}
|
|
|
|
int Settings::maxCoverFindPerIteration()
|
|
{
|
|
int v=GET_INT("maxCoverFindPerIteration", 5);
|
|
return RESTRICT(v, 0, 20);
|
|
}
|
|
|
|
int Settings::maxCoverUpdatePerIteration()
|
|
{
|
|
int v=GET_INT("maxCoverUpdatePerIteration", 5);
|
|
return RESTRICT(v, 1, 20);
|
|
}
|
|
|
|
QStringList Settings::cueFileCodecs()
|
|
{
|
|
return GET_STRINGLIST("cueFileCodecs", QStringList());
|
|
}
|
|
|
|
bool Settings::networkAccessEnabled()
|
|
{
|
|
return GET_BOOL("networkAccessEnabled", true);
|
|
}
|
|
|
|
int Settings::volumeStep()
|
|
{
|
|
int v=GET_INT("volumeStep", 5);
|
|
return RESTRICT(v, 1, 20);
|
|
}
|
|
|
|
Settings::StartupState Settings::startupState()
|
|
{
|
|
return getStartupState(GET_STRING("startupState", getStartupStateStr(SS_Previous)));
|
|
}
|
|
|
|
int Settings::undoSteps()
|
|
{
|
|
int v=GET_INT("undoSteps", 10);
|
|
return RESTRICT(v, 0, 20);
|
|
}
|
|
|
|
QString Settings::searchCategory()
|
|
{
|
|
return GET_STRING("searchCategory", QString());
|
|
}
|
|
|
|
bool Settings::cacheScaledCovers()
|
|
{
|
|
return GET_BOOL("cacheScaledCovers", true);
|
|
}
|
|
|
|
bool Settings::fetchCovers()
|
|
{
|
|
return GET_BOOL("fetchCovers", true);
|
|
}
|
|
|
|
int Settings::mpdPoll()
|
|
{
|
|
int v=GET_INT("mpdPoll", 0);
|
|
return RESTRICT(v, 0, 60);
|
|
}
|
|
|
|
int Settings::mpdListSize()
|
|
{
|
|
int v=GET_INT("mpdListSize", 10000);
|
|
return RESTRICT(v, 100, 65535);
|
|
}
|
|
|
|
#ifndef ENABLE_KDE_SUPPORT
|
|
QString Settings::lang()
|
|
{
|
|
return GET_STRING("lang", QString());
|
|
}
|
|
#endif
|
|
|
|
bool Settings::alwaysUseLsInfo()
|
|
{
|
|
return GET_BOOL("alwaysUseLsInfo", false);
|
|
}
|
|
|
|
void Settings::removeConnectionDetails(const QString &v)
|
|
{
|
|
if (v==currentConnection()) {
|
|
saveCurrentConnection(QString());
|
|
}
|
|
REMOVE_GROUP(MPDConnectionDetails::configGroupName(v));
|
|
#ifdef ENABLE_KDE_SUPPORT
|
|
KGlobal::config()->sync();
|
|
#endif
|
|
modified=true;
|
|
}
|
|
|
|
void Settings::saveConnectionDetails(const MPDConnectionDetails &v)
|
|
{
|
|
if (v.name.isEmpty()) {
|
|
REMOVE_ENTRY("connectionHost");
|
|
REMOVE_ENTRY("connectionPasswd");
|
|
REMOVE_ENTRY("connectionPort");
|
|
REMOVE_ENTRY("mpdDir");
|
|
}
|
|
|
|
QString n=MPDConnectionDetails::configGroupName(v.name);
|
|
#ifdef ENABLE_KDE_SUPPORT
|
|
KConfigGroup grp(KGlobal::config(), n);
|
|
CFG_SET_VALUE(grp, "host", v.hostname);
|
|
CFG_SET_VALUE(grp, "port", (int)v.port);
|
|
CFG_SET_VALUE(grp, "dir", v.dir);
|
|
CFG_SET_VALUE(grp, "dynamizerPort", (int)v.dynamizerPort);
|
|
CFG_SET_VALUE(grp, "coverName", v.coverName);
|
|
#ifdef ENABLE_HTTP_STREAM_PLAYBACK
|
|
CFG_SET_VALUE(grp, "streamUrl", v.streamUrl);
|
|
#endif
|
|
#ifdef ENABLE_KWALLET
|
|
if (KWallet::Wallet::isEnabled()) {
|
|
CFG_SET_VALUE(grp, "passwd", !v.password.isEmpty());
|
|
QString walletEntry=v.name.isEmpty() ? "mpd" : v.name;
|
|
if (v.password.isEmpty()) {
|
|
if (wallet) {
|
|
wallet->removeEntry(walletEntry);
|
|
}
|
|
}
|
|
else if (openWallet()) {
|
|
wallet->writePassword(walletEntry, v.password);
|
|
}
|
|
} else
|
|
#endif // ENABLE_KWALLET
|
|
{
|
|
CFG_SET_VALUE(grp, "pass", v.password);
|
|
}
|
|
#else
|
|
cfg.beginGroup(n);
|
|
SET_VALUE("host", v.hostname);
|
|
SET_VALUE("port", (int)v.port);
|
|
SET_VALUE("dir", v.dir);
|
|
SET_VALUE("passwd", v.password);
|
|
SET_VALUE("dynamizerPort", (int)v.dynamizerPort);
|
|
SET_VALUE("coverName", v.coverName);
|
|
#ifdef ENABLE_HTTP_STREAM_PLAYBACK
|
|
SET_VALUE("streamUrl", v.streamUrl);
|
|
#endif
|
|
cfg.endGroup();
|
|
#endif
|
|
modified=true;
|
|
}
|
|
|
|
#define SET_VALUE_MOD(KEY) if (v!=KEY()) { modified=true; SET_VALUE(#KEY, v); }
|
|
#define SET_ITEMVIEW_MODE_VALUE_MOD(KEY) if (v!=KEY()) { modified=true; SET_VALUE(#KEY, ItemView::modeStr((ItemView::Mode)v)); }
|
|
#define SET_STARTUPSTATE_VALUE_MOD(KEY) if (v!=KEY()) { modified=true; SET_VALUE(#KEY, getStartupStateStr((StartupState)v)); }
|
|
|
|
void Settings::saveCurrentConnection(const QString &v)
|
|
{
|
|
SET_VALUE_MOD(currentConnection)
|
|
}
|
|
|
|
void Settings::saveShowPlaylist(bool v)
|
|
{
|
|
SET_VALUE_MOD(showPlaylist)
|
|
}
|
|
|
|
void Settings::saveShowFullScreen(bool v)
|
|
{
|
|
SET_VALUE_MOD(showFullScreen)
|
|
}
|
|
|
|
void Settings::saveHeaderState(const QString &key, const QByteArray &v)
|
|
{
|
|
QByteArray current=headerState(key);
|
|
if (current!=v) {
|
|
modified=true;
|
|
SET_VALUE(key+"HeaderState", v);
|
|
}
|
|
}
|
|
|
|
void Settings::saveSplitterState(const QByteArray &v)
|
|
{
|
|
SET_VALUE_MOD(splitterState)
|
|
}
|
|
|
|
void Settings::saveSplitterAutoHide(bool v)
|
|
{
|
|
SET_VALUE_MOD(splitterAutoHide)
|
|
}
|
|
|
|
void Settings::saveMainWindowSize(const QSize &v)
|
|
{
|
|
SET_VALUE_MOD(mainWindowSize)
|
|
}
|
|
|
|
void Settings::saveMainWindowCollapsedSize(const QSize &v)
|
|
{
|
|
SET_VALUE_MOD(mainWindowCollapsedSize)
|
|
}
|
|
|
|
void Settings::saveUseSystemTray(bool v)
|
|
{
|
|
SET_VALUE_MOD(useSystemTray)
|
|
}
|
|
|
|
void Settings::saveMinimiseOnClose(bool v)
|
|
{
|
|
SET_VALUE_MOD(minimiseOnClose)
|
|
}
|
|
|
|
void Settings::saveShowPopups(bool v)
|
|
{
|
|
SET_VALUE_MOD(showPopups)
|
|
}
|
|
|
|
void Settings::saveStopOnExit(bool v)
|
|
{
|
|
SET_VALUE_MOD(stopOnExit)
|
|
}
|
|
|
|
void Settings::saveStopDynamizerOnExit(bool v)
|
|
{
|
|
SET_VALUE_MOD(stopDynamizerOnExit)
|
|
}
|
|
|
|
void Settings::saveStoreCoversInMpdDir(bool v)
|
|
{
|
|
SET_VALUE_MOD(storeCoversInMpdDir)
|
|
}
|
|
|
|
void Settings::saveStoreLyricsInMpdDir(bool v)
|
|
{
|
|
SET_VALUE_MOD(storeLyricsInMpdDir)
|
|
}
|
|
|
|
void Settings::saveStoreStreamsInMpdDir(bool v)
|
|
{
|
|
SET_VALUE_MOD(storeStreamsInMpdDir)
|
|
}
|
|
|
|
|
|
void Settings::saveStoreBackdropsInMpdDir(bool v)
|
|
{
|
|
SET_VALUE_MOD(storeBackdropsInMpdDir)
|
|
}
|
|
|
|
void Settings::saveLibraryView(int v)
|
|
{
|
|
SET_ITEMVIEW_MODE_VALUE_MOD(libraryView)
|
|
}
|
|
|
|
void Settings::saveAlbumsView(int v)
|
|
{
|
|
SET_ITEMVIEW_MODE_VALUE_MOD(albumsView)
|
|
}
|
|
|
|
void Settings::saveFolderView(int v)
|
|
{
|
|
SET_ITEMVIEW_MODE_VALUE_MOD(folderView)
|
|
}
|
|
|
|
void Settings::savePlaylistsView(int v)
|
|
{
|
|
SET_ITEMVIEW_MODE_VALUE_MOD(playlistsView)
|
|
}
|
|
|
|
void Settings::saveStreamsView(int v)
|
|
{
|
|
SET_ITEMVIEW_MODE_VALUE_MOD(streamsView)
|
|
}
|
|
|
|
void Settings::saveOnlineView(int v)
|
|
{
|
|
SET_ITEMVIEW_MODE_VALUE_MOD(onlineView)
|
|
}
|
|
|
|
void Settings::saveLibraryArtistImage(bool v)
|
|
{
|
|
SET_VALUE_MOD(libraryArtistImage)
|
|
}
|
|
|
|
void Settings::saveLibraryCoverSize(int v)
|
|
{
|
|
SET_VALUE_MOD(libraryCoverSize)
|
|
}
|
|
|
|
void Settings::saveAlbumsCoverSize(int v)
|
|
{
|
|
SET_VALUE_MOD(albumsCoverSize)
|
|
}
|
|
|
|
void Settings::saveAlbumSort(int v)
|
|
{
|
|
SET_VALUE_MOD(albumSort)
|
|
}
|
|
|
|
void Settings::saveSidebar(int v)
|
|
{
|
|
SET_VALUE_MOD(sidebar)
|
|
}
|
|
|
|
void Settings::saveLibraryYear(bool v)
|
|
{
|
|
SET_VALUE_MOD(libraryYear)
|
|
}
|
|
|
|
void Settings::saveGroupSingle(bool v)
|
|
{
|
|
SET_VALUE_MOD(groupSingle)
|
|
}
|
|
|
|
void Settings::saveGroupMultiple(bool v)
|
|
{
|
|
SET_VALUE_MOD(groupMultiple)
|
|
}
|
|
|
|
void Settings::saveUseComposer(bool v)
|
|
{
|
|
SET_VALUE_MOD(useComposer)
|
|
}
|
|
|
|
void Settings::saveLyricProviders(const QStringList &v)
|
|
{
|
|
SET_VALUE_MOD(lyricProviders)
|
|
}
|
|
|
|
void Settings::saveWikipediaLangs(const QStringList &v)
|
|
{
|
|
SET_VALUE_MOD(wikipediaLangs)
|
|
}
|
|
|
|
void Settings::saveWikipediaIntroOnly(bool v)
|
|
{
|
|
SET_VALUE_MOD(wikipediaIntroOnly)
|
|
}
|
|
|
|
void Settings::saveContextBackdrop(int v)
|
|
{
|
|
SET_VALUE_MOD(contextBackdrop)
|
|
}
|
|
|
|
void Settings::saveContextBackdropOpacity(int v)
|
|
{
|
|
SET_VALUE_MOD(contextBackdropOpacity)
|
|
}
|
|
|
|
void Settings::saveContextBackdropBlur(int v)
|
|
{
|
|
SET_VALUE_MOD(contextBackdropBlur)
|
|
}
|
|
|
|
void Settings::saveContextBackdropFile(const QString &v)
|
|
{
|
|
SET_VALUE_MOD(contextBackdropFile)
|
|
}
|
|
|
|
void Settings::saveContextDarkBackground(bool v)
|
|
{
|
|
SET_VALUE_MOD(contextDarkBackground)
|
|
}
|
|
|
|
void Settings::saveContextZoom(int v)
|
|
{
|
|
SET_VALUE_MOD(contextZoom)
|
|
}
|
|
|
|
void Settings::saveContextSlimPage(const QString &v)
|
|
{
|
|
SET_VALUE_MOD(contextSlimPage)
|
|
}
|
|
|
|
void Settings::saveContextSplitterState(const QByteArray &v)
|
|
{
|
|
SET_VALUE_MOD(contextSplitterState)
|
|
}
|
|
|
|
void Settings::saveContextAlwaysCollapsed(bool v)
|
|
{
|
|
SET_VALUE_MOD(contextAlwaysCollapsed)
|
|
}
|
|
|
|
void Settings::savePage(const QString &v)
|
|
{
|
|
SET_VALUE_MOD(page)
|
|
}
|
|
|
|
void Settings::saveHiddenPages(const QStringList &v)
|
|
{
|
|
SET_VALUE_MOD(hiddenPages)
|
|
}
|
|
|
|
#ifndef ENABLE_KDE_SUPPORT
|
|
void Settings::saveMediaKeysIface(const QString &v)
|
|
{
|
|
SET_VALUE_MOD(mediaKeysIface)
|
|
}
|
|
#endif
|
|
|
|
#ifdef ENABLE_DEVICES_SUPPORT
|
|
void Settings::saveOverwriteSongs(bool v)
|
|
{
|
|
SET_VALUE_MOD(overwriteSongs)
|
|
}
|
|
|
|
void Settings::saveShowDeleteAction(bool v)
|
|
{
|
|
SET_VALUE_MOD(showDeleteAction)
|
|
}
|
|
|
|
void Settings::saveDevicesView(int v)
|
|
{
|
|
SET_ITEMVIEW_MODE_VALUE_MOD(devicesView)
|
|
}
|
|
#endif
|
|
|
|
void Settings::saveSearchView(int v)
|
|
{
|
|
SET_ITEMVIEW_MODE_VALUE_MOD(searchView)
|
|
}
|
|
|
|
void Settings::saveStopFadeDuration(int v)
|
|
{
|
|
if (v<=MinFade) {
|
|
v=0;
|
|
} else if (v>MaxFade) {
|
|
v=MaxFade;
|
|
}
|
|
SET_VALUE_MOD(stopFadeDuration)
|
|
}
|
|
|
|
void Settings::saveHttpAllocatedPort(int v)
|
|
{
|
|
SET_VALUE_MOD(httpAllocatedPort)
|
|
}
|
|
|
|
void Settings::saveHttpInterface(const QString &v)
|
|
{
|
|
SET_VALUE_MOD(httpInterface)
|
|
}
|
|
|
|
void Settings::savePlayQueueGrouped(bool v)
|
|
{
|
|
SET_VALUE_MOD(playQueueGrouped)
|
|
}
|
|
|
|
void Settings::savePlayQueueAutoExpand(bool v)
|
|
{
|
|
SET_VALUE_MOD(playQueueAutoExpand)
|
|
}
|
|
|
|
void Settings::savePlayQueueStartClosed(bool v)
|
|
{
|
|
SET_VALUE_MOD(playQueueStartClosed)
|
|
}
|
|
|
|
void Settings::savePlayQueueScroll(bool v)
|
|
{
|
|
SET_VALUE_MOD(playQueueScroll)
|
|
}
|
|
|
|
void Settings::savePlayQueueBackground(int v)
|
|
{
|
|
SET_VALUE_MOD(playQueueBackground)
|
|
}
|
|
|
|
void Settings::savePlayQueueBackgroundOpacity(int v)
|
|
{
|
|
SET_VALUE_MOD(playQueueBackgroundOpacity)
|
|
}
|
|
|
|
void Settings::savePlayQueueBackgroundBlur(int v)
|
|
{
|
|
SET_VALUE_MOD(playQueueBackgroundBlur)
|
|
}
|
|
|
|
void Settings::savePlayQueueBackgroundFile(const QString &v)
|
|
{
|
|
SET_VALUE_MOD(playQueueBackgroundFile)
|
|
}
|
|
|
|
void Settings::savePlayQueueConfirmClear(bool v)
|
|
{
|
|
SET_VALUE_MOD(playQueueConfirmClear);
|
|
}
|
|
|
|
void Settings::savePlayListsStartClosed(bool v)
|
|
{
|
|
SET_VALUE_MOD(playListsStartClosed)
|
|
}
|
|
|
|
#ifdef ENABLE_HTTP_STREAM_PLAYBACK
|
|
void Settings::savePlayStream(bool v)
|
|
{
|
|
SET_VALUE_MOD(playStream)
|
|
}
|
|
#endif
|
|
|
|
#if defined CDDB_FOUND || defined MUSICBRAINZ5_FOUND
|
|
void Settings::saveCdAuto(bool v)
|
|
{
|
|
SET_VALUE_MOD(cdAuto)
|
|
}
|
|
|
|
void Settings::saveParanoiaFull(bool v)
|
|
{
|
|
SET_VALUE_MOD(paranoiaFull)
|
|
}
|
|
|
|
void Settings::saveParanoiaNeverSkip(bool v)
|
|
{
|
|
SET_VALUE_MOD(paranoiaNeverSkip)
|
|
}
|
|
#endif
|
|
|
|
#if defined CDDB_FOUND && defined MUSICBRAINZ5_FOUND
|
|
void Settings::saveUseCddb(bool v)
|
|
{
|
|
SET_VALUE_MOD(useCddb)
|
|
}
|
|
#endif
|
|
|
|
#ifdef CDDB_FOUND
|
|
void Settings::saveCddbHost(const QString &v)
|
|
{
|
|
SET_VALUE_MOD(cddbHost)
|
|
}
|
|
|
|
void Settings::saveCddbPort(int v)
|
|
{
|
|
SET_VALUE_MOD(cddbPort)
|
|
}
|
|
#endif
|
|
|
|
void Settings::saveForceSingleClick(bool v)
|
|
{
|
|
SET_VALUE_MOD(forceSingleClick)
|
|
}
|
|
|
|
void Settings::saveStartHidden(bool v)
|
|
{
|
|
SET_VALUE_MOD(startHidden);
|
|
}
|
|
|
|
void Settings::saveMonoSidebarIcons(bool v)
|
|
{
|
|
SET_VALUE_MOD(monoSidebarIcons);
|
|
}
|
|
|
|
void Settings::saveShowTimeRemaining(bool v)
|
|
{
|
|
SET_VALUE_MOD(showTimeRemaining);
|
|
}
|
|
|
|
void Settings::saveHiddenStreamCategories(const QStringList &v)
|
|
{
|
|
SET_VALUE_MOD(hiddenStreamCategories);
|
|
}
|
|
|
|
void Settings::saveHiddenOnlineProviders(const QStringList &v)
|
|
{
|
|
SET_VALUE_MOD(hiddenOnlineProviders);
|
|
}
|
|
|
|
#ifndef Q_OS_WIN32
|
|
void Settings::saveInhibitSuspend(bool v)
|
|
{
|
|
SET_VALUE_MOD(inhibitSuspend);
|
|
}
|
|
#endif
|
|
|
|
void Settings::saveRssUpdate(int v)
|
|
{
|
|
SET_VALUE_MOD(rssUpdate);
|
|
}
|
|
|
|
void Settings::saveLastRssUpdate(const QDateTime &v)
|
|
{
|
|
SET_VALUE_MOD(lastRssUpdate);
|
|
}
|
|
|
|
void Settings::savePodcastDownloadPath(const QString &v)
|
|
{
|
|
SET_VALUE_MOD(podcastDownloadPath);
|
|
}
|
|
|
|
void Settings::savePodcastAutoDownload(bool v)
|
|
{
|
|
SET_VALUE_MOD(podcastAutoDownload);
|
|
}
|
|
|
|
void Settings::saveStartupState(int v)
|
|
{
|
|
SET_STARTUPSTATE_VALUE_MOD(startupState);
|
|
}
|
|
|
|
void Settings::saveSearchCategory(const QString &v)
|
|
{
|
|
SET_VALUE_MOD(searchCategory);
|
|
}
|
|
|
|
void Settings::saveCacheScaledCovers(bool v)
|
|
{
|
|
SET_VALUE_MOD(cacheScaledCovers);
|
|
}
|
|
|
|
void Settings::saveFetchCovers(bool v)
|
|
{
|
|
SET_VALUE_MOD(fetchCovers);
|
|
}
|
|
|
|
#ifndef ENABLE_KDE_SUPPORT
|
|
void Settings::saveLang(const QString &v)
|
|
{
|
|
SET_VALUE_MOD(lang);
|
|
}
|
|
#endif
|
|
|
|
void Settings::save(bool force)
|
|
{
|
|
if (force) {
|
|
if (version()!=PACKAGE_VERSION || isFirstRun) {
|
|
modified=true;
|
|
SET_VALUE("version", PACKAGE_VERSION_STRING);
|
|
ver=PACKAGE_VERSION;
|
|
}
|
|
if (modified) {
|
|
modified=false;
|
|
CFG_SYNC;
|
|
}
|
|
if (timer) {
|
|
timer->stop();
|
|
}
|
|
} else {
|
|
if (!timer) {
|
|
timer=new QTimer(this);
|
|
connect(timer, SIGNAL(timeout()), this, SLOT(actualSave()));
|
|
}
|
|
timer->start(30*1000);
|
|
}
|
|
}
|
|
|
|
void Settings::actualSave()
|
|
{
|
|
save(true);
|
|
}
|