b=555133 Attempt to infer whether or not theme parts are transparent r=roc,rob sr=vlad

This commit is contained in:
Rob Arnold ext:(%20%26%20Robert%20O%27Callahan%20%3Crobert%40ocallahan.org%3E) 2010-06-11 10:53:57 +12:00
Родитель cc75c71979
Коммит 951a8a32a4
15 изменённых файлов: 66 добавлений и 39 удалений

Просмотреть файл

@ -59,8 +59,7 @@ class nsIAtom;
// IID for the nsITheme interface
// {887e8902-db6b-41b4-8481-a80f49c5a93a}
#define NS_ITHEME_IID \
{ 0x887e8902, 0xdb6b, 0x41b4, { 0x84, 0x81, 0xa8, 0x0f, 0x49, 0xc5, 0xa9, 0x3a } }
{ 0x23db7c13, 0x873d, 0x4fb5, { 0xaf, 0x29, 0xc1, 0xe9, 0xed, 0x91, 0x23, 0xf9 } }
// {D930E29B-6909-44e5-AB4B-AF10D6923705}
#define NS_THEMERENDERER_CID \
{ 0xd930e29b, 0x6909, 0x44e5, { 0xab, 0x4b, 0xaf, 0x10, 0xd6, 0x92, 0x37, 0x5 } }
@ -139,7 +138,18 @@ public:
nsIntSize* aResult,
PRBool* aIsOverridable)=0;
virtual nsTransparencyMode GetWidgetTransparency(PRUint8 aWidgetType)=0;
enum Transparency {
eOpaque = 0,
eTransparent,
eUnknownTransparency
};
/**
* Returns what we know about the transparency of the widget.
*/
virtual Transparency GetWidgetTransparency(nsIFrame* aFrame, PRUint8 aWidgetType)
{ return eUnknownTransparency; }
NS_IMETHOD WidgetStateChanged(nsIFrame* aFrame, PRUint8 aWidgetType,
nsIAtom* aAttribute, PRBool* aShouldRepaint)=0;

Просмотреть файл

@ -675,7 +675,7 @@ PRBool
nsDisplayBackground::IsOpaque(nsDisplayListBuilder* aBuilder) {
// theme background overrides any other background
if (mIsThemed)
return PR_FALSE;
return mThemeTransparency == nsITheme::eOpaque;
nsStyleContext *bgSC;
if (!nsCSSRendering::FindBackground(mFrame->PresContext(), mFrame, &bgSC))

Просмотреть файл

@ -1257,7 +1257,7 @@ private:
class nsDisplayBackground : public nsDisplayItem {
public:
nsDisplayBackground(nsIFrame* aFrame) : nsDisplayItem(aFrame) {
mIsThemed = mFrame->IsThemed();
mIsThemed = mFrame->IsThemed(&mThemeTransparency);
MOZ_COUNT_CTOR(nsDisplayBackground);
}
#ifdef NS_BUILD_REFCNT_LOGGING
@ -1278,8 +1278,9 @@ public:
virtual void Paint(nsDisplayListBuilder* aBuilder, nsIRenderingContext* aCtx);
NS_DISPLAY_DECL_NAME("Background")
private:
/* Used to cache mFrame->IsThemed() since it isn't a cheap call */
PRPackedBool mIsThemed;
/* Used to cache mFrame->IsThemed() since it isn't a cheap call */
PRPackedBool mIsThemed;
nsITheme::Transparency mThemeTransparency;
};
/**

Просмотреть файл

@ -3216,9 +3216,11 @@ nsLayoutUtils::GetFrameTransparency(nsIFrame* aBackgroundFrame,
if (HasNonZeroCorner(aCSSRootFrame->GetStyleContext()->GetStyleBorder()->mBorderRadius))
return eTransparencyTransparent;
nsTransparencyMode transparency;
nsITheme::Transparency transparency;
if (aCSSRootFrame->IsThemed(&transparency))
return transparency;
return transparency == nsITheme::eTransparent
? eTransparencyTransparent
: eTransparencyOpaque;
if (aCSSRootFrame->GetStyleDisplay()->mAppearance == NS_THEME_WIN_GLASS)
return eTransparencyGlass;

Просмотреть файл

@ -997,19 +997,20 @@ public:
*/
virtual nscolor GetCaretColorAt(PRInt32 aOffset);
PRBool IsThemed(nsTransparencyMode* aTransparencyMode = nsnull) {
return IsThemed(GetStyleDisplay(), aTransparencyMode);
PRBool IsThemed(nsITheme::Transparency* aTransparencyState = nsnull) {
return IsThemed(GetStyleDisplay(), aTransparencyState);
}
PRBool IsThemed(const nsStyleDisplay* aDisp,
nsTransparencyMode* aTransparencyMode = nsnull) {
nsITheme::Transparency* aTransparencyState = nsnull) {
if (!aDisp->mAppearance)
return PR_FALSE;
nsPresContext* pc = PresContext();
nsITheme *theme = pc->GetTheme();
if(!theme || !theme->ThemeSupportsWidget(pc, this, aDisp->mAppearance))
return PR_FALSE;
if (aTransparencyMode) {
*aTransparencyMode = theme->GetWidgetTransparency(aDisp->mAppearance);
if (aTransparencyState) {
*aTransparencyState = theme->GetWidgetTransparency(this, aDisp->mAppearance);
}
return PR_TRUE;
}

Просмотреть файл

@ -90,7 +90,7 @@ public:
PRBool WidgetIsContainer(PRUint8 aWidgetType);
PRBool ThemeDrawsFocusForWidget(nsPresContext* aPresContext, nsIFrame* aFrame, PRUint8 aWidgetType);
PRBool ThemeNeedsComboboxDropmarker();
virtual nsTransparencyMode GetWidgetTransparency(PRUint8 aWidgetType);
virtual Transparency GetWidgetTransparency(nsIFrame* aFrame, PRUint8 aWidgetType);
protected:

Просмотреть файл

@ -2480,12 +2480,12 @@ nsNativeThemeCocoa::ThemeNeedsComboboxDropmarker()
return PR_FALSE;
}
nsTransparencyMode
nsNativeThemeCocoa::GetWidgetTransparency(PRUint8 aWidgetType)
nsITheme::Transparency
nsNativeThemeCocoa::GetWidgetTransparency(nsIFrame* aFrame, PRUint8 aWidgetType)
{
if (aWidgetType == NS_THEME_MENUPOPUP ||
aWidgetType == NS_THEME_TOOLTIP)
return eTransparencyTransparent;
return eTransparent;
return eTransparencyOpaque;
return eUnknownTransparency;
}

Просмотреть файл

@ -1342,9 +1342,3 @@ nsNativeThemeGTK::ThemeNeedsComboboxDropmarker()
{
return PR_FALSE;
}
nsTransparencyMode
nsNativeThemeGTK::GetWidgetTransparency(PRUint8 aWidgetType)
{
return eTransparencyOpaque;
}

Просмотреть файл

@ -92,8 +92,6 @@ public:
PRBool ThemeNeedsComboboxDropmarker();
virtual nsTransparencyMode GetWidgetTransparency(PRUint8 aWidgetType);
nsNativeThemeGTK();
virtual ~nsNativeThemeGTK();

Просмотреть файл

@ -627,12 +627,6 @@ nsNativeThemeQt::ThemeNeedsComboboxDropmarker()
return PR_TRUE;
}
nsTransparencyMode
nsNativeThemeQt::GetWidgetTransparency(PRUint8 aWidgetType)
{
return eTransparencyOpaque;
}
void
nsNativeThemeQt::InitButtonStyle(PRUint8 aWidgetType,
nsIFrame* aFrame,

Просмотреть файл

@ -99,8 +99,6 @@ public:
PRBool ThemeNeedsComboboxDropmarker();
virtual nsTransparencyMode GetWidgetTransparency(PRUint8 aWidgetType);
nsNativeThemeQt();
virtual ~nsNativeThemeQt();

Просмотреть файл

@ -397,6 +397,13 @@ nsNativeThemeWin::IsMenuActive(nsIFrame *aFrame, PRUint8 aWidgetType)
return CheckBooleanAttr(aFrame, nsWidgetAtoms::mozmenuactive);
}
/**
* aPart is filled in with the UXTheme part code. On return, values > 0
* are the actual UXTheme part code; -1 means the widget will be drawn by
* us; 0 means that we should use part code 0, which isn't a real part code
* but elicits some kind of default behaviour from UXTheme when drawing
* (but isThemeBackgroundPartiallyTransparent may not work).
*/
nsresult
nsNativeThemeWin::GetThemePartAndState(nsIFrame* aFrame, PRUint8 aWidgetType,
PRInt32& aPart, PRInt32& aState)
@ -1776,10 +1783,28 @@ nsNativeThemeWin::ThemeNeedsComboboxDropmarker()
return PR_TRUE;
}
nsTransparencyMode
nsNativeThemeWin::GetWidgetTransparency(PRUint8 aWidgetType)
nsITheme::Transparency
nsNativeThemeWin::GetWidgetTransparency(nsIFrame* aFrame, PRUint8 aWidgetType)
{
return eTransparencyOpaque;
HANDLE theme = GetTheme(aWidgetType);
// For the classic theme we don't really have a way of knowing
if (!theme)
return eUnknownTransparency;
PRInt32 part, state;
nsresult rv = GetThemePartAndState(aFrame, aWidgetType, part, state);
// Fail conservatively
NS_ENSURE_SUCCESS(rv, eUnknownTransparency);
if (part <= 0) {
// Not a real part code, so isThemeBackgroundPartiallyTransparent may
// not work, so don't call it.
return eUnknownTransparency;
}
if (nsUXThemeData::isThemeBackgroundPartiallyTransparent(theme, part, state))
return eTransparent;
return eOpaque;
}
/* Windows 9x/NT/2000/Classic XP Theme Support */

Просмотреть файл

@ -78,7 +78,7 @@ public:
nsIntSize* aResult,
PRBool* aIsOverridable);
virtual nsTransparencyMode GetWidgetTransparency(PRUint8 aWidgetType);
virtual Transparency GetWidgetTransparency(nsIFrame* aFrame, PRUint8 aWidgetType);
NS_IMETHOD WidgetStateChanged(nsIFrame* aFrame, PRUint8 aWidgetType,
nsIAtom* aAttribute, PRBool* aShouldRepaint);

Просмотреть файл

@ -83,6 +83,7 @@ nsUXThemeData::GetThemeMarginsPtr nsUXThemeData::getThemeMargins = NULL;
nsUXThemeData::IsAppThemedPtr nsUXThemeData::isAppThemed = NULL;
nsUXThemeData::GetCurrentThemeNamePtr nsUXThemeData::getCurrentThemeName = NULL;
nsUXThemeData::GetThemeSysColorPtr nsUXThemeData::getThemeSysColor = NULL;
nsUXThemeData::IsThemeBackgroundPartiallyTransparentPtr nsUXThemeData::isThemeBackgroundPartiallyTransparent = NULL;
#if MOZ_WINSDK_TARGETVER >= MOZ_NTDDI_LONGHORN
nsUXThemeData::DwmExtendFrameIntoClientAreaProc nsUXThemeData::dwmExtendFrameIntoClientAreaPtr = NULL;
@ -124,6 +125,7 @@ nsUXThemeData::Initialize()
isAppThemed = (IsAppThemedPtr)GetProcAddress(sThemeDLL, "IsAppThemed");
getCurrentThemeName = (GetCurrentThemeNamePtr)GetProcAddress(sThemeDLL, "GetCurrentThemeName");
getThemeSysColor = (GetThemeSysColorPtr)GetProcAddress(sThemeDLL, "GetThemeSysColor");
isThemeBackgroundPartiallyTransparent = (IsThemeBackgroundPartiallyTransparentPtr)GetProcAddress(sThemeDLL, "IsThemeBackgroundPartiallyTransparent");
}
#if MOZ_WINSDK_TARGETVER >= MOZ_NTDDI_LONGHORN
sDwmDLL = ::LoadLibraryW(kDwmLibraryName);

Просмотреть файл

@ -153,6 +153,7 @@ public:
LPWSTR pszColorBuff, int cchMaxColorChars,
LPWSTR pszSizeBuff, int cchMaxSizeChars);
typedef COLORREF (WINAPI*GetThemeSysColorPtr)(HANDLE hTheme, int iColorID);
typedef BOOL (WINAPI*IsThemeBackgroundPartiallyTransparentPtr)(HANDLE hTheme, int iPartId, int iStateId);
static OpenThemeDataPtr openTheme;
static CloseThemeDataPtr closeTheme;
@ -167,6 +168,7 @@ public:
static IsAppThemedPtr isAppThemed;
static GetCurrentThemeNamePtr getCurrentThemeName;
static GetThemeSysColorPtr getThemeSysColor;
static IsThemeBackgroundPartiallyTransparentPtr isThemeBackgroundPartiallyTransparent;
#if MOZ_WINSDK_TARGETVER >= MOZ_NTDDI_LONGHORN
// dwmapi.dll function typedefs and declarations