1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-09-02 10:24:01 +02:00

First batch of CamelCasing

This commit is contained in:
Jeff Mitchell
2012-04-21 17:41:43 -04:00
parent e4d6b1785c
commit 11895fc198
141 changed files with 187 additions and 189 deletions

119
src/SettingsDialog.h Normal file
View File

@@ -0,0 +1,119 @@
/* === 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 LoadingSpinner;
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 slots:
void proxyTypeChangedSlot( int index );
private:
Ui::ProxyDialog* ui;
QHash<int,int> m_forwardMap;
QHash<int,int> m_backwardMap;
};
class SettingsDialog : public QDialog
{
Q_OBJECT
public:
explicit SettingsDialog( QWidget* parent = 0 );
~SettingsDialog();
protected:
void changeEvent( QEvent* e );
private slots:
void onRejected();
void toggleUpnp( bool preferStaticEnabled );
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;
Tomahawk::Accounts::AccountModel* m_accountModel;
Tomahawk::Accounts::AccountModelFilterProxy* m_accountProxy;
LoadingSpinner* m_sipSpinner;
};
#endif // SETTINGSDIALOG_H