1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-07-31 11:20:22 +02:00
Files
tomahawk/src/SettingsDialog.h
Jeff Mitchell 3b332d6d12 Fix up the advanced settings dialog. Make it more clear whether
UPnP/Static/LAN-only is going to be used. Use a checkbox to enable proxy
since we'll likely never support anything other than socks -- at least,
not anytime soon. Group items in a nicer fashion.
2012-05-03 13:36:23 -04:00

117 lines
2.7 KiB
C++

/* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
*
* Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.org>
* Copyright 2010-2011, Leo Franchi <lfranchi@kde.org>
* Copyright 2010-2012, Jeff Mitchell <jeff@tomahawk-player.org>
*
* Tomahawk 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 3 of the License, or
* (at your option) any later version.
*
* Tomahawk 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 Tomahawk. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef SETTINGSDIALOG_H
#define SETTINGSDIALOG_H
#include <QtGui/QDialog>
#include <QtCore/QModelIndex>
#include "config.h"
class AnimatedSpinner;
class QListWidgetItem;
class Ui_StackedSettingsDialog;
class SipPlugin;
class ResolversModel;
class QNetworkReply;
namespace Ui
{
class SettingsDialog;
class ProxyDialog;
}
namespace Tomahawk
{
namespace Accounts
{
class AccountModel;
class Account;
class AccountFactory;
class Account;
class AccountModelFilterProxy;
}
}
class ProxyDialog : public QDialog
{
Q_OBJECT
public:
explicit ProxyDialog( QWidget* parent = 0 );
~ProxyDialog() {};
void saveSettings();
private:
Ui::ProxyDialog* ui;
};
class SettingsDialog : public QDialog
{
Q_OBJECT
public:
explicit SettingsDialog( QWidget* parent = 0 );
~SettingsDialog();
protected:
void changeEvent( QEvent* e );
private slots:
void onRejected();
void toggleRemoteMode();
void toggleProxyEnabled();
void showProxySettings();
void accountsFilterChanged( int );
void createAccountFromFactory( Tomahawk::Accounts::AccountFactory* );
void openAccountConfig( Tomahawk::Accounts::Account*, bool showDelete = false );
void openAccountFactoryConfig( Tomahawk::Accounts::AccountFactory* );
void installFromFile();
void scrollTo( const QModelIndex& );
void updateScanOptionsView();
void changePage( QListWidgetItem*, QListWidgetItem* );
void serventReady();
void requiresRestart();
private:
void createIcons();
Ui_StackedSettingsDialog* ui;
ProxyDialog m_proxySettings;
bool m_rejected;
bool m_restartRequired;
Tomahawk::Accounts::AccountModel* m_accountModel;
Tomahawk::Accounts::AccountModelFilterProxy* m_accountProxy;
AnimatedSpinner* m_sipSpinner;
};
#endif // SETTINGSDIALOG_H