Files
cantata/gui/preferencesdialog.h
craig.p.drummond 9f45d6237f Last.fm scrobbling support.
BUG: 352
2014-05-17 09:45:10 +00:00

112 lines
2.6 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.
*/
#ifndef PREFERENCES_DIALOG_H
#define PREFERENCES_DIALOG_H
#include "config.h"
#include "support/dialog.h"
#include "support/pagewidget.h"
#ifndef ENABLE_KDE_SUPPORT
class ProxySettings;
class ShortcutsSettingsPage;
#endif
class ServerSettings;
class PlaybackSettings;
class FileSettings;
class InterfaceSettings;
#ifdef ENABLE_STREAMS
class StreamsSettings;
#endif
#ifdef ENABLE_ONLINE_SERVICES
class OnlineSettings;
#endif
class ContextSettings;
class HttpServerSettings;
struct MPDConnectionDetails;
class CacheSettings;
#if defined CDDB_FOUND || defined MUSICBRAINZ5_FOUND
class AudioCdSettings;
#endif
class QStringList;
#ifdef ENABLE_PROXY_CONFIG
class ProxySettings;
#endif
class ScrobblingSettings;
class PreferencesDialog : public Dialog
{
Q_OBJECT
public:
static int instanceCount();
PreferencesDialog(QWidget *parent);
virtual ~PreferencesDialog();
private:
void slotButtonClicked(int button);
public Q_SLOTS:
void showPage(const QString &page);
private Q_SLOTS:
void writeSettings();
Q_SIGNALS:
void settingsSaved();
private:
PageWidget *pageWidget;
ServerSettings *server;
PlaybackSettings *playback;
FileSettings *files;
InterfaceSettings *interface;
#ifdef ENABLE_STREAMS
StreamsSettings *streams;
#endif
#ifdef ENABLE_ONLINE_SERVICES
OnlineSettings *online;
#endif
ContextSettings *context;
#ifdef ENABLE_HTTP_SERVER
HttpServerSettings *http;
#endif
#ifdef ENABLE_PROXY_CONFIG
ProxySettings *proxy;
#endif
#ifndef ENABLE_KDE_SUPPORT
ShortcutsSettingsPage *shortcuts;
#endif
CacheSettings *cache;
#if defined CDDB_FOUND || defined MUSICBRAINZ5_FOUND
AudioCdSettings *audiocd;
#endif
ScrobblingSettings *scrobbling;
QMap<QString, PageWidgetItem *> pages;
};
#endif