mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
187 lines
6.4 KiB
C++
187 lines
6.4 KiB
C++
|
/* vim: se cin sw=2 ts=2 et : */
|
||
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
||
|
*
|
||
|
* ***** BEGIN LICENSE BLOCK *****
|
||
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||
|
*
|
||
|
* The contents of this file are subject to the Mozilla Public License Version
|
||
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
||
|
* the License. You may obtain a copy of the License at
|
||
|
* http://www.mozilla.org/MPL/
|
||
|
*
|
||
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
||
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||
|
* for the specific language governing rights and limitations under the
|
||
|
* License.
|
||
|
*
|
||
|
* The Original Code is the Mozilla browser.
|
||
|
*
|
||
|
* The Initial Developer of the Original Code is
|
||
|
* Netscape Communications Corporation.
|
||
|
* Portions created by the Initial Developer are Copyright (C) 1999
|
||
|
* the Initial Developer. All Rights Reserved.
|
||
|
*
|
||
|
* Contributor(s):
|
||
|
* Rob Arnold <robarnold@mozilla.com> (Original Author)
|
||
|
*
|
||
|
* Alternatively, the contents of this file may be used under the terms of
|
||
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
||
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||
|
* of those above. If you wish to allow use of your version of this file only
|
||
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||
|
* use your version of this file under the terms of the MPL, indicate your
|
||
|
* decision by deleting the provisions above and replace them with the notice
|
||
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||
|
* the provisions above, a recipient may use your version of this file under
|
||
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
||
|
*
|
||
|
* ***** END LICENSE BLOCK ***** */
|
||
|
|
||
|
#include "nsDebug.h"
|
||
|
// For GetWindowsVersion
|
||
|
#include "nsWindow.h"
|
||
|
#include "nsUXThemeConstants.h"
|
||
|
#include "nsUXThemeData.h"
|
||
|
|
||
|
const char
|
||
|
nsUXThemeData::kThemeLibraryName[] = "uxtheme.dll";
|
||
|
|
||
|
HANDLE
|
||
|
nsUXThemeData::sThemes[eUXNumClasses];
|
||
|
|
||
|
HMODULE
|
||
|
nsUXThemeData::sThemeDLL = NULL;
|
||
|
|
||
|
BOOL
|
||
|
nsUXThemeData::sFlatMenus = FALSE;
|
||
|
PRPackedBool
|
||
|
nsUXThemeData::sIsXPOrLater = PR_FALSE;
|
||
|
PRPackedBool
|
||
|
nsUXThemeData::sIsVistaOrLater = PR_FALSE;
|
||
|
|
||
|
nsUXThemeData::OpenThemeDataPtr nsUXThemeData::openTheme = NULL;
|
||
|
nsUXThemeData::CloseThemeDataPtr nsUXThemeData::closeTheme = NULL;
|
||
|
nsUXThemeData::DrawThemeBackgroundPtr nsUXThemeData::drawThemeBG = NULL;
|
||
|
nsUXThemeData::DrawThemeEdgePtr nsUXThemeData::drawThemeEdge = NULL;
|
||
|
nsUXThemeData::GetThemeContentRectPtr nsUXThemeData::getThemeContentRect = NULL;
|
||
|
nsUXThemeData::GetThemePartSizePtr nsUXThemeData::getThemePartSize = NULL;
|
||
|
nsUXThemeData::GetThemeSysFontPtr nsUXThemeData::getThemeSysFont = NULL;
|
||
|
nsUXThemeData::GetThemeColorPtr nsUXThemeData::getThemeColor = NULL;
|
||
|
nsUXThemeData::GetThemeMarginsPtr nsUXThemeData::getThemeMargins = NULL;
|
||
|
nsUXThemeData::IsAppThemedPtr nsUXThemeData::isAppThemed = NULL;
|
||
|
nsUXThemeData::GetCurrentThemeNamePtr nsUXThemeData::getCurrentThemeName = NULL;
|
||
|
|
||
|
void
|
||
|
nsUXThemeData::Teardown() {
|
||
|
Invalidate();
|
||
|
if(sThemeDLL)
|
||
|
FreeLibrary(sThemeDLL);
|
||
|
}
|
||
|
|
||
|
void
|
||
|
nsUXThemeData::Initialize()
|
||
|
{
|
||
|
::ZeroMemory(sThemes, sizeof(sThemes));
|
||
|
NS_ASSERTION(!sThemeDLL, "nsUXThemeData being initialized twice!");
|
||
|
sThemeDLL = ::LoadLibrary(kThemeLibraryName);
|
||
|
if (sThemeDLL) {
|
||
|
openTheme = (OpenThemeDataPtr)GetProcAddress(sThemeDLL, "OpenThemeData");
|
||
|
closeTheme = (CloseThemeDataPtr)GetProcAddress(sThemeDLL, "CloseThemeData");
|
||
|
drawThemeBG = (DrawThemeBackgroundPtr)GetProcAddress(sThemeDLL, "DrawThemeBackground");
|
||
|
drawThemeEdge = (DrawThemeEdgePtr)GetProcAddress(sThemeDLL, "DrawThemeEdge");
|
||
|
getThemeContentRect = (GetThemeContentRectPtr)GetProcAddress(sThemeDLL, "GetThemeBackgroundContentRect");
|
||
|
getThemePartSize = (GetThemePartSizePtr)GetProcAddress(sThemeDLL, "GetThemePartSize");
|
||
|
getThemeSysFont = (GetThemeSysFontPtr)GetProcAddress(sThemeDLL, "GetThemeSysFont");
|
||
|
getThemeColor = (GetThemeColorPtr)GetProcAddress(sThemeDLL, "GetThemeColor");
|
||
|
getThemeMargins = (GetThemeMarginsPtr)GetProcAddress(sThemeDLL, "GetThemeMargins");
|
||
|
isAppThemed = (IsAppThemedPtr)GetProcAddress(sThemeDLL, "IsAppThemed");
|
||
|
getCurrentThemeName = (GetCurrentThemeNamePtr)GetProcAddress(sThemeDLL, "GetCurrentThemeName");
|
||
|
}
|
||
|
|
||
|
PRInt32 version = ::GetWindowsVersion();
|
||
|
sIsXPOrLater = version >= WINXP_VERSION;
|
||
|
sIsVistaOrLater = version >= VISTA_VERSION;
|
||
|
}
|
||
|
|
||
|
void
|
||
|
nsUXThemeData::Invalidate() {
|
||
|
for(int i = 0; i < eUXNumClasses; i++) {
|
||
|
if(sThemes[i]) {
|
||
|
closeTheme(sThemes[i]);
|
||
|
sThemes[i] = NULL;
|
||
|
}
|
||
|
}
|
||
|
if (sIsXPOrLater) {
|
||
|
BOOL useFlat = PR_FALSE;
|
||
|
sFlatMenus = ::SystemParametersInfo(SPI_GETFLATMENU, 0, &useFlat, 0) ?
|
||
|
useFlat : PR_FALSE;
|
||
|
} else {
|
||
|
// Contrary to Microsoft's documentation, SPI_GETFLATMENU will not fail
|
||
|
// on Windows 2000, and it is also possible (though unlikely) for WIN2K
|
||
|
// to be misconfigured in such a way that it would return true, so we
|
||
|
// shall give WIN2K special treatment
|
||
|
sFlatMenus = PR_FALSE;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
HANDLE
|
||
|
nsUXThemeData::GetTheme(nsUXThemeClass cls) {
|
||
|
NS_ASSERTION(cls < eUXNumClasses, "Invalid theme class!");
|
||
|
if(!sThemeDLL)
|
||
|
return NULL;
|
||
|
if(!sThemes[cls])
|
||
|
{
|
||
|
sThemes[cls] = openTheme(NULL, GetClassName(cls));
|
||
|
}
|
||
|
return sThemes[cls];
|
||
|
}
|
||
|
|
||
|
const wchar_t *nsUXThemeData::GetClassName(nsUXThemeClass cls) {
|
||
|
switch(cls) {
|
||
|
case eUXButton:
|
||
|
return L"Button";
|
||
|
case eUXEdit:
|
||
|
return L"Edit";
|
||
|
case eUXTooltip:
|
||
|
return L"Tooltip";
|
||
|
case eUXRebar:
|
||
|
return L"Rebar";
|
||
|
case eUXMediaRebar:
|
||
|
return L"Media::Rebar";
|
||
|
case eUXCommunicationsRebar:
|
||
|
return L"Communications::Rebar";
|
||
|
case eUXBrowserTabBarRebar:
|
||
|
return L"BrowserTabBar::Rebar";
|
||
|
case eUXToolbar:
|
||
|
return L"Toolbar";
|
||
|
case eUXMediaToolbar:
|
||
|
return L"Media::Toolbar";
|
||
|
case eUXCommunicationsToolbar:
|
||
|
return L"Communications::Toolbar";
|
||
|
case eUXProgress:
|
||
|
return L"Progress";
|
||
|
case eUXTab:
|
||
|
return L"Tab";
|
||
|
case eUXScrollbar:
|
||
|
return L"Scrollbar";
|
||
|
case eUXTrackbar:
|
||
|
return L"Trackbar";
|
||
|
case eUXSpin:
|
||
|
return L"Spin";
|
||
|
case eUXStatus:
|
||
|
return L"Status";
|
||
|
case eUXCombobox:
|
||
|
return L"Combobox";
|
||
|
case eUXHeader:
|
||
|
return L"Header";
|
||
|
case eUXListview:
|
||
|
return L"Listview";
|
||
|
case eUXMenu:
|
||
|
return L"Menu";
|
||
|
default:
|
||
|
NS_NOTREACHED("unknown uxtheme class");
|
||
|
return L"";
|
||
|
}
|
||
|
}
|