2011-02-03 15:48:14 +01:00
|
|
|
#include "cpptoolssettings.h"
|
|
|
|
|
#include "cpptoolsconstants.h"
|
|
|
|
|
#include "cppcodestylepreferences.h"
|
|
|
|
|
|
|
|
|
|
#include <texteditor/texteditorsettings.h>
|
|
|
|
|
#include <texteditor/tabpreferences.h>
|
|
|
|
|
|
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
#include <QtCore/QSettings>
|
|
|
|
|
|
|
|
|
|
static const char *idKey = "CppGlobal";
|
|
|
|
|
|
|
|
|
|
using namespace CppTools;
|
|
|
|
|
|
|
|
|
|
namespace CppTools {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
class CppToolsSettingsPrivate
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
CppCodeStylePreferences *m_cppCodeStylePreferences;
|
|
|
|
|
TextEditor::TabPreferences *m_tabPreferences;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace CppTools
|
|
|
|
|
|
|
|
|
|
CppToolsSettings *CppToolsSettings::m_instance = 0;
|
|
|
|
|
|
|
|
|
|
CppToolsSettings::CppToolsSettings(QObject *parent)
|
|
|
|
|
: QObject(parent)
|
|
|
|
|
, m_d(new Internal::CppToolsSettingsPrivate)
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(!m_instance, return);
|
|
|
|
|
m_instance = this;
|
|
|
|
|
|
|
|
|
|
if (const QSettings *s = Core::ICore::instance()->settings()) {
|
|
|
|
|
TextEditor::TextEditorSettings *textEditorSettings = TextEditor::TextEditorSettings::instance();
|
2011-06-22 15:04:24 +02:00
|
|
|
TextEditor::TabPreferences *tabPrefs = textEditorSettings->tabPreferences();
|
2011-02-03 15:48:14 +01:00
|
|
|
m_d->m_tabPreferences
|
|
|
|
|
= new TextEditor::TabPreferences(QList<TextEditor::IFallbackPreferences *>()
|
2011-06-22 15:04:24 +02:00
|
|
|
<< tabPrefs, this);
|
|
|
|
|
m_d->m_tabPreferences->setCurrentFallback(tabPrefs);
|
|
|
|
|
m_d->m_tabPreferences->setFallbackEnabled(tabPrefs, false);
|
2011-02-03 15:48:14 +01:00
|
|
|
m_d->m_tabPreferences->fromSettings(CppTools::Constants::CPP_SETTINGS_ID, s);
|
2011-06-08 10:45:26 +02:00
|
|
|
m_d->m_tabPreferences->setDisplayName(tr("Global C++", "Settings"));
|
2011-02-03 15:48:14 +01:00
|
|
|
m_d->m_tabPreferences->setId(idKey);
|
|
|
|
|
textEditorSettings->registerLanguageTabPreferences(CppTools::Constants::CPP_SETTINGS_ID, m_d->m_tabPreferences);
|
|
|
|
|
|
|
|
|
|
m_d->m_cppCodeStylePreferences
|
|
|
|
|
= new CppCodeStylePreferences(QList<TextEditor::IFallbackPreferences *>(), this);
|
|
|
|
|
m_d->m_cppCodeStylePreferences->fromSettings(CppTools::Constants::CPP_SETTINGS_ID, s);
|
2011-06-08 10:45:26 +02:00
|
|
|
m_d->m_cppCodeStylePreferences->setDisplayName(tr("Global C++", "Settings"));
|
2011-02-03 15:48:14 +01:00
|
|
|
m_d->m_cppCodeStylePreferences->setId(idKey);
|
|
|
|
|
textEditorSettings->registerLanguageCodeStylePreferences(CppTools::Constants::CPP_SETTINGS_ID, m_d->m_cppCodeStylePreferences);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CppToolsSettings::~CppToolsSettings()
|
|
|
|
|
{
|
|
|
|
|
delete m_d;
|
|
|
|
|
|
|
|
|
|
m_instance = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CppToolsSettings *CppToolsSettings::instance()
|
|
|
|
|
{
|
|
|
|
|
return m_instance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CppCodeStylePreferences *CppToolsSettings::cppCodeStylePreferences() const
|
|
|
|
|
{
|
|
|
|
|
return m_d->m_cppCodeStylePreferences;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TextEditor::TabPreferences *CppToolsSettings::tabPreferences() const
|
|
|
|
|
{
|
|
|
|
|
return m_d->m_tabPreferences;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|