mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
Merge pull request #7236 from lioncash/fwd
DolphinQt/Settings: Replace includes with forward declarations
This commit is contained in:
commit
b9960777a7
@ -13,6 +13,9 @@
|
|||||||
#include <QProgressBar>
|
#include <QProgressBar>
|
||||||
#include <QVBoxLayout>
|
#include <QVBoxLayout>
|
||||||
|
|
||||||
|
#include "Core/NetPlayClient.h"
|
||||||
|
#include "Core/NetPlayServer.h"
|
||||||
|
|
||||||
#include "DolphinQt/Settings.h"
|
#include "DolphinQt/Settings.h"
|
||||||
|
|
||||||
static QString GetPlayerNameFromPID(int pid)
|
static QString GetPlayerNameFromPID(int pid)
|
||||||
|
@ -3,15 +3,17 @@
|
|||||||
// Refer to the license.txt file included.
|
// Refer to the license.txt file included.
|
||||||
|
|
||||||
#include "DolphinQt/NetPlay/PadMappingDialog.h"
|
#include "DolphinQt/NetPlay/PadMappingDialog.h"
|
||||||
#include "DolphinQt/Settings.h"
|
|
||||||
|
|
||||||
#include "Core/NetPlayClient.h"
|
|
||||||
|
|
||||||
#include <QComboBox>
|
#include <QComboBox>
|
||||||
#include <QDialogButtonBox>
|
#include <QDialogButtonBox>
|
||||||
#include <QGridLayout>
|
#include <QGridLayout>
|
||||||
#include <QLabel>
|
#include <QLabel>
|
||||||
|
|
||||||
|
#include "Core/NetPlayClient.h"
|
||||||
|
#include "Core/NetPlayServer.h"
|
||||||
|
|
||||||
|
#include "DolphinQt/Settings.h"
|
||||||
|
|
||||||
PadMappingDialog::PadMappingDialog(QWidget* parent) : QDialog(parent)
|
PadMappingDialog::PadMappingDialog(QWidget* parent) : QDialog(parent)
|
||||||
{
|
{
|
||||||
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
||||||
|
@ -19,6 +19,8 @@
|
|||||||
#include "Core/Config/MainSettings.h"
|
#include "Core/Config/MainSettings.h"
|
||||||
#include "Core/ConfigManager.h"
|
#include "Core/ConfigManager.h"
|
||||||
#include "Core/Core.h"
|
#include "Core/Core.h"
|
||||||
|
#include "Core/NetPlayClient.h"
|
||||||
|
#include "Core/NetPlayServer.h"
|
||||||
|
|
||||||
#include "DolphinQt/GameList/GameListModel.h"
|
#include "DolphinQt/GameList/GameListModel.h"
|
||||||
#include "DolphinQt/QtUtils/QueueOnObject.h"
|
#include "DolphinQt/QtUtils/QueueOnObject.h"
|
||||||
@ -38,6 +40,8 @@ Settings::Settings()
|
|||||||
SetCurrentUserStyle(GetCurrentUserStyle());
|
SetCurrentUserStyle(GetCurrentUserStyle());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Settings::~Settings() = default;
|
||||||
|
|
||||||
Settings& Settings::Instance()
|
Settings& Settings::Instance()
|
||||||
{
|
{
|
||||||
static Settings settings;
|
static Settings settings;
|
||||||
|
@ -11,9 +11,6 @@
|
|||||||
#include <QSettings>
|
#include <QSettings>
|
||||||
#include <QVector>
|
#include <QVector>
|
||||||
|
|
||||||
#include "Core/NetPlayClient.h"
|
|
||||||
#include "Core/NetPlayServer.h"
|
|
||||||
|
|
||||||
namespace Core
|
namespace Core
|
||||||
{
|
{
|
||||||
enum class State;
|
enum class State;
|
||||||
@ -24,6 +21,12 @@ namespace DiscIO
|
|||||||
enum class Language;
|
enum class Language;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace NetPlay
|
||||||
|
{
|
||||||
|
class NetPlayClient;
|
||||||
|
class NetPlayServer;
|
||||||
|
}
|
||||||
|
|
||||||
class GameListModel;
|
class GameListModel;
|
||||||
class InputConfig;
|
class InputConfig;
|
||||||
class QFont;
|
class QFont;
|
||||||
@ -39,6 +42,8 @@ public:
|
|||||||
Settings(Settings&&) = delete;
|
Settings(Settings&&) = delete;
|
||||||
Settings& operator=(Settings&&) = delete;
|
Settings& operator=(Settings&&) = delete;
|
||||||
|
|
||||||
|
~Settings();
|
||||||
|
|
||||||
static Settings& Instance();
|
static Settings& Instance();
|
||||||
static QSettings& GetQSettings();
|
static QSettings& GetQSettings();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user