2008-07-17 10:19:10 -07:00
|
|
|
/* 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 ***** */
|
|
|
|
|
2009-09-26 15:42:14 -07:00
|
|
|
#include "nsUXThemeData.h"
|
2008-07-17 10:19:10 -07:00
|
|
|
#include "nsDebug.h"
|
|
|
|
// For GetWindowsVersion
|
|
|
|
#include "nsWindow.h"
|
|
|
|
#include "nsUXThemeConstants.h"
|
|
|
|
|
2008-09-27 15:40:34 -07:00
|
|
|
const PRUnichar
|
|
|
|
nsUXThemeData::kThemeLibraryName[] = L"uxtheme.dll";
|
2009-09-26 15:42:14 -07:00
|
|
|
#if MOZ_WINSDK_TARGETVER >= MOZ_NTDDI_LONGHORN
|
2008-09-27 15:40:34 -07:00
|
|
|
const PRUnichar
|
|
|
|
nsUXThemeData::kDwmLibraryName[] = L"dwmapi.dll";
|
2009-09-26 15:42:14 -07:00
|
|
|
#endif
|
2008-07-17 10:19:10 -07:00
|
|
|
|
|
|
|
HANDLE
|
|
|
|
nsUXThemeData::sThemes[eUXNumClasses];
|
|
|
|
|
|
|
|
HMODULE
|
|
|
|
nsUXThemeData::sThemeDLL = NULL;
|
2009-09-26 15:42:14 -07:00
|
|
|
#if MOZ_WINSDK_TARGETVER >= MOZ_NTDDI_LONGHORN
|
2008-08-12 17:44:14 -07:00
|
|
|
HMODULE
|
|
|
|
nsUXThemeData::sDwmDLL = NULL;
|
2009-09-26 15:42:14 -07:00
|
|
|
#endif
|
2008-07-17 10:19:10 -07:00
|
|
|
|
|
|
|
BOOL
|
|
|
|
nsUXThemeData::sFlatMenus = FALSE;
|
|
|
|
PRPackedBool
|
|
|
|
nsUXThemeData::sIsXPOrLater = PR_FALSE;
|
|
|
|
PRPackedBool
|
|
|
|
nsUXThemeData::sIsVistaOrLater = PR_FALSE;
|
2008-08-12 17:44:14 -07:00
|
|
|
PRPackedBool
|
|
|
|
nsUXThemeData::sHaveCompositor = PR_FALSE;
|
2008-07-17 10:19:10 -07:00
|
|
|
|
2010-08-09 18:49:35 -07:00
|
|
|
PRBool nsUXThemeData::sTitlebarInfoPopulated = PR_FALSE;
|
|
|
|
SIZE nsUXThemeData::sCommandButtons[3];
|
|
|
|
|
2008-07-17 10:19:10 -07:00
|
|
|
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;
|
2009-03-24 17:51:57 -07:00
|
|
|
nsUXThemeData::GetThemeBackgroundRegionPtr nsUXThemeData::getThemeBackgroundRegion = NULL;
|
2008-07-17 10:19:10 -07:00
|
|
|
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;
|
2008-08-12 17:44:14 -07:00
|
|
|
nsUXThemeData::GetThemeSysColorPtr nsUXThemeData::getThemeSysColor = NULL;
|
2010-06-10 15:53:57 -07:00
|
|
|
nsUXThemeData::IsThemeBackgroundPartiallyTransparentPtr nsUXThemeData::isThemeBackgroundPartiallyTransparent = NULL;
|
2008-08-12 17:44:14 -07:00
|
|
|
|
2009-09-26 15:42:14 -07:00
|
|
|
#if MOZ_WINSDK_TARGETVER >= MOZ_NTDDI_LONGHORN
|
2008-08-12 17:44:14 -07:00
|
|
|
nsUXThemeData::DwmExtendFrameIntoClientAreaProc nsUXThemeData::dwmExtendFrameIntoClientAreaPtr = NULL;
|
|
|
|
nsUXThemeData::DwmIsCompositionEnabledProc nsUXThemeData::dwmIsCompositionEnabledPtr = NULL;
|
2009-09-26 15:42:14 -07:00
|
|
|
nsUXThemeData::DwmSetIconicThumbnailProc nsUXThemeData::dwmSetIconicThumbnailPtr = NULL;
|
|
|
|
nsUXThemeData::DwmSetIconicLivePreviewBitmapProc nsUXThemeData::dwmSetIconicLivePreviewBitmapPtr = NULL;
|
|
|
|
nsUXThemeData::DwmSetWindowAttributeProc nsUXThemeData::dwmSetWindowAttributePtr = NULL;
|
|
|
|
nsUXThemeData::DwmInvalidateIconicBitmapsProc nsUXThemeData::dwmInvalidateIconicBitmapsPtr = NULL;
|
2010-06-24 19:01:07 -07:00
|
|
|
nsUXThemeData::DwmDefWindowProcProc nsUXThemeData::dwmDwmDefWindowProcPtr = NULL;
|
2009-09-26 15:42:14 -07:00
|
|
|
#endif
|
2008-07-17 10:19:10 -07:00
|
|
|
|
|
|
|
void
|
|
|
|
nsUXThemeData::Teardown() {
|
|
|
|
Invalidate();
|
|
|
|
if(sThemeDLL)
|
|
|
|
FreeLibrary(sThemeDLL);
|
2009-09-26 15:42:14 -07:00
|
|
|
#if MOZ_WINSDK_TARGETVER >= MOZ_NTDDI_LONGHORN
|
2008-08-12 17:44:14 -07:00
|
|
|
if(sDwmDLL)
|
|
|
|
FreeLibrary(sDwmDLL);
|
2009-09-26 15:42:14 -07:00
|
|
|
#endif
|
2008-07-17 10:19:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsUXThemeData::Initialize()
|
|
|
|
{
|
|
|
|
::ZeroMemory(sThemes, sizeof(sThemes));
|
|
|
|
NS_ASSERTION(!sThemeDLL, "nsUXThemeData being initialized twice!");
|
2010-08-14 00:05:03 -07:00
|
|
|
|
|
|
|
PRInt32 version = nsWindow::GetWindowsVersion();
|
|
|
|
sIsXPOrLater = version >= WINXP_VERSION;
|
|
|
|
sIsVistaOrLater = version >= VISTA_VERSION;
|
|
|
|
|
|
|
|
if (GetThemeDLL()) {
|
2008-07-17 10:19:10 -07:00
|
|
|
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");
|
2009-03-24 17:51:57 -07:00
|
|
|
getThemeBackgroundRegion = (GetThemeBackgroundRegionPtr)GetProcAddress(sThemeDLL, "GetThemeBackgroundRegion");
|
2008-07-17 10:19:10 -07:00
|
|
|
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");
|
2008-08-12 17:44:14 -07:00
|
|
|
getThemeSysColor = (GetThemeSysColorPtr)GetProcAddress(sThemeDLL, "GetThemeSysColor");
|
2010-06-10 15:53:57 -07:00
|
|
|
isThemeBackgroundPartiallyTransparent = (IsThemeBackgroundPartiallyTransparentPtr)GetProcAddress(sThemeDLL, "IsThemeBackgroundPartiallyTransparent");
|
2008-08-12 17:44:14 -07:00
|
|
|
}
|
2009-09-26 15:42:14 -07:00
|
|
|
#if MOZ_WINSDK_TARGETVER >= MOZ_NTDDI_LONGHORN
|
2010-08-14 00:05:03 -07:00
|
|
|
if (GetDwmDLL()) {
|
|
|
|
dwmExtendFrameIntoClientAreaPtr = (DwmExtendFrameIntoClientAreaProc)::GetProcAddress(sDwmDLL, "DwmExtendFrameIntoClientArea");
|
|
|
|
dwmIsCompositionEnabledPtr = (DwmIsCompositionEnabledProc)::GetProcAddress(sDwmDLL, "DwmIsCompositionEnabled");
|
|
|
|
dwmSetIconicThumbnailPtr = (DwmSetIconicThumbnailProc)::GetProcAddress(sDwmDLL, "DwmSetIconicThumbnail");
|
|
|
|
dwmSetIconicLivePreviewBitmapPtr = (DwmSetIconicLivePreviewBitmapProc)::GetProcAddress(sDwmDLL, "DwmSetIconicLivePreviewBitmap");
|
|
|
|
dwmSetWindowAttributePtr = (DwmSetWindowAttributeProc)::GetProcAddress(sDwmDLL, "DwmSetWindowAttribute");
|
|
|
|
dwmInvalidateIconicBitmapsPtr = (DwmInvalidateIconicBitmapsProc)::GetProcAddress(sDwmDLL, "DwmInvalidateIconicBitmaps");
|
|
|
|
dwmDwmDefWindowProcPtr = (DwmDefWindowProcProc)::GetProcAddress(sDwmDLL, "DwmDefWindowProc");
|
|
|
|
CheckForCompositor();
|
|
|
|
}
|
2009-09-26 15:42:14 -07:00
|
|
|
#endif
|
2008-07-17 10:19:10 -07:00
|
|
|
|
2008-07-21 12:55:31 -07:00
|
|
|
Invalidate();
|
2008-07-17 10:19:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
2010-08-09 18:49:35 -07:00
|
|
|
// Refresh titlebar button info
|
|
|
|
sTitlebarInfoPopulated = PR_FALSE;
|
2008-07-17 10:19:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
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];
|
|
|
|
}
|
|
|
|
|
2010-08-14 00:05:03 -07:00
|
|
|
HMODULE
|
|
|
|
nsUXThemeData::GetThemeDLL() {
|
|
|
|
if (!sThemeDLL && sIsXPOrLater)
|
|
|
|
sThemeDLL = ::LoadLibraryW(kThemeLibraryName);
|
|
|
|
return sThemeDLL;
|
|
|
|
}
|
|
|
|
|
2010-08-21 12:43:53 -07:00
|
|
|
#if MOZ_WINSDK_TARGETVER >= MOZ_NTDDI_LONGHORN
|
2010-08-14 00:05:03 -07:00
|
|
|
HMODULE
|
|
|
|
nsUXThemeData::GetDwmDLL() {
|
|
|
|
if (!sDwmDLL && sIsVistaOrLater)
|
|
|
|
sDwmDLL = ::LoadLibraryW(kDwmLibraryName);
|
|
|
|
return sDwmDLL;
|
|
|
|
}
|
2010-08-21 12:43:53 -07:00
|
|
|
#endif
|
2010-08-14 00:05:03 -07:00
|
|
|
|
2008-07-17 10:19:10 -07:00
|
|
|
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";
|
2010-08-09 18:49:35 -07:00
|
|
|
case eUXWindowFrame:
|
|
|
|
return L"Window";
|
2008-07-17 10:19:10 -07:00
|
|
|
default:
|
|
|
|
NS_NOTREACHED("unknown uxtheme class");
|
|
|
|
return L"";
|
|
|
|
}
|
|
|
|
}
|
2010-08-09 18:49:35 -07:00
|
|
|
|
|
|
|
// static
|
|
|
|
void
|
|
|
|
nsUXThemeData::InitTitlebarInfo()
|
|
|
|
{
|
|
|
|
// Pre-populate with generic metrics. These likley will not match
|
|
|
|
// the current theme, but they insure the buttons at least show up.
|
|
|
|
sCommandButtons[0].cx = GetSystemMetrics(SM_CXSIZE);
|
|
|
|
sCommandButtons[0].cy = GetSystemMetrics(SM_CYSIZE);
|
|
|
|
sCommandButtons[1].cx = sCommandButtons[2].cx = sCommandButtons[0].cx;
|
|
|
|
sCommandButtons[1].cy = sCommandButtons[2].cy = sCommandButtons[0].cy;
|
2010-08-09 18:49:35 -07:00
|
|
|
|
|
|
|
// Use system metrics for pre-vista
|
|
|
|
if (nsWindow::GetWindowsVersion() < VISTA_VERSION)
|
|
|
|
sTitlebarInfoPopulated = PR_TRUE;
|
2010-08-09 18:49:35 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
void
|
2010-08-09 18:49:35 -07:00
|
|
|
nsUXThemeData::UpdateTitlebarInfo(HWND aWnd)
|
2010-08-09 18:49:35 -07:00
|
|
|
{
|
2010-08-09 18:49:35 -07:00
|
|
|
if (sTitlebarInfoPopulated || !aWnd)
|
2010-08-09 18:49:35 -07:00
|
|
|
return;
|
|
|
|
|
2010-08-24 20:03:37 -07:00
|
|
|
// Compositor enabled, we won't use these.
|
|
|
|
#if MOZ_WINSDK_TARGETVER >= MOZ_NTDDI_LONGHORN
|
|
|
|
if (nsUXThemeData::CheckForCompositor()) {
|
|
|
|
sTitlebarInfoPopulated = PR_TRUE;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Query a temporary, visible window with command buttons to get
|
|
|
|
// the right metrics.
|
|
|
|
WNDCLASSW wc;
|
|
|
|
wc.style = 0;
|
|
|
|
wc.lpfnWndProc = ::DefWindowProcW;
|
|
|
|
wc.cbClsExtra = 0;
|
|
|
|
wc.cbWndExtra = 0;
|
|
|
|
wc.hInstance = nsToolkit::mDllInstance;
|
|
|
|
wc.hIcon = NULL;
|
|
|
|
wc.hCursor = NULL;
|
|
|
|
wc.hbrBackground = NULL;
|
|
|
|
wc.lpszMenuName = NULL;
|
|
|
|
wc.lpszClassName = kClassNameTemp;
|
|
|
|
::RegisterClassW(&wc);
|
|
|
|
|
|
|
|
// Create a transparent, descendent of the window passed in. This
|
|
|
|
// keeps the window from showing up on the desktop or the taskbar.
|
|
|
|
// Note the parent (browser) window is usually still hidden, we
|
|
|
|
// don't want to display it, so we can't query it directly.
|
|
|
|
HWND hWnd = CreateWindowEx(WS_EX_NOACTIVATE|WS_EX_LAYERED,
|
|
|
|
kClassNameTemp, L"",
|
|
|
|
WS_OVERLAPPEDWINDOW,
|
|
|
|
0, 0, 0, 0, aWnd, NULL,
|
|
|
|
nsToolkit::mDllInstance, NULL);
|
|
|
|
NS_ASSERTION(hWnd, "UpdateTitlebarInfo window creation failed.");
|
|
|
|
|
|
|
|
ShowWindow(hWnd, SW_SHOW);
|
2010-08-09 18:49:35 -07:00
|
|
|
TITLEBARINFOEX info = {0};
|
|
|
|
info.cbSize = sizeof(TITLEBARINFOEX);
|
2010-08-24 20:03:37 -07:00
|
|
|
SendMessage(hWnd, WM_GETTITLEBARINFOEX, 0, (LPARAM)&info);
|
|
|
|
DestroyWindow(hWnd);
|
2010-08-09 18:49:35 -07:00
|
|
|
|
2010-08-09 18:49:35 -07:00
|
|
|
// Only set if we have valid data for all three buttons we use.
|
|
|
|
if ((info.rgrect[2].right - info.rgrect[2].left) == 0 ||
|
|
|
|
(info.rgrect[3].right - info.rgrect[3].left) == 0 ||
|
2010-08-24 20:03:37 -07:00
|
|
|
(info.rgrect[5].right - info.rgrect[5].left) == 0) {
|
|
|
|
NS_WARNING("WM_GETTITLEBARINFOEX query failed to find usable metrics.");
|
2010-08-09 18:49:35 -07:00
|
|
|
return;
|
2010-08-24 20:03:37 -07:00
|
|
|
}
|
2010-08-09 18:49:35 -07:00
|
|
|
// minimize
|
|
|
|
sCommandButtons[0].cx = info.rgrect[2].right - info.rgrect[2].left;
|
|
|
|
sCommandButtons[0].cy = info.rgrect[2].bottom - info.rgrect[2].top;
|
|
|
|
// maximize/restore
|
|
|
|
sCommandButtons[1].cx = info.rgrect[3].right - info.rgrect[3].left;
|
|
|
|
sCommandButtons[1].cy = info.rgrect[3].bottom - info.rgrect[3].top;
|
|
|
|
// close
|
|
|
|
sCommandButtons[2].cx = info.rgrect[5].right - info.rgrect[5].left;
|
|
|
|
sCommandButtons[2].cy = info.rgrect[5].bottom - info.rgrect[5].top;
|
|
|
|
|
|
|
|
sTitlebarInfoPopulated = PR_TRUE;
|
|
|
|
}
|