2014-02-13 17:38:40 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "gfxPrefs.h"
|
|
|
|
|
|
|
|
#include "mozilla/Preferences.h"
|
|
|
|
#include "MainThreadUtils.h"
|
|
|
|
|
|
|
|
using namespace mozilla;
|
|
|
|
|
|
|
|
gfxPrefs* gfxPrefs::sInstance = nullptr;
|
|
|
|
|
|
|
|
void
|
2014-03-04 17:26:33 +00:00
|
|
|
gfxPrefs::DestroySingleton()
|
2014-02-13 17:38:40 +00:00
|
|
|
{
|
|
|
|
if (sInstance) {
|
|
|
|
delete sInstance;
|
|
|
|
sInstance = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2014-03-04 17:26:33 +00:00
|
|
|
gfxPrefs::SingletonExists()
|
2014-02-13 17:38:40 +00:00
|
|
|
{
|
|
|
|
return sInstance != nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
gfxPrefs::gfxPrefs()
|
|
|
|
{
|
|
|
|
// Needs to be created on the main thread.
|
|
|
|
MOZ_ASSERT(NS_IsMainThread(), "must be constructed on the main thread");
|
|
|
|
}
|
|
|
|
|
|
|
|
gfxPrefs::~gfxPrefs()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread(), "must be destructed on the main thread");
|
|
|
|
}
|
|
|
|
|
|
|
|
void gfxPrefs::PrefAddVarCache(bool* aVariable,
|
|
|
|
const char* aPref,
|
|
|
|
bool aDefault)
|
|
|
|
{
|
|
|
|
Preferences::AddBoolVarCache(aVariable, aPref, aDefault);
|
|
|
|
}
|
|
|
|
|
|
|
|
void gfxPrefs::PrefAddVarCache(int32_t* aVariable,
|
|
|
|
const char* aPref,
|
|
|
|
int32_t aDefault)
|
|
|
|
{
|
|
|
|
Preferences::AddIntVarCache(aVariable, aPref, aDefault);
|
|
|
|
}
|
|
|
|
|
|
|
|
void gfxPrefs::PrefAddVarCache(uint32_t* aVariable,
|
|
|
|
const char* aPref,
|
|
|
|
uint32_t aDefault)
|
|
|
|
{
|
|
|
|
Preferences::AddUintVarCache(aVariable, aPref, aDefault);
|
|
|
|
}
|
|
|
|
|
2014-03-03 16:53:21 +00:00
|
|
|
void gfxPrefs::PrefAddVarCache(float* aVariable,
|
|
|
|
const char* aPref,
|
|
|
|
float aDefault)
|
|
|
|
{
|
|
|
|
Preferences::AddFloatVarCache(aVariable, aPref, aDefault);
|
|
|
|
}
|
|
|
|
|
2014-02-13 17:38:40 +00:00
|
|
|
bool gfxPrefs::PrefGet(const char* aPref, bool aDefault)
|
|
|
|
{
|
2014-03-03 16:53:21 +00:00
|
|
|
return Preferences::GetBool(aPref, aDefault);
|
2014-02-13 17:38:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int32_t gfxPrefs::PrefGet(const char* aPref, int32_t aDefault)
|
|
|
|
{
|
2014-03-03 16:53:21 +00:00
|
|
|
return Preferences::GetInt(aPref, aDefault);
|
2014-02-13 17:38:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t gfxPrefs::PrefGet(const char* aPref, uint32_t aDefault)
|
|
|
|
{
|
2014-03-03 16:53:21 +00:00
|
|
|
return Preferences::GetUint(aPref, aDefault);
|
2014-02-13 17:38:40 +00:00
|
|
|
}
|
2014-03-03 16:53:21 +00:00
|
|
|
|
|
|
|
float gfxPrefs::PrefGet(const char* aPref, float aDefault)
|
|
|
|
{
|
|
|
|
return Preferences::GetFloat(aPref, aDefault);
|
|
|
|
}
|
|
|
|
|