mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 05:37:11 +00:00
d041f9bde0
- Bug 1149728. Move CreateXForOffscreen functions. r=jrmuizel (87d69e4b7c) - missing part of Bug 1179280. Update ANGLE (ee6228fa90) - missing bit of Bug 1191042 - Use CreateOffscreen for WebGL instead of CreateHeadless. - r=jrmuizel (87c26edf2c) - add back XP bits (f198a909bd) - put back SQLITE_ENABLE_DBSTAT_VTAB checks (a06fd5b7a9) - Bug 1197387 - Use glXGetProcAddress to link against GLX_ARB_create_context_robustness. r=jgilbert (651b85207d) - add back feature report (a0a33bb8e5) - Bug 1209022 - Fix AA handling in EGL's CreateOffscreen. - r=jrmuizel (64d4e0f65a) - Bug 1171228 - Expose WEBGL_debug_renderer_info to web content on non-RELEASE_BUILDs. - r=kamidphish, sr=jst (e7405ef944) - Bug 1175257 - Remove the fails-if(B2G) annotation on capturestream.html. (80bf24c623) - Bug 1177726 - Inflate the bounds when stroking the canvas text. r=jmuizelaar (15969cb828) - Bug 1183363 - Make EnsureWritablePath and EnsureUserSpacePath always imply EnsureTarget. r=Basimply EnsureTarget. r=Bas (12d825cf30) - Bug 1183363 - Add canvas crashtest. r=Bas (69b6099607) - Bug 1186689 - check for OOM on destination array before mapping source to avoid needing unmap. r=bas (7a3ed105d6) - Bug 1206161 - Make sure the DrawTarget is available when creating a CanvasLayer so that we can check for SkiaGL. r=Bas (fdf15fd552) - Bug 232227 - Do not expose system colors to CSS or canvas. r=jmuizelaar r=enndeakin tor-r=arthuredelstein (dfd6f07fd8) - Bug 1209206 (part 1) - Remove mgfx namespace synonym. (5916056863) - Bug 1209206 (part 2) - Rename and re-comment HasNonOpaqueColor(). r=jdaggett. (768a0d549b) - Bug 1209206 (part 3) - Use sinf() and cosf() instead of sin() and cos() in a couple of places. r=Bas. (7af9ebaa7f) - No bug - Remove outdated comment and additional comment questioning its relevance. r=me DONTBUILD (6f7eca8452) - Bug 1145934 - Update obsolete glyph-run assertion. r=jdaggett (ce2442e64b) - Bug 1182361 p1 - move old generic lookup methods into gfxPangoFontGroup. r=heycam (ef39e6fd52) - Bug 1182361 p2 - count generic lookups. r=heycam (53050ad6e8) - bug 1180010 make some methods protected and non-virtual r=jdaggett (815e503481) - Bug 1165179 - use all style matched faces within a font family. r=heycam (d2711db48b) - Bug 1182361 p3 - move generic lookup methods to platform fontlist. r=heycam (63b974a000) - Bug 1182361 p4 - move pref font util methods to platform fontlist. r=heycam (23d7352442) - Bug 1182361 p5 - cache pref fonts per langGroup. r=heycam (c4244432cb) - Bug 1182361 p6 - eliminate old pref font caching. r=heycam (c5293f0b8d) - Bug 1182361 p7 - fixups based on review comments. r=heycam (51a2204179) - Bug 1170688 - Move initialization of text-run parameters until *after* the draw target has been updated; r=jfkthame (e523ff6e96) - Bug 1157629 - Fix uninitialized member warning in BufferAlphaColor. r=jdaggett (a564effd24) - Bug 1184282 - Remove break suggested inside cluster warning. r=roc (54da46a09f) - Bug 1197650 - remove duplicate validity check for newly created fonts. r=m_kato (5ffb28a313) - Bug 1171357 - log font matching for textruns. r=m_kato (2354cd36f6) - Bug 1185812 - rejigger the ordering of fonts within a family to avoid obscure faces. r=heycam (0518f4ef64) - Bug 1167697 - Mark refs to gfxFontEntry in UserFontCache as MOZ_NON_OWNING_REF. r=jtd (1fdcccdac2) - bits of Bug 1073209 - Eliminate usage of CreateSamplingRestrictedDrawable (9058557527) - and sync gfx/gl to same state as af-frontend branch
120 lines
3.7 KiB
C++
120 lines
3.7 KiB
C++
/* -*- Mode: C++; tab-width: 4; 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/. */
|
|
|
|
#ifndef __nsXPLookAndFeel
|
|
#define __nsXPLookAndFeel
|
|
|
|
#include "mozilla/LookAndFeel.h"
|
|
#include "nsTArray.h"
|
|
|
|
class nsLookAndFeel;
|
|
|
|
struct nsLookAndFeelIntPref
|
|
{
|
|
const char* name;
|
|
mozilla::LookAndFeel::IntID id;
|
|
bool isSet;
|
|
int32_t intVar;
|
|
};
|
|
|
|
struct nsLookAndFeelFloatPref
|
|
{
|
|
const char* name;
|
|
mozilla::LookAndFeel::FloatID id;
|
|
bool isSet;
|
|
float floatVar;
|
|
};
|
|
|
|
#define CACHE_BLOCK(x) ((x) >> 5)
|
|
#define CACHE_BIT(x) (1 << ((x) & 31))
|
|
|
|
#define COLOR_CACHE_SIZE (CACHE_BLOCK(LookAndFeel::eColorID_LAST_COLOR) + 1)
|
|
#define IS_COLOR_CACHED(x) (CACHE_BIT(x) & nsXPLookAndFeel::sCachedColorBits[CACHE_BLOCK(x)])
|
|
#define CLEAR_COLOR_CACHE(x) nsXPLookAndFeel::sCachedColors[(x)] =0; \
|
|
nsXPLookAndFeel::sCachedColorBits[CACHE_BLOCK(x)] &= ~(CACHE_BIT(x));
|
|
#define CACHE_COLOR(x, y) nsXPLookAndFeel::sCachedColors[(x)] = y; \
|
|
nsXPLookAndFeel::sCachedColorBits[CACHE_BLOCK(x)] |= CACHE_BIT(x);
|
|
|
|
class nsXPLookAndFeel: public mozilla::LookAndFeel
|
|
{
|
|
public:
|
|
virtual ~nsXPLookAndFeel();
|
|
|
|
static nsLookAndFeel* GetInstance();
|
|
static void Shutdown();
|
|
|
|
void Init();
|
|
|
|
//
|
|
// All these routines will return NS_OK if they have a value,
|
|
// in which case the nsLookAndFeel should use that value;
|
|
// otherwise we'll return NS_ERROR_NOT_AVAILABLE, in which case, the
|
|
// platform-specific nsLookAndFeel should use its own values instead.
|
|
//
|
|
nsresult GetColorImpl(ColorID aID, bool aUseStandinsForNativeColors,
|
|
nscolor &aResult);
|
|
virtual nsresult GetIntImpl(IntID aID, int32_t &aResult);
|
|
virtual nsresult GetFloatImpl(FloatID aID, float &aResult);
|
|
|
|
// This one is different: there are no override prefs (fixme?), so
|
|
// there is no XP implementation, only per-system impls.
|
|
virtual bool GetFontImpl(FontID aID, nsString& aName,
|
|
gfxFontStyle& aStyle,
|
|
float aDevPixPerCSSPixel) = 0;
|
|
|
|
virtual void RefreshImpl();
|
|
|
|
virtual char16_t GetPasswordCharacterImpl()
|
|
{
|
|
return char16_t('*');
|
|
}
|
|
|
|
virtual bool GetEchoPasswordImpl()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
virtual uint32_t GetPasswordMaskDelayImpl()
|
|
{
|
|
return 600;
|
|
}
|
|
|
|
virtual nsTArray<LookAndFeelInt> GetIntCacheImpl();
|
|
virtual void SetIntCacheImpl(const nsTArray<LookAndFeelInt>& aLookAndFeelIntCache) {}
|
|
|
|
protected:
|
|
nsXPLookAndFeel();
|
|
|
|
static void IntPrefChanged(nsLookAndFeelIntPref *data);
|
|
static void FloatPrefChanged(nsLookAndFeelFloatPref *data);
|
|
static void ColorPrefChanged(unsigned int index, const char *prefName);
|
|
void InitFromPref(nsLookAndFeelIntPref* aPref);
|
|
void InitFromPref(nsLookAndFeelFloatPref* aPref);
|
|
void InitColorFromPref(int32_t aIndex);
|
|
virtual nsresult NativeGetColor(ColorID aID, nscolor &aResult) = 0;
|
|
bool IsSpecialColor(ColorID aID, nscolor &aColor);
|
|
bool ColorIsNotCSSAccessible(ColorID aID);
|
|
nscolor GetStandinForNativeColor(ColorID aID);
|
|
|
|
static void OnPrefChanged(const char* aPref, void* aClosure);
|
|
|
|
static bool sInitialized;
|
|
static nsLookAndFeelIntPref sIntPrefs[];
|
|
static nsLookAndFeelFloatPref sFloatPrefs[];
|
|
/* this length must not be shorter than the length of the longest string in the array
|
|
* see nsXPLookAndFeel.cpp
|
|
*/
|
|
static const char sColorPrefs[][38];
|
|
static int32_t sCachedColors[LookAndFeel::eColorID_LAST_COLOR];
|
|
static int32_t sCachedColorBits[COLOR_CACHE_SIZE];
|
|
static bool sUseNativeColors;
|
|
static bool sUseStandinsForNativeColors;
|
|
|
|
static nsLookAndFeel* sInstance;
|
|
static bool sShutdown;
|
|
};
|
|
|
|
#endif
|