2006-02-09 01:24:30 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 40; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2005-08-20 07:11:56 +00:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2005-08-20 07:13:53 +00:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
2005-08-20 07:11:56 +00:00
|
|
|
*
|
2005-08-20 07:13:53 +00:00
|
|
|
* 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/
|
2005-08-20 07:11:56 +00:00
|
|
|
*
|
|
|
|
* 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 mozilla.org code.
|
|
|
|
*
|
2005-08-20 07:13:53 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* David Hyatt (hyatt@netscape.com).
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2001
|
2005-08-20 07:11:56 +00:00
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
2005-08-20 07:13:11 +00:00
|
|
|
* Tim Hill (tim@prismelite.com)
|
2005-10-07 00:31:36 +00:00
|
|
|
* James Ross (silver@warwickcompsoc.co.uk)
|
2007-07-14 15:11:37 +00:00
|
|
|
* Simon Bünzli (zeniko@gmail.com)
|
2005-08-20 07:11:56 +00:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2005-08-20 07:13:53 +00:00
|
|
|
* 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"),
|
2005-08-20 07:11:56 +00:00
|
|
|
* 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
|
2005-08-20 07:13:53 +00:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2005-08-20 07:11:56 +00:00
|
|
|
* 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
|
2005-08-20 07:13:53 +00:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2005-08-20 07:11:56 +00:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include "nsNativeThemeWin.h"
|
2005-08-23 02:11:54 +00:00
|
|
|
#include "nsIRenderingContext.h"
|
|
|
|
#include "nsIDeviceContext.h"
|
2005-08-20 07:11:56 +00:00
|
|
|
#include "nsRect.h"
|
|
|
|
#include "nsSize.h"
|
|
|
|
#include "nsTransform2D.h"
|
|
|
|
#include "nsThemeConstants.h"
|
|
|
|
#include "nsIPresShell.h"
|
2005-08-20 07:14:04 +00:00
|
|
|
#include "nsPresContext.h"
|
2005-08-20 07:11:56 +00:00
|
|
|
#include "nsIContent.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIFrame.h"
|
|
|
|
#include "nsIEventStateManager.h"
|
|
|
|
#include "nsINameSpaceManager.h"
|
|
|
|
#include "nsILookAndFeel.h"
|
2005-08-20 07:12:55 +00:00
|
|
|
#include "nsIDOMHTMLInputElement.h"
|
2005-08-20 07:12:08 +00:00
|
|
|
#include "nsIMenuFrame.h"
|
2006-06-09 06:02:30 +00:00
|
|
|
#include "nsWidgetAtoms.h"
|
2005-08-20 07:11:57 +00:00
|
|
|
#include <malloc.h>
|
2007-08-17 20:47:33 +00:00
|
|
|
#include "nsWindow.h"
|
2005-08-20 07:11:56 +00:00
|
|
|
|
2007-08-06 17:45:57 +00:00
|
|
|
#include "gfxPlatform.h"
|
2005-10-06 04:02:10 +00:00
|
|
|
#include "gfxContext.h"
|
|
|
|
#include "gfxMatrix.h"
|
2006-04-04 21:54:22 +00:00
|
|
|
#include "gfxWindowsSurface.h"
|
2007-03-03 00:18:34 +00:00
|
|
|
#include "gfxWindowsNativeDrawing.h"
|
|
|
|
|
2005-08-20 07:14:26 +00:00
|
|
|
/*
|
|
|
|
* The following constants are used to determine how a widget is drawn using
|
|
|
|
* Windows' Theme API. For more information on theme parts and states see
|
|
|
|
* http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/commctls/userex/topics/partsandstates.asp
|
|
|
|
*/
|
2005-08-20 07:11:56 +00:00
|
|
|
#define THEME_COLOR 204
|
|
|
|
#define THEME_FONT 210
|
|
|
|
|
2005-08-20 07:11:59 +00:00
|
|
|
// Generic state constants
|
|
|
|
#define TS_NORMAL 1
|
|
|
|
#define TS_HOVER 2
|
|
|
|
#define TS_ACTIVE 3
|
|
|
|
#define TS_DISABLED 4
|
2005-08-20 07:12:06 +00:00
|
|
|
#define TS_FOCUSED 5
|
2005-08-20 07:11:59 +00:00
|
|
|
|
2006-05-30 13:50:48 +00:00
|
|
|
// These constants are reversed for the trackbar (scale) thumb
|
|
|
|
#define TKP_FOCUSED 4
|
|
|
|
#define TKP_DISABLED 5
|
|
|
|
|
2007-08-25 20:30:43 +00:00
|
|
|
// Toolbar constants
|
|
|
|
#define TP_SEPARATOR 5
|
|
|
|
|
2005-08-20 07:14:26 +00:00
|
|
|
// Toolbarbutton constants
|
|
|
|
#define TB_CHECKED 5
|
|
|
|
#define TB_HOVER_CHECKED 6
|
|
|
|
|
2005-08-20 07:11:56 +00:00
|
|
|
// Button constants
|
2005-08-20 07:11:59 +00:00
|
|
|
#define BP_BUTTON 1
|
|
|
|
#define BP_RADIO 2
|
|
|
|
#define BP_CHECKBOX 3
|
2005-08-20 07:12:06 +00:00
|
|
|
|
|
|
|
// Textfield constants
|
|
|
|
#define TFP_TEXTFIELD 1
|
|
|
|
#define TFS_READONLY 6
|
2005-08-20 07:11:56 +00:00
|
|
|
|
2005-08-20 07:12:55 +00:00
|
|
|
// Treeview/listbox constants
|
|
|
|
#define TREEVIEW_BODY 1
|
|
|
|
|
2005-08-20 07:11:56 +00:00
|
|
|
// Scrollbar constants
|
|
|
|
#define SP_BUTTON 1
|
|
|
|
#define SP_THUMBHOR 2
|
|
|
|
#define SP_THUMBVERT 3
|
|
|
|
#define SP_TRACKSTARTHOR 4
|
|
|
|
#define SP_TRACKENDHOR 5
|
|
|
|
#define SP_TRACKSTARTVERT 6
|
|
|
|
#define SP_TRACKENDVERT 7
|
|
|
|
#define SP_GRIPPERHOR 8
|
|
|
|
#define SP_GRIPPERVERT 9
|
|
|
|
|
2007-08-17 20:47:33 +00:00
|
|
|
// Vista only; implict hover state.
|
|
|
|
// BASE + 0 = UP, + 1 = DOWN, etc.
|
|
|
|
#define SP_BUTTON_IMPLICIT_HOVER_BASE 17
|
|
|
|
|
2006-05-30 13:50:48 +00:00
|
|
|
// Scale constants
|
|
|
|
#define TKP_TRACK 1
|
|
|
|
#define TKP_TRACKVERT 2
|
|
|
|
#define TKP_THUMB 3
|
|
|
|
#define TKP_THUMBVERT 6
|
|
|
|
|
2006-07-13 17:40:49 +00:00
|
|
|
// Spin constants
|
|
|
|
#define SPNP_UP 1
|
|
|
|
#define SPNP_DOWN 2
|
|
|
|
|
2005-08-20 07:11:59 +00:00
|
|
|
// Progress bar constants
|
|
|
|
#define PP_BAR 1
|
|
|
|
#define PP_BARVERT 2
|
|
|
|
#define PP_CHUNK 3
|
|
|
|
#define PP_CHUNKVERT 4
|
|
|
|
|
2005-08-20 07:11:56 +00:00
|
|
|
// Tab constants
|
|
|
|
#define TABP_TAB 4
|
|
|
|
#define TABP_TAB_SELECTED 5
|
2005-08-20 07:12:02 +00:00
|
|
|
#define TABP_PANELS 9
|
|
|
|
#define TABP_PANEL 10
|
2005-08-20 07:12:00 +00:00
|
|
|
|
|
|
|
// Tooltip constants
|
|
|
|
#define TTP_STANDARD 1
|
|
|
|
|
2005-08-20 07:12:07 +00:00
|
|
|
// Dropdown constants
|
|
|
|
#define CBP_DROPMARKER 1
|
|
|
|
|
2007-08-06 17:45:57 +00:00
|
|
|
// Menu Constants
|
|
|
|
#define MENU_BARBACKGROUND 7
|
|
|
|
#define MENU_BARITEM 8
|
|
|
|
#define MENU_POPUPBACKGROUND 9
|
|
|
|
#define MENU_POPUPBORDERS 10
|
|
|
|
#define MENU_POPUPCHECK 11
|
|
|
|
#define MENU_POPUPCHECKBACKGROUND 12
|
|
|
|
#define MENU_POPUPGUTTER 13
|
|
|
|
#define MENU_POPUPITEM 14
|
|
|
|
#define MENU_POPUPSEPARATOR 15
|
|
|
|
#define MENU_POPUPSUBMENU 16
|
|
|
|
#define MENU_SYSTEMCLOSE 17
|
|
|
|
#define MENU_SYSTEMMAXIMIZE 18
|
|
|
|
#define MENU_SYSTEMMINIMIZE 19
|
|
|
|
#define MENU_SYSTEMRESTORE 20
|
|
|
|
|
|
|
|
#define MB_ACTIVE 1
|
|
|
|
#define MB_INACTIVE 2
|
|
|
|
|
|
|
|
#define MS_NORMAL 1
|
|
|
|
#define MS_SELECTED 2
|
|
|
|
#define MS_DEMOTED 3
|
|
|
|
|
|
|
|
#define MBI_NORMAL 1
|
|
|
|
#define MBI_HOT 2
|
|
|
|
#define MBI_PUSHED 3
|
|
|
|
#define MBI_DISABLED 4
|
|
|
|
#define MBI_DISABLEDHOT 5
|
|
|
|
#define MBI_DISABLEDPUSHED 6
|
|
|
|
|
|
|
|
#define MC_CHECKMARKNORMAL 1
|
|
|
|
#define MC_CHECKMARKDISABLED 2
|
|
|
|
#define MC_BULLETNORMAL 3
|
|
|
|
#define MC_BULLETDISABLED 4
|
|
|
|
|
|
|
|
#define MCB_DISABLED 1
|
|
|
|
#define MCB_NORMAL 2
|
|
|
|
#define MCB_BITMAP 3
|
|
|
|
|
|
|
|
#define MPI_NORMAL 1
|
|
|
|
#define MPI_HOT 2
|
|
|
|
#define MPI_DISABLED 3
|
|
|
|
#define MPI_DISABLEDHOT 4
|
|
|
|
|
|
|
|
#define MSM_NORMAL 1
|
|
|
|
#define MSM_DISABLED 2
|
|
|
|
|
|
|
|
// Theme size constants
|
|
|
|
// minimum size
|
|
|
|
#define TS_MIN 0
|
|
|
|
// size without stretching
|
|
|
|
#define TS_TRUE 1
|
|
|
|
// size that theme mgr will use to draw part
|
|
|
|
#define TS_DRAW 2
|
|
|
|
|
|
|
|
#define TMT_SIZINGMARGINS 3601
|
|
|
|
#define TMT_CONTENTMARGINS 3602
|
|
|
|
#define TMT_CAPTIONMARGINS 3603
|
|
|
|
|
2007-07-14 15:11:37 +00:00
|
|
|
// Rebar constants
|
|
|
|
#define RP_BAND 3
|
|
|
|
|
2005-10-07 00:31:36 +00:00
|
|
|
// Constants only found in new (98+, 2K+, XP+, etc.) Windows.
|
|
|
|
#ifdef DFCS_HOT
|
|
|
|
#undef DFCS_HOT
|
|
|
|
#endif
|
|
|
|
#define DFCS_HOT 0x00001000
|
|
|
|
|
|
|
|
#ifdef COLOR_MENUHILIGHT
|
|
|
|
#undef COLOR_MENUHILIGHT
|
|
|
|
#endif
|
|
|
|
#define COLOR_MENUHILIGHT 29
|
|
|
|
|
|
|
|
#ifdef SPI_GETFLATMENU
|
|
|
|
#undef SPI_GETFLATMENU
|
|
|
|
#endif
|
|
|
|
#define SPI_GETFLATMENU 0x1022
|
|
|
|
|
2007-05-09 19:17:17 +00:00
|
|
|
// Our extra constants for passing a little bit more info to the renderer.
|
2005-10-07 00:31:36 +00:00
|
|
|
#define DFCS_RTL 0x00010000
|
2007-07-14 15:11:37 +00:00
|
|
|
|
|
|
|
// Toolbar separator dimension which can't be gotten from Windows
|
|
|
|
#define TB_SEPARATOR_HEIGHT 2
|
2005-10-07 00:31:36 +00:00
|
|
|
|
2005-08-20 07:11:56 +00:00
|
|
|
NS_IMPL_ISUPPORTS1(nsNativeThemeWin, nsITheme)
|
|
|
|
|
2007-08-06 17:45:57 +00:00
|
|
|
struct MARGINS
|
|
|
|
{
|
|
|
|
int cxLeftWidth;
|
|
|
|
int cxRightWidth;
|
|
|
|
int cyTopHeight;
|
|
|
|
int cyBottomHeight;
|
|
|
|
};
|
|
|
|
|
2005-08-20 07:11:56 +00:00
|
|
|
typedef HANDLE (WINAPI*OpenThemeDataPtr)(HWND hwnd, LPCWSTR pszClassList);
|
|
|
|
typedef HRESULT (WINAPI*CloseThemeDataPtr)(HANDLE hTheme);
|
|
|
|
typedef HRESULT (WINAPI*DrawThemeBackgroundPtr)(HANDLE hTheme, HDC hdc, int iPartId,
|
|
|
|
int iStateId, const RECT *pRect,
|
|
|
|
const RECT* pClipRect);
|
2005-10-07 00:31:36 +00:00
|
|
|
typedef HRESULT (WINAPI*DrawThemeEdgePtr)(HANDLE hTheme, HDC hdc, int iPartId,
|
2007-07-14 15:11:37 +00:00
|
|
|
int iStateId, const RECT *pDestRect,
|
2005-10-07 00:31:36 +00:00
|
|
|
uint uEdge, uint uFlags,
|
2007-07-14 15:11:37 +00:00
|
|
|
const RECT* pContentRect);
|
2005-08-20 07:11:56 +00:00
|
|
|
typedef HRESULT (WINAPI*GetThemeContentRectPtr)(HANDLE hTheme, HDC hdc, int iPartId,
|
|
|
|
int iStateId, const RECT* pRect,
|
|
|
|
RECT* pContentRect);
|
|
|
|
typedef HRESULT (WINAPI*GetThemePartSizePtr)(HANDLE hTheme, HDC hdc, int iPartId,
|
|
|
|
int iStateId, RECT* prc, int ts,
|
|
|
|
SIZE* psz);
|
|
|
|
typedef HRESULT (WINAPI*GetThemeSysFontPtr)(HANDLE hTheme, int iFontId, OUT LOGFONT* pFont);
|
2007-08-06 17:45:57 +00:00
|
|
|
typedef HRESULT (WINAPI*GetThemeColorPtr)(HANDLE hTheme, int iPartId,
|
2005-08-20 07:11:56 +00:00
|
|
|
int iStateId, int iPropId, OUT COLORREF* pFont);
|
2007-08-06 17:45:57 +00:00
|
|
|
typedef HRESULT (WINAPI*GetThemeMarginsPtr)(HANDLE hTheme, HDC hdc, int iPartId,
|
|
|
|
int iStateid, int iPropId,
|
|
|
|
LPRECT prc, MARGINS *pMargins);
|
2005-08-20 07:11:56 +00:00
|
|
|
|
|
|
|
static OpenThemeDataPtr openTheme = NULL;
|
|
|
|
static CloseThemeDataPtr closeTheme = NULL;
|
|
|
|
static DrawThemeBackgroundPtr drawThemeBG = NULL;
|
2005-10-07 00:31:36 +00:00
|
|
|
static DrawThemeEdgePtr drawThemeEdge = NULL;
|
2005-08-20 07:11:56 +00:00
|
|
|
static GetThemeContentRectPtr getThemeContentRect = NULL;
|
|
|
|
static GetThemePartSizePtr getThemePartSize = NULL;
|
|
|
|
static GetThemeSysFontPtr getThemeSysFont = NULL;
|
|
|
|
static GetThemeColorPtr getThemeColor = NULL;
|
2007-08-06 17:45:57 +00:00
|
|
|
static GetThemeMarginsPtr getThemeMargins = NULL;
|
2005-08-20 07:11:56 +00:00
|
|
|
|
|
|
|
static const char kThemeLibraryName[] = "uxtheme.dll";
|
|
|
|
|
2007-05-09 19:17:17 +00:00
|
|
|
static inline bool IsCheckboxWidgetType(PRUint8 aWidgetType)
|
|
|
|
{
|
|
|
|
return (aWidgetType == NS_THEME_CHECKBOX || aWidgetType == NS_THEME_CHECKBOX_SMALL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool IsRadioWidgetType(PRUint8 aWidgetType)
|
|
|
|
{
|
|
|
|
return (aWidgetType == NS_THEME_RADIO || aWidgetType == NS_THEME_RADIO_SMALL);
|
|
|
|
}
|
|
|
|
|
2005-08-20 07:11:56 +00:00
|
|
|
nsNativeThemeWin::nsNativeThemeWin() {
|
|
|
|
mThemeDLL = NULL;
|
|
|
|
mButtonTheme = NULL;
|
2005-08-20 07:12:06 +00:00
|
|
|
mTextFieldTheme = NULL;
|
2005-08-20 07:12:00 +00:00
|
|
|
mTooltipTheme = NULL;
|
2005-08-20 07:11:56 +00:00
|
|
|
mToolbarTheme = NULL;
|
|
|
|
mRebarTheme = NULL;
|
2005-08-20 07:11:59 +00:00
|
|
|
mProgressTheme = NULL;
|
2005-08-20 07:11:56 +00:00
|
|
|
mScrollbarTheme = NULL;
|
2006-07-13 17:40:49 +00:00
|
|
|
mSpinTheme = NULL;
|
2006-05-30 13:50:48 +00:00
|
|
|
mScaleTheme = NULL;
|
2005-08-20 07:11:56 +00:00
|
|
|
mStatusbarTheme = NULL;
|
|
|
|
mTabTheme = NULL;
|
|
|
|
mTreeViewTheme = NULL;
|
2005-08-20 07:12:07 +00:00
|
|
|
mComboBoxTheme = NULL;
|
2005-08-20 07:13:09 +00:00
|
|
|
mHeaderTheme = NULL;
|
2007-08-06 17:45:57 +00:00
|
|
|
mMenuTheme = NULL;
|
2005-08-20 07:11:56 +00:00
|
|
|
|
|
|
|
mThemeDLL = ::LoadLibrary(kThemeLibraryName);
|
|
|
|
if (mThemeDLL) {
|
|
|
|
openTheme = (OpenThemeDataPtr)GetProcAddress(mThemeDLL, "OpenThemeData");
|
|
|
|
closeTheme = (CloseThemeDataPtr)GetProcAddress(mThemeDLL, "CloseThemeData");
|
|
|
|
drawThemeBG = (DrawThemeBackgroundPtr)GetProcAddress(mThemeDLL, "DrawThemeBackground");
|
2005-10-07 00:31:36 +00:00
|
|
|
drawThemeEdge = (DrawThemeEdgePtr)GetProcAddress(mThemeDLL, "DrawThemeEdge");
|
2005-08-20 07:11:56 +00:00
|
|
|
getThemeContentRect = (GetThemeContentRectPtr)GetProcAddress(mThemeDLL, "GetThemeBackgroundContentRect");
|
|
|
|
getThemePartSize = (GetThemePartSizePtr)GetProcAddress(mThemeDLL, "GetThemePartSize");
|
|
|
|
getThemeSysFont = (GetThemeSysFontPtr)GetProcAddress(mThemeDLL, "GetThemeSysFont");
|
|
|
|
getThemeColor = (GetThemeColorPtr)GetProcAddress(mThemeDLL, "GetThemeColor");
|
2007-08-06 17:45:57 +00:00
|
|
|
getThemeMargins = (GetThemeMarginsPtr)GetProcAddress(mThemeDLL, "GetThemeMargins");
|
2005-08-20 07:11:56 +00:00
|
|
|
}
|
2007-06-30 05:00:02 +00:00
|
|
|
mOsVersion.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
|
|
|
|
GetVersionEx(&mOsVersion);
|
2005-08-20 07:13:11 +00:00
|
|
|
|
2005-10-07 00:31:36 +00:00
|
|
|
UpdateConfig();
|
2005-08-20 07:13:56 +00:00
|
|
|
|
2005-08-20 07:14:17 +00:00
|
|
|
// If there is a relevant change in forms.css for windows platform,
|
2005-08-20 07:13:56 +00:00
|
|
|
// static widget style variables (e.g. sButtonBorderSize) should be
|
|
|
|
// reinitialized here.
|
2005-08-20 07:11:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsNativeThemeWin::~nsNativeThemeWin() {
|
|
|
|
if (!mThemeDLL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
CloseData();
|
|
|
|
|
|
|
|
if (mThemeDLL)
|
|
|
|
::FreeLibrary(mThemeDLL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void GetNativeRect(const nsRect& aSrc, RECT& aDst)
|
|
|
|
{
|
|
|
|
aDst.top = aSrc.y;
|
|
|
|
aDst.bottom = aSrc.y + aSrc.height;
|
|
|
|
aDst.left = aSrc.x;
|
|
|
|
aDst.right = aSrc.x + aSrc.width;
|
|
|
|
}
|
|
|
|
|
2007-08-06 17:45:57 +00:00
|
|
|
static PRBool IsTopLevelMenu(nsIFrame *aFrame)
|
|
|
|
{
|
|
|
|
PRBool isTopLevel(PR_FALSE);
|
|
|
|
nsIMenuFrame *menuFrame(nsnull);
|
|
|
|
CallQueryInterface(aFrame, &menuFrame);
|
|
|
|
|
|
|
|
if (menuFrame) {
|
|
|
|
isTopLevel = menuFrame->IsOnMenuBar();
|
|
|
|
}
|
|
|
|
return isTopLevel;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static SIZE GetCheckboxSize(HANDLE theme, HDC hdc)
|
|
|
|
{
|
|
|
|
SIZE checkboxSize;
|
|
|
|
getThemePartSize(theme, hdc, MENU_POPUPCHECK, MC_CHECKMARKNORMAL, NULL, TS_TRUE, &checkboxSize);
|
|
|
|
|
|
|
|
MARGINS checkboxSizing;
|
|
|
|
MARGINS checkboxContent;
|
|
|
|
getThemeMargins(theme, hdc, MENU_POPUPCHECKBACKGROUND, MCB_NORMAL, TMT_SIZINGMARGINS, NULL, &checkboxSizing);
|
|
|
|
getThemeMargins(theme, hdc, MENU_POPUPCHECKBACKGROUND, MCB_NORMAL, TMT_CONTENTMARGINS, NULL, &checkboxContent);
|
|
|
|
|
|
|
|
int leftMargin = checkboxSizing.cxLeftWidth;
|
|
|
|
int rightMargin = checkboxSizing.cxRightWidth;
|
|
|
|
int topMargin = checkboxSizing.cyTopHeight;
|
|
|
|
int bottomMargin = checkboxSizing.cyBottomHeight;
|
|
|
|
|
|
|
|
int width = leftMargin + checkboxSize.cx + rightMargin;
|
|
|
|
int height = topMargin + checkboxSize.cy + bottomMargin;
|
|
|
|
SIZE ret;
|
|
|
|
ret.cx = width;
|
|
|
|
ret.cy = height;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
static SIZE GetCheckboxBounds(HANDLE theme, HDC hdc)
|
|
|
|
{
|
|
|
|
MARGINS checkboxSizing;
|
|
|
|
MARGINS checkboxContent;
|
|
|
|
getThemeMargins(theme, hdc, MENU_POPUPCHECKBACKGROUND, MCB_NORMAL, TMT_SIZINGMARGINS, NULL, &checkboxSizing);
|
|
|
|
getThemeMargins(theme, hdc, MENU_POPUPCHECKBACKGROUND, MCB_NORMAL, TMT_CONTENTMARGINS, NULL, &checkboxContent);
|
|
|
|
|
|
|
|
#define posdx(d) ((d) > 0 ? d : 0)
|
|
|
|
|
|
|
|
int dx = posdx(checkboxContent.cxRightWidth - checkboxSizing.cxRightWidth) + posdx(checkboxContent.cxLeftWidth - checkboxSizing.cxLeftWidth);
|
|
|
|
int dy = posdx(checkboxContent.cyTopHeight - checkboxSizing.cyTopHeight) + posdx(checkboxContent.cyBottomHeight - checkboxSizing.cyBottomHeight);
|
|
|
|
|
|
|
|
#undef posdx
|
|
|
|
|
|
|
|
SIZE ret(GetCheckboxSize(theme,hdc));
|
|
|
|
ret.cx += dx;
|
|
|
|
ret.cy += dy;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
static SIZE GetGutterSize(HANDLE theme, HDC hdc)
|
|
|
|
{
|
|
|
|
SIZE gutterSize;
|
|
|
|
getThemePartSize(theme, hdc, MENU_POPUPGUTTER, 0, NULL, TS_TRUE, &gutterSize);
|
|
|
|
|
|
|
|
SIZE checkboxSize(GetCheckboxBounds(theme, hdc));
|
|
|
|
|
|
|
|
SIZE itemSize;
|
|
|
|
getThemePartSize(theme, hdc, MENU_POPUPITEM, MPI_NORMAL, NULL, TS_TRUE, &itemSize);
|
|
|
|
|
|
|
|
int width = max(itemSize.cx, checkboxSize.cx + gutterSize.cx);
|
|
|
|
int height = max(itemSize.cy, checkboxSize.cy);
|
|
|
|
SIZE ret;
|
|
|
|
ret.cx = width;
|
|
|
|
ret.cy = height;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PRBool IsFrameRTL(nsIFrame *frame)
|
|
|
|
{
|
|
|
|
return frame->GetStyleVisibility()->mDirection == NS_STYLE_DIRECTION_RTL;
|
|
|
|
}
|
|
|
|
|
2005-10-07 00:31:36 +00:00
|
|
|
void
|
|
|
|
nsNativeThemeWin::UpdateConfig()
|
|
|
|
{
|
2007-01-09 19:57:32 +00:00
|
|
|
// On Windows 2000 this SystemParametersInfo call will fail
|
|
|
|
// and we get non-flat as desired.
|
|
|
|
BOOL useFlat = PR_FALSE;
|
|
|
|
mFlatMenus = ::SystemParametersInfo(SPI_GETFLATMENU, 0, &useFlat, 0) ?
|
|
|
|
useFlat : PR_FALSE;
|
2005-10-07 00:31:36 +00:00
|
|
|
}
|
|
|
|
|
2005-08-20 07:11:56 +00:00
|
|
|
HANDLE
|
|
|
|
nsNativeThemeWin::GetTheme(PRUint8 aWidgetType)
|
2005-08-20 07:12:56 +00:00
|
|
|
{
|
2005-08-20 07:11:58 +00:00
|
|
|
if (!mThemeDLL)
|
|
|
|
return NULL;
|
|
|
|
|
2005-08-20 07:11:56 +00:00
|
|
|
switch (aWidgetType) {
|
|
|
|
case NS_THEME_BUTTON:
|
|
|
|
case NS_THEME_RADIO:
|
2007-05-09 19:17:17 +00:00
|
|
|
case NS_THEME_RADIO_SMALL:
|
|
|
|
case NS_THEME_CHECKBOX:
|
|
|
|
case NS_THEME_CHECKBOX_SMALL: {
|
2005-08-20 07:11:56 +00:00
|
|
|
if (!mButtonTheme)
|
|
|
|
mButtonTheme = openTheme(NULL, L"Button");
|
|
|
|
return mButtonTheme;
|
|
|
|
}
|
2005-08-20 07:12:07 +00:00
|
|
|
case NS_THEME_TEXTFIELD:
|
2007-05-07 02:06:58 +00:00
|
|
|
case NS_THEME_TEXTFIELD_MULTILINE:
|
2005-08-20 07:12:07 +00:00
|
|
|
case NS_THEME_DROPDOWN: {
|
2005-08-20 07:12:06 +00:00
|
|
|
if (!mTextFieldTheme)
|
|
|
|
mTextFieldTheme = openTheme(NULL, L"Edit");
|
|
|
|
return mTextFieldTheme;
|
|
|
|
}
|
2005-08-20 07:12:00 +00:00
|
|
|
case NS_THEME_TOOLTIP: {
|
|
|
|
if (!mTooltipTheme)
|
|
|
|
mTooltipTheme = openTheme(NULL, L"Tooltip");
|
|
|
|
return mTooltipTheme;
|
|
|
|
}
|
2005-08-20 07:11:56 +00:00
|
|
|
case NS_THEME_TOOLBOX: {
|
|
|
|
if (!mRebarTheme)
|
|
|
|
mRebarTheme = openTheme(NULL, L"Rebar");
|
|
|
|
return mRebarTheme;
|
|
|
|
}
|
|
|
|
case NS_THEME_TOOLBAR:
|
2007-08-25 20:30:43 +00:00
|
|
|
case NS_THEME_TOOLBAR_BUTTON:
|
|
|
|
case NS_THEME_TOOLBAR_SEPARATOR: {
|
2005-08-20 07:11:56 +00:00
|
|
|
if (!mToolbarTheme)
|
|
|
|
mToolbarTheme = openTheme(NULL, L"Toolbar");
|
|
|
|
return mToolbarTheme;
|
|
|
|
}
|
2005-08-20 07:11:59 +00:00
|
|
|
case NS_THEME_PROGRESSBAR:
|
|
|
|
case NS_THEME_PROGRESSBAR_VERTICAL:
|
|
|
|
case NS_THEME_PROGRESSBAR_CHUNK:
|
|
|
|
case NS_THEME_PROGRESSBAR_CHUNK_VERTICAL: {
|
|
|
|
if (!mProgressTheme)
|
|
|
|
mProgressTheme = openTheme(NULL, L"Progress");
|
|
|
|
return mProgressTheme;
|
|
|
|
}
|
2005-08-20 07:11:56 +00:00
|
|
|
case NS_THEME_TAB:
|
2005-08-20 07:12:01 +00:00
|
|
|
case NS_THEME_TAB_LEFT_EDGE:
|
|
|
|
case NS_THEME_TAB_RIGHT_EDGE:
|
2005-08-20 07:12:02 +00:00
|
|
|
case NS_THEME_TAB_PANEL:
|
|
|
|
case NS_THEME_TAB_PANELS: {
|
2005-08-20 07:11:56 +00:00
|
|
|
if (!mTabTheme)
|
|
|
|
mTabTheme = openTheme(NULL, L"Tab");
|
|
|
|
return mTabTheme;
|
|
|
|
}
|
|
|
|
case NS_THEME_SCROLLBAR:
|
2007-07-13 21:46:28 +00:00
|
|
|
case NS_THEME_SCROLLBAR_SMALL:
|
2005-08-20 07:11:57 +00:00
|
|
|
case NS_THEME_SCROLLBAR_TRACK_VERTICAL:
|
|
|
|
case NS_THEME_SCROLLBAR_TRACK_HORIZONTAL:
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_UP:
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_DOWN:
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_LEFT:
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_RIGHT:
|
|
|
|
case NS_THEME_SCROLLBAR_THUMB_VERTICAL:
|
|
|
|
case NS_THEME_SCROLLBAR_THUMB_HORIZONTAL:
|
|
|
|
case NS_THEME_SCROLLBAR_GRIPPER_VERTICAL:
|
|
|
|
case NS_THEME_SCROLLBAR_GRIPPER_HORIZONTAL:
|
|
|
|
{
|
2005-08-20 07:11:56 +00:00
|
|
|
if (!mScrollbarTheme)
|
|
|
|
mScrollbarTheme = openTheme(NULL, L"Scrollbar");
|
|
|
|
return mScrollbarTheme;
|
|
|
|
}
|
2006-05-30 13:50:48 +00:00
|
|
|
case NS_THEME_SCALE_HORIZONTAL:
|
|
|
|
case NS_THEME_SCALE_VERTICAL:
|
|
|
|
case NS_THEME_SCALE_THUMB_HORIZONTAL:
|
|
|
|
case NS_THEME_SCALE_THUMB_VERTICAL:
|
|
|
|
{
|
|
|
|
if (!mScaleTheme)
|
|
|
|
mScaleTheme = openTheme(NULL, L"Trackbar");
|
|
|
|
return mScaleTheme;
|
|
|
|
}
|
2006-07-13 17:40:49 +00:00
|
|
|
case NS_THEME_SPINNER_UP_BUTTON:
|
|
|
|
case NS_THEME_SPINNER_DOWN_BUTTON:
|
|
|
|
{
|
|
|
|
if (!mSpinTheme)
|
|
|
|
mSpinTheme = openTheme(NULL, L"Spin");
|
|
|
|
return mSpinTheme;
|
|
|
|
}
|
2005-08-20 07:11:57 +00:00
|
|
|
case NS_THEME_STATUSBAR:
|
|
|
|
case NS_THEME_STATUSBAR_PANEL:
|
|
|
|
case NS_THEME_STATUSBAR_RESIZER_PANEL:
|
|
|
|
case NS_THEME_RESIZER:
|
|
|
|
{
|
2005-08-20 07:11:56 +00:00
|
|
|
if (!mStatusbarTheme)
|
|
|
|
mStatusbarTheme = openTheme(NULL, L"Status");
|
|
|
|
return mStatusbarTheme;
|
|
|
|
}
|
2005-08-20 07:12:07 +00:00
|
|
|
case NS_THEME_DROPDOWN_BUTTON: {
|
|
|
|
if (!mComboBoxTheme)
|
|
|
|
mComboBoxTheme = openTheme(NULL, L"Combobox");
|
|
|
|
return mComboBoxTheme;
|
|
|
|
}
|
2005-08-20 07:13:09 +00:00
|
|
|
case NS_THEME_TREEVIEW_HEADER_CELL:
|
|
|
|
case NS_THEME_TREEVIEW_HEADER_SORTARROW: {
|
|
|
|
if (!mHeaderTheme)
|
|
|
|
mHeaderTheme = openTheme(NULL, L"Header");
|
|
|
|
return mHeaderTheme;
|
|
|
|
}
|
2005-08-20 07:12:55 +00:00
|
|
|
case NS_THEME_LISTBOX:
|
|
|
|
case NS_THEME_LISTBOX_LISTITEM:
|
|
|
|
case NS_THEME_TREEVIEW:
|
|
|
|
case NS_THEME_TREEVIEW_TWISTY_OPEN:
|
|
|
|
case NS_THEME_TREEVIEW_TREEITEM: {
|
|
|
|
if (!mTreeViewTheme)
|
|
|
|
mTreeViewTheme = openTheme(NULL, L"Listview");
|
|
|
|
return mTreeViewTheme;
|
|
|
|
}
|
2007-08-06 17:45:57 +00:00
|
|
|
case NS_THEME_MENUBAR:
|
|
|
|
case NS_THEME_MENUPOPUP:
|
|
|
|
case NS_THEME_MENUITEM:
|
|
|
|
case NS_THEME_CHECKMENUITEM:
|
|
|
|
case NS_THEME_RADIOMENUITEM:
|
|
|
|
case NS_THEME_MENUCHECKBOX:
|
|
|
|
case NS_THEME_MENURADIO:
|
|
|
|
case NS_THEME_MENUSEPARATOR:
|
|
|
|
case NS_THEME_MENUARROW:
|
|
|
|
case NS_THEME_MENUIMAGE:
|
|
|
|
case NS_THEME_MENUITEMTEXT:
|
|
|
|
if (!mMenuTheme)
|
|
|
|
mMenuTheme = openTheme(NULL, L"Menu");
|
|
|
|
return mMenuTheme;
|
2005-08-20 07:11:56 +00:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsNativeThemeWin::GetThemePartAndState(nsIFrame* aFrame, PRUint8 aWidgetType,
|
|
|
|
PRInt32& aPart, PRInt32& aState)
|
|
|
|
{
|
|
|
|
switch (aWidgetType) {
|
|
|
|
case NS_THEME_BUTTON: {
|
2005-08-20 07:11:59 +00:00
|
|
|
aPart = BP_BUTTON;
|
2005-08-20 07:11:56 +00:00
|
|
|
if (!aFrame) {
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_NORMAL;
|
2005-08-20 07:11:56 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsDisabled(aFrame)) {
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_DISABLED;
|
2005-08-20 07:11:56 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2005-08-20 07:13:56 +00:00
|
|
|
PRInt32 eventState = GetContentState(aFrame, aWidgetType);
|
2005-08-20 07:11:56 +00:00
|
|
|
if (eventState & NS_EVENT_STATE_HOVER && eventState & NS_EVENT_STATE_ACTIVE)
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_ACTIVE;
|
2005-08-20 07:11:56 +00:00
|
|
|
else if (eventState & NS_EVENT_STATE_FOCUS)
|
2005-08-20 07:12:06 +00:00
|
|
|
aState = TS_FOCUSED;
|
2005-08-20 07:11:56 +00:00
|
|
|
else if (eventState & NS_EVENT_STATE_HOVER)
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_HOVER;
|
2005-08-20 07:11:56 +00:00
|
|
|
else
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_NORMAL;
|
2005-08-20 07:11:56 +00:00
|
|
|
|
2005-08-20 07:12:06 +00:00
|
|
|
// Check for default dialog buttons. These buttons should always look
|
|
|
|
// focused.
|
2005-08-20 07:13:56 +00:00
|
|
|
if (aState == TS_NORMAL && IsDefaultButton(aFrame))
|
2005-08-20 07:12:06 +00:00
|
|
|
aState = TS_FOCUSED;
|
2005-08-20 07:11:56 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
case NS_THEME_CHECKBOX:
|
2007-05-09 19:17:17 +00:00
|
|
|
case NS_THEME_CHECKBOX_SMALL:
|
|
|
|
case NS_THEME_RADIO:
|
|
|
|
case NS_THEME_RADIO_SMALL: {
|
|
|
|
bool isCheckbox = IsCheckboxWidgetType(aWidgetType);
|
|
|
|
aPart = isCheckbox ? BP_CHECKBOX : BP_RADIO;
|
2005-08-20 07:12:47 +00:00
|
|
|
|
|
|
|
// XXXdwh This check will need to be more complicated, since HTML radio groups
|
|
|
|
// use checked, but XUL radio groups use selected. There will need to be an
|
2006-05-05 06:52:21 +00:00
|
|
|
// IsNodeOfType test for HTML vs. XUL here.
|
2007-05-09 19:17:17 +00:00
|
|
|
nsIAtom* atom = isCheckbox ? nsWidgetAtoms::checked
|
|
|
|
: nsWidgetAtoms::selected;
|
2005-08-20 07:12:47 +00:00
|
|
|
|
2005-08-20 07:12:55 +00:00
|
|
|
PRBool isHTML = PR_FALSE;
|
|
|
|
PRBool isHTMLChecked = PR_FALSE;
|
2005-08-20 07:13:56 +00:00
|
|
|
PRBool isXULCheckboxRadio = PR_FALSE;
|
2005-08-20 07:12:55 +00:00
|
|
|
|
2005-08-20 07:11:56 +00:00
|
|
|
if (!aFrame)
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_NORMAL;
|
2005-08-20 07:11:56 +00:00
|
|
|
else {
|
2005-08-20 07:12:08 +00:00
|
|
|
// For XUL checkboxes and radio buttons, the state of the parent
|
|
|
|
// determines our state.
|
2005-08-20 07:13:33 +00:00
|
|
|
nsIContent* content = aFrame->GetContent();
|
2006-05-05 06:52:21 +00:00
|
|
|
PRBool isXULCheckboxRadio = content->IsNodeOfType(nsINode::eXUL);
|
2005-08-20 07:13:56 +00:00
|
|
|
if (!isXULCheckboxRadio) {
|
2005-08-20 07:12:55 +00:00
|
|
|
// Attempt a QI.
|
|
|
|
nsCOMPtr<nsIDOMHTMLInputElement> inputElt(do_QueryInterface(content));
|
|
|
|
if (inputElt) {
|
|
|
|
inputElt->GetChecked(&isHTMLChecked);
|
|
|
|
isHTML = PR_TRUE;
|
|
|
|
}
|
2005-08-20 07:12:47 +00:00
|
|
|
}
|
|
|
|
|
2005-08-20 07:13:56 +00:00
|
|
|
if (IsDisabled(isXULCheckboxRadio ? aFrame->GetParent(): aFrame))
|
2005-08-20 07:12:08 +00:00
|
|
|
aState = TS_DISABLED;
|
|
|
|
else {
|
2005-08-20 07:13:56 +00:00
|
|
|
PRInt32 eventState = GetContentState(aFrame, aWidgetType);
|
2005-08-20 07:12:08 +00:00
|
|
|
if (eventState & NS_EVENT_STATE_HOVER && eventState & NS_EVENT_STATE_ACTIVE)
|
|
|
|
aState = TS_ACTIVE;
|
|
|
|
else if (eventState & NS_EVENT_STATE_HOVER)
|
|
|
|
aState = TS_HOVER;
|
|
|
|
else
|
|
|
|
aState = TS_NORMAL;
|
|
|
|
}
|
2005-08-20 07:11:56 +00:00
|
|
|
}
|
|
|
|
|
2005-08-20 07:12:55 +00:00
|
|
|
if (isHTML) {
|
|
|
|
if (isHTMLChecked)
|
|
|
|
aState += 4;
|
|
|
|
}
|
2007-05-09 19:17:17 +00:00
|
|
|
else if (isCheckbox ? IsChecked(aFrame) : IsSelected(aFrame))
|
2005-08-20 07:11:56 +00:00
|
|
|
aState += 4; // 4 unchecked states, 4 checked states.
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2005-08-20 07:12:07 +00:00
|
|
|
case NS_THEME_TEXTFIELD:
|
2007-05-07 02:06:58 +00:00
|
|
|
case NS_THEME_TEXTFIELD_MULTILINE:
|
2005-08-20 07:12:07 +00:00
|
|
|
case NS_THEME_DROPDOWN: {
|
2005-08-20 07:12:06 +00:00
|
|
|
aPart = TFP_TEXTFIELD;
|
|
|
|
if (!aFrame) {
|
|
|
|
aState = TS_NORMAL;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsDisabled(aFrame)) {
|
|
|
|
aState = TS_DISABLED;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsReadOnly(aFrame)) {
|
|
|
|
aState = TFS_READONLY;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2005-08-20 07:13:56 +00:00
|
|
|
PRInt32 eventState = GetContentState(aFrame, aWidgetType);
|
2005-08-20 07:12:06 +00:00
|
|
|
if (eventState & NS_EVENT_STATE_HOVER && eventState & NS_EVENT_STATE_ACTIVE)
|
|
|
|
aState = TS_ACTIVE;
|
|
|
|
else if (eventState & NS_EVENT_STATE_FOCUS)
|
|
|
|
aState = TS_FOCUSED;
|
|
|
|
else if (eventState & NS_EVENT_STATE_HOVER)
|
|
|
|
aState = TS_HOVER;
|
|
|
|
else
|
|
|
|
aState = TS_NORMAL;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2005-08-20 07:12:00 +00:00
|
|
|
case NS_THEME_TOOLTIP: {
|
|
|
|
aPart = TTP_STANDARD;
|
|
|
|
aState = TS_NORMAL;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2005-08-20 07:11:59 +00:00
|
|
|
case NS_THEME_PROGRESSBAR: {
|
|
|
|
aPart = PP_BAR;
|
|
|
|
aState = TS_NORMAL;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
case NS_THEME_PROGRESSBAR_CHUNK: {
|
|
|
|
aPart = PP_CHUNK;
|
|
|
|
aState = TS_NORMAL;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
case NS_THEME_PROGRESSBAR_VERTICAL: {
|
|
|
|
aPart = PP_BARVERT;
|
|
|
|
aState = TS_NORMAL;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
case NS_THEME_PROGRESSBAR_CHUNK_VERTICAL: {
|
|
|
|
aPart = PP_CHUNKVERT;
|
|
|
|
aState = TS_NORMAL;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2005-08-20 07:11:56 +00:00
|
|
|
case NS_THEME_TOOLBAR_BUTTON: {
|
2005-08-20 07:11:59 +00:00
|
|
|
aPart = BP_BUTTON;
|
2005-08-20 07:11:56 +00:00
|
|
|
if (!aFrame) {
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_NORMAL;
|
2005-08-20 07:11:56 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsDisabled(aFrame)) {
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_DISABLED;
|
2005-08-20 07:11:56 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2005-08-20 07:13:56 +00:00
|
|
|
PRInt32 eventState = GetContentState(aFrame, aWidgetType);
|
2005-08-20 07:11:56 +00:00
|
|
|
if (eventState & NS_EVENT_STATE_HOVER && eventState & NS_EVENT_STATE_ACTIVE)
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_ACTIVE;
|
2005-08-20 07:14:26 +00:00
|
|
|
else if (eventState & NS_EVENT_STATE_HOVER) {
|
|
|
|
if (IsCheckedButton(aFrame))
|
|
|
|
aState = TB_HOVER_CHECKED;
|
|
|
|
else
|
|
|
|
aState = TS_HOVER;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (IsCheckedButton(aFrame))
|
|
|
|
aState = TB_CHECKED;
|
|
|
|
else
|
|
|
|
aState = TS_NORMAL;
|
|
|
|
}
|
|
|
|
|
2005-08-20 07:11:56 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2007-08-25 20:30:43 +00:00
|
|
|
case NS_THEME_TOOLBAR_SEPARATOR: {
|
|
|
|
aPart = TP_SEPARATOR;
|
|
|
|
aState = TS_NORMAL;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2005-08-20 07:11:57 +00:00
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_UP:
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_DOWN:
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_LEFT:
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_RIGHT: {
|
2005-08-20 07:11:56 +00:00
|
|
|
aPart = SP_BUTTON;
|
2005-08-20 07:11:57 +00:00
|
|
|
aState = (aWidgetType - NS_THEME_SCROLLBAR_BUTTON_UP)*4;
|
2005-08-20 07:11:56 +00:00
|
|
|
if (!aFrame)
|
2005-08-20 07:11:59 +00:00
|
|
|
aState += TS_NORMAL;
|
2005-08-20 07:11:56 +00:00
|
|
|
else if (IsDisabled(aFrame))
|
2005-08-20 07:11:59 +00:00
|
|
|
aState += TS_DISABLED;
|
2005-08-20 07:11:56 +00:00
|
|
|
else {
|
2005-08-20 07:13:56 +00:00
|
|
|
PRInt32 eventState = GetContentState(aFrame, aWidgetType);
|
2007-08-17 20:47:33 +00:00
|
|
|
nsIFrame *parent = aFrame->GetParent();
|
|
|
|
PRInt32 parentState = GetContentState(parent, parent->GetStyleDisplay()->mAppearance);
|
2005-08-20 07:11:56 +00:00
|
|
|
if (eventState & NS_EVENT_STATE_HOVER && eventState & NS_EVENT_STATE_ACTIVE)
|
2005-08-20 07:11:59 +00:00
|
|
|
aState += TS_ACTIVE;
|
2005-08-20 07:11:56 +00:00
|
|
|
else if (eventState & NS_EVENT_STATE_HOVER)
|
2005-08-20 07:11:59 +00:00
|
|
|
aState += TS_HOVER;
|
2007-09-02 16:15:14 +00:00
|
|
|
else if (GetWindowsVersion() >= VISTA_VERSION && parentState & NS_EVENT_STATE_HOVER)
|
2007-08-17 20:47:33 +00:00
|
|
|
aState = (aWidgetType - NS_THEME_SCROLLBAR_BUTTON_UP) + SP_BUTTON_IMPLICIT_HOVER_BASE;
|
2005-08-20 07:13:11 +00:00
|
|
|
else
|
2005-08-20 07:11:59 +00:00
|
|
|
aState += TS_NORMAL;
|
2005-08-20 07:11:56 +00:00
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2005-08-20 07:11:57 +00:00
|
|
|
case NS_THEME_SCROLLBAR_TRACK_HORIZONTAL:
|
|
|
|
case NS_THEME_SCROLLBAR_TRACK_VERTICAL: {
|
|
|
|
aPart = (aWidgetType == NS_THEME_SCROLLBAR_TRACK_HORIZONTAL) ?
|
|
|
|
SP_TRACKSTARTHOR : SP_TRACKSTARTVERT;
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_NORMAL;
|
2005-08-20 07:11:56 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2005-08-20 07:11:57 +00:00
|
|
|
case NS_THEME_SCROLLBAR_THUMB_HORIZONTAL:
|
|
|
|
case NS_THEME_SCROLLBAR_THUMB_VERTICAL: {
|
|
|
|
aPart = (aWidgetType == NS_THEME_SCROLLBAR_THUMB_HORIZONTAL) ?
|
|
|
|
SP_THUMBHOR : SP_THUMBVERT;
|
2005-08-20 07:11:56 +00:00
|
|
|
if (!aFrame)
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_NORMAL;
|
2005-08-20 07:11:56 +00:00
|
|
|
else if (IsDisabled(aFrame))
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_DISABLED;
|
2005-08-20 07:11:56 +00:00
|
|
|
else {
|
2005-08-20 07:13:56 +00:00
|
|
|
PRInt32 eventState = GetContentState(aFrame, aWidgetType);
|
2005-08-20 07:11:56 +00:00
|
|
|
if (eventState & NS_EVENT_STATE_ACTIVE) // Hover is not also a requirement for
|
|
|
|
// the thumb, since the drag is not canceled
|
|
|
|
// when you move outside the thumb.
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_ACTIVE;
|
2005-08-20 07:11:56 +00:00
|
|
|
else if (eventState & NS_EVENT_STATE_HOVER)
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_HOVER;
|
2005-08-20 07:11:56 +00:00
|
|
|
else
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_NORMAL;
|
2005-08-20 07:11:56 +00:00
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2005-08-20 07:11:57 +00:00
|
|
|
case NS_THEME_SCROLLBAR_GRIPPER_VERTICAL:
|
|
|
|
case NS_THEME_SCROLLBAR_GRIPPER_HORIZONTAL: {
|
|
|
|
aPart = (aWidgetType == NS_THEME_SCROLLBAR_GRIPPER_HORIZONTAL) ?
|
|
|
|
SP_GRIPPERHOR : SP_GRIPPERVERT;
|
2005-08-20 07:11:56 +00:00
|
|
|
if (!aFrame)
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_NORMAL;
|
2005-08-20 07:11:56 +00:00
|
|
|
else if (IsDisabled(aFrame))
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_DISABLED;
|
2005-08-20 07:11:56 +00:00
|
|
|
else {
|
2005-08-20 07:11:57 +00:00
|
|
|
// XXXdwh The gripper needs to get a hover attribute set on it, since it
|
|
|
|
// never goes into :hover.
|
2005-08-20 07:13:56 +00:00
|
|
|
PRInt32 eventState = GetContentState(aFrame, aWidgetType);
|
2005-08-20 07:11:56 +00:00
|
|
|
if (eventState & NS_EVENT_STATE_ACTIVE) // Hover is not also a requirement for
|
|
|
|
// the gripper, since the drag is not canceled
|
|
|
|
// when you move outside the gripper.
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_ACTIVE;
|
2005-08-20 07:11:56 +00:00
|
|
|
else if (eventState & NS_EVENT_STATE_HOVER)
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_HOVER;
|
2005-08-20 07:11:56 +00:00
|
|
|
else
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_NORMAL;
|
2005-08-20 07:11:56 +00:00
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2006-05-30 13:50:48 +00:00
|
|
|
case NS_THEME_SCALE_HORIZONTAL:
|
|
|
|
case NS_THEME_SCALE_VERTICAL: {
|
|
|
|
aPart = (aWidgetType == NS_THEME_SCALE_HORIZONTAL) ?
|
|
|
|
TKP_TRACK : TKP_TRACKVERT;
|
|
|
|
|
|
|
|
aState = TS_NORMAL;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
case NS_THEME_SCALE_THUMB_HORIZONTAL:
|
|
|
|
case NS_THEME_SCALE_THUMB_VERTICAL: {
|
|
|
|
aPart = (aWidgetType == NS_THEME_SCALE_THUMB_HORIZONTAL) ?
|
|
|
|
TKP_THUMB : TKP_THUMBVERT;
|
|
|
|
if (!aFrame)
|
|
|
|
aState = TS_NORMAL;
|
|
|
|
else if (IsDisabled(aFrame)) {
|
|
|
|
aState = TKP_DISABLED;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
PRInt32 eventState = GetContentState(aFrame, aWidgetType);
|
|
|
|
if (eventState & NS_EVENT_STATE_ACTIVE) // Hover is not also a requirement for
|
|
|
|
// the thumb, since the drag is not canceled
|
|
|
|
// when you move outside the thumb.
|
|
|
|
aState = TS_ACTIVE;
|
|
|
|
else if (eventState & NS_EVENT_STATE_FOCUS)
|
|
|
|
aState = TKP_FOCUSED;
|
|
|
|
else if (eventState & NS_EVENT_STATE_HOVER)
|
|
|
|
aState = TS_HOVER;
|
|
|
|
else
|
|
|
|
aState = TS_NORMAL;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2006-07-13 17:40:49 +00:00
|
|
|
case NS_THEME_SPINNER_UP_BUTTON:
|
|
|
|
case NS_THEME_SPINNER_DOWN_BUTTON: {
|
|
|
|
aPart = (aWidgetType == NS_THEME_SPINNER_UP_BUTTON) ?
|
|
|
|
SPNP_UP : SPNP_DOWN;
|
|
|
|
if (!aFrame)
|
|
|
|
aState = TS_NORMAL;
|
|
|
|
else if (IsDisabled(aFrame)) {
|
|
|
|
aState = TS_DISABLED;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
PRInt32 eventState = GetContentState(aFrame, aWidgetType);
|
|
|
|
if (eventState & NS_EVENT_STATE_HOVER && eventState & NS_EVENT_STATE_ACTIVE)
|
|
|
|
aState = TS_ACTIVE;
|
|
|
|
else if (eventState & NS_EVENT_STATE_HOVER)
|
|
|
|
aState = TS_HOVER;
|
|
|
|
else
|
|
|
|
aState = TS_NORMAL;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2005-08-20 07:11:56 +00:00
|
|
|
case NS_THEME_TOOLBOX:
|
2005-08-20 07:11:57 +00:00
|
|
|
case NS_THEME_STATUSBAR:
|
2007-07-13 21:46:28 +00:00
|
|
|
case NS_THEME_SCROLLBAR:
|
|
|
|
case NS_THEME_SCROLLBAR_SMALL: {
|
2005-08-20 07:11:56 +00:00
|
|
|
aPart = aState = 0;
|
|
|
|
return NS_OK; // These have no part or state.
|
|
|
|
}
|
2005-10-07 00:31:36 +00:00
|
|
|
case NS_THEME_TOOLBAR: {
|
|
|
|
// Use -1 to indicate we don't wish to have the theme background drawn
|
|
|
|
// for this item. We will pass any nessessary information via aState,
|
|
|
|
// and will render the item using separate code.
|
|
|
|
aPart = -1;
|
|
|
|
aState = 0;
|
|
|
|
if (aFrame) {
|
|
|
|
nsIContent* content = aFrame->GetContent();
|
|
|
|
nsIContent* parent = content->GetParent();
|
2007-07-14 15:11:37 +00:00
|
|
|
// XXXzeniko hiding the first toolbar will result in an unwanted margin
|
2005-10-07 00:31:36 +00:00
|
|
|
if (parent && parent->GetChildAt(0) == content) {
|
|
|
|
aState = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2005-08-20 07:11:57 +00:00
|
|
|
case NS_THEME_STATUSBAR_PANEL:
|
|
|
|
case NS_THEME_STATUSBAR_RESIZER_PANEL:
|
|
|
|
case NS_THEME_RESIZER: {
|
|
|
|
aPart = (aWidgetType - NS_THEME_STATUSBAR_PANEL) + 1;
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_NORMAL;
|
2005-08-20 07:11:57 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2005-08-20 07:12:55 +00:00
|
|
|
case NS_THEME_TREEVIEW:
|
|
|
|
case NS_THEME_LISTBOX: {
|
|
|
|
aPart = TREEVIEW_BODY;
|
|
|
|
aState = TS_NORMAL;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2005-08-20 07:12:02 +00:00
|
|
|
case NS_THEME_TAB_PANELS: {
|
|
|
|
aPart = TABP_PANELS;
|
|
|
|
aState = TS_NORMAL;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
case NS_THEME_TAB_PANEL: {
|
|
|
|
aPart = TABP_PANEL;
|
|
|
|
aState = TS_NORMAL;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2005-08-20 07:12:01 +00:00
|
|
|
case NS_THEME_TAB:
|
|
|
|
case NS_THEME_TAB_LEFT_EDGE:
|
|
|
|
case NS_THEME_TAB_RIGHT_EDGE: {
|
2005-08-20 07:11:56 +00:00
|
|
|
aPart = TABP_TAB;
|
|
|
|
if (!aFrame) {
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_NORMAL;
|
2005-08-20 07:11:56 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsDisabled(aFrame)) {
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_DISABLED;
|
2005-08-20 07:11:56 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2005-08-20 07:13:56 +00:00
|
|
|
if (IsSelectedTab(aFrame)) {
|
2005-08-20 07:11:56 +00:00
|
|
|
aPart = TABP_TAB_SELECTED;
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_ACTIVE; // The selected tab is always "pressed".
|
2005-08-20 07:11:56 +00:00
|
|
|
}
|
|
|
|
else {
|
2005-08-20 07:13:56 +00:00
|
|
|
PRInt32 eventState = GetContentState(aFrame, aWidgetType);
|
2005-08-20 07:11:56 +00:00
|
|
|
if (eventState & NS_EVENT_STATE_HOVER && eventState & NS_EVENT_STATE_ACTIVE)
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_ACTIVE;
|
2005-08-20 07:11:56 +00:00
|
|
|
else if (eventState & NS_EVENT_STATE_FOCUS)
|
2005-08-20 07:12:06 +00:00
|
|
|
aState = TS_FOCUSED;
|
2005-08-20 07:11:56 +00:00
|
|
|
else if (eventState & NS_EVENT_STATE_HOVER)
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_HOVER;
|
2005-08-20 07:11:56 +00:00
|
|
|
else
|
2005-08-20 07:11:59 +00:00
|
|
|
aState = TS_NORMAL;
|
2005-08-20 07:11:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2005-08-20 07:13:09 +00:00
|
|
|
case NS_THEME_TREEVIEW_HEADER_SORTARROW: {
|
|
|
|
// XXX Probably will never work due to a bug in the Luna theme.
|
|
|
|
aPart = 4;
|
|
|
|
aState = 1;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
case NS_THEME_TREEVIEW_HEADER_CELL: {
|
|
|
|
aPart = 1;
|
|
|
|
if (!aFrame) {
|
|
|
|
aState = TS_NORMAL;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2005-08-20 07:13:56 +00:00
|
|
|
PRInt32 eventState = GetContentState(aFrame, aWidgetType);
|
2005-08-20 07:13:09 +00:00
|
|
|
if (eventState & NS_EVENT_STATE_HOVER && eventState & NS_EVENT_STATE_ACTIVE)
|
|
|
|
aState = TS_ACTIVE;
|
|
|
|
else if (eventState & NS_EVENT_STATE_FOCUS)
|
|
|
|
aState = TS_FOCUSED;
|
|
|
|
else if (eventState & NS_EVENT_STATE_HOVER)
|
|
|
|
aState = TS_HOVER;
|
|
|
|
else
|
|
|
|
aState = TS_NORMAL;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2005-08-20 07:12:07 +00:00
|
|
|
case NS_THEME_DROPDOWN_BUTTON: {
|
|
|
|
aPart = CBP_DROPMARKER;
|
|
|
|
|
2005-08-20 07:13:33 +00:00
|
|
|
nsIContent* content = aFrame->GetContent();
|
2005-08-20 07:13:11 +00:00
|
|
|
|
2005-08-20 07:13:33 +00:00
|
|
|
nsIFrame* parentFrame = aFrame->GetParent();
|
2007-07-04 15:49:38 +00:00
|
|
|
if (parentFrame->GetType() == nsWidgetAtoms::menuFrame ||
|
|
|
|
(content && content->IsNodeOfType(nsINode::eHTML)))
|
2005-08-20 07:13:11 +00:00
|
|
|
// XUL menu lists and HTML selects get state from parent
|
|
|
|
aFrame = parentFrame;
|
|
|
|
|
|
|
|
if (IsDisabled(aFrame))
|
2005-08-20 07:12:07 +00:00
|
|
|
aState = TS_DISABLED;
|
2005-08-20 07:13:11 +00:00
|
|
|
else {
|
2005-08-20 07:13:56 +00:00
|
|
|
PRInt32 eventState = GetContentState(aFrame, aWidgetType);
|
2005-08-20 07:13:11 +00:00
|
|
|
if (eventState & NS_EVENT_STATE_HOVER && eventState & NS_EVENT_STATE_ACTIVE)
|
|
|
|
aState = TS_ACTIVE;
|
|
|
|
else if (eventState & NS_EVENT_STATE_HOVER)
|
|
|
|
aState = TS_HOVER;
|
|
|
|
else
|
|
|
|
aState = TS_NORMAL;
|
2005-08-20 07:12:07 +00:00
|
|
|
}
|
2005-08-20 07:13:11 +00:00
|
|
|
|
2005-08-20 07:12:07 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2007-08-06 17:45:57 +00:00
|
|
|
case NS_THEME_MENUPOPUP: {
|
|
|
|
aPart = MENU_POPUPBACKGROUND;
|
|
|
|
aState = MB_ACTIVE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
case NS_THEME_MENUITEM:
|
|
|
|
case NS_THEME_CHECKMENUITEM:
|
|
|
|
case NS_THEME_RADIOMENUITEM: {
|
|
|
|
PRBool isTopLevel = PR_FALSE;
|
|
|
|
PRBool isOpen = PR_FALSE;
|
|
|
|
PRBool isHover = PR_FALSE;
|
|
|
|
nsIMenuFrame *menuFrame;
|
|
|
|
CallQueryInterface(aFrame, &menuFrame);
|
|
|
|
|
|
|
|
isTopLevel = IsTopLevelMenu(aFrame);
|
|
|
|
|
|
|
|
if (menuFrame)
|
|
|
|
isOpen = menuFrame->IsOpen();
|
|
|
|
isHover = CheckBooleanAttr(aFrame, nsWidgetAtoms::mozmenuactive);
|
|
|
|
|
|
|
|
if (isTopLevel) {
|
|
|
|
aPart = MENU_BARITEM;
|
|
|
|
|
|
|
|
if (isOpen)
|
|
|
|
aState = MBI_PUSHED;
|
|
|
|
else if (isHover)
|
|
|
|
aState = MBI_HOT;
|
|
|
|
else
|
|
|
|
aState = MBI_NORMAL;
|
|
|
|
|
|
|
|
// the disabled states are offset by 3
|
|
|
|
if (IsDisabled(aFrame))
|
|
|
|
aState += 3;
|
|
|
|
} else {
|
|
|
|
aPart = MENU_POPUPITEM;
|
|
|
|
|
|
|
|
if (isHover)
|
|
|
|
aState = MPI_HOT;
|
|
|
|
else
|
|
|
|
aState = MPI_NORMAL;
|
|
|
|
|
|
|
|
// the disabled states are offset by 2
|
|
|
|
if (IsDisabled(aFrame))
|
|
|
|
aState += 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
case NS_THEME_MENUSEPARATOR:
|
|
|
|
aPart = MENU_POPUPSEPARATOR;
|
|
|
|
aState = 0;
|
|
|
|
return NS_OK;
|
|
|
|
case NS_THEME_MENUARROW:
|
|
|
|
aPart = MENU_POPUPSUBMENU;
|
|
|
|
aState = IsDisabled(aFrame) ? MSM_DISABLED : MSM_NORMAL;
|
|
|
|
return NS_OK;
|
|
|
|
case NS_THEME_MENUCHECKBOX:
|
|
|
|
case NS_THEME_MENURADIO:
|
|
|
|
{
|
|
|
|
PRBool isChecked;
|
|
|
|
PRBool isDisabled;
|
|
|
|
|
|
|
|
isChecked = CheckBooleanAttr(aFrame, nsWidgetAtoms::checked);
|
|
|
|
isDisabled = CheckBooleanAttr(aFrame, nsWidgetAtoms::disabled);
|
|
|
|
|
|
|
|
aPart = MENU_POPUPCHECK;
|
|
|
|
aState = MC_CHECKMARKNORMAL;
|
|
|
|
|
|
|
|
// Radio states are offset by 2
|
|
|
|
if (aWidgetType == NS_THEME_MENURADIO)
|
|
|
|
aState += 2;
|
|
|
|
|
|
|
|
// the disabled states are offset by 1
|
|
|
|
if (isDisabled)
|
|
|
|
aState += 1;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
case NS_THEME_MENUITEMTEXT:
|
|
|
|
case NS_THEME_MENUIMAGE:
|
|
|
|
aPart = -1;
|
|
|
|
aState = 0;
|
|
|
|
return NS_OK;
|
2005-08-20 07:11:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
aPart = 0;
|
|
|
|
aState = 0;
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsNativeThemeWin::DrawWidgetBackground(nsIRenderingContext* aContext,
|
|
|
|
nsIFrame* aFrame,
|
|
|
|
PRUint8 aWidgetType,
|
|
|
|
const nsRect& aRect,
|
|
|
|
const nsRect& aClipRect)
|
|
|
|
{
|
|
|
|
HANDLE theme = GetTheme(aWidgetType);
|
|
|
|
if (!theme)
|
2005-08-20 07:13:11 +00:00
|
|
|
return ClassicDrawWidgetBackground(aContext, aFrame, aWidgetType, aRect, aClipRect);
|
|
|
|
|
2007-06-30 05:00:02 +00:00
|
|
|
#ifndef WINCE
|
|
|
|
if (aWidgetType == NS_THEME_TOOLTIP && mOsVersion.dwMajorVersion < 6) {
|
|
|
|
// BUG #161600: When rendering a non-classic tooltip, check
|
|
|
|
// for Windows prior to Vista, and if so, force a classic rendering
|
|
|
|
return ClassicDrawWidgetBackground(aContext, aFrame, aWidgetType, aRect, aClipRect);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-08-20 07:13:11 +00:00
|
|
|
if (!drawThemeBG)
|
|
|
|
return NS_ERROR_FAILURE;
|
2005-08-20 07:11:56 +00:00
|
|
|
|
|
|
|
PRInt32 part, state;
|
|
|
|
nsresult rv = GetThemePartAndState(aFrame, aWidgetType, part, state);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
2005-08-23 02:11:54 +00:00
|
|
|
nsCOMPtr<nsIDeviceContext> dc;
|
|
|
|
aContext->GetDeviceContext(*getter_AddRefs(dc));
|
2007-06-27 16:42:37 +00:00
|
|
|
gfxFloat p2a = gfxFloat(dc->AppUnitsPerDevPixel());
|
2005-08-20 07:11:56 +00:00
|
|
|
RECT widgetRect;
|
|
|
|
RECT clipRect;
|
2007-06-27 16:42:37 +00:00
|
|
|
gfxRect tr(aRect.x, aRect.y, aRect.width, aRect.height),
|
|
|
|
cr(aClipRect.x, aClipRect.y, aClipRect.width, aClipRect.height);
|
2006-02-09 01:24:30 +00:00
|
|
|
|
2007-06-27 16:42:37 +00:00
|
|
|
tr.ScaleInverse(p2a);
|
|
|
|
cr.ScaleInverse(p2a);
|
2005-10-06 04:02:10 +00:00
|
|
|
|
2006-02-09 01:24:30 +00:00
|
|
|
nsRefPtr<gfxContext> ctx = (gfxContext*)aContext->GetNativeGraphicData(nsIRenderingContext::NATIVE_THEBES_CONTEXT);
|
|
|
|
|
2007-03-03 00:18:34 +00:00
|
|
|
gfxWindowsNativeDrawing nativeDrawing(ctx, cr, GetWidgetNativeDrawingFlags(aWidgetType));
|
2006-02-09 01:24:30 +00:00
|
|
|
|
2007-03-03 00:18:34 +00:00
|
|
|
RENDER_AGAIN:
|
2006-02-09 01:24:30 +00:00
|
|
|
|
2007-03-03 00:18:34 +00:00
|
|
|
HDC hdc = nativeDrawing.BeginNativeDrawing();
|
2007-08-09 18:54:17 +00:00
|
|
|
if (!hdc)
|
|
|
|
return NS_ERROR_FAILURE;
|
2006-02-09 01:24:30 +00:00
|
|
|
|
2007-03-03 00:18:34 +00:00
|
|
|
nativeDrawing.TransformToNativeRect(tr, widgetRect);
|
|
|
|
nativeDrawing.TransformToNativeRect(cr, clipRect);
|
2005-10-06 04:02:10 +00:00
|
|
|
|
2006-06-05 23:16:25 +00:00
|
|
|
#if 0
|
2007-03-03 00:18:34 +00:00
|
|
|
{
|
|
|
|
fprintf (stderr, "xform: %f %f %f %f [%f %f]\n", m.xx, m.yx, m.xy, m.yy, m.x0, m.y0);
|
|
|
|
fprintf (stderr, "tr: [%d %d %d %d]\ncr: [%d %d %d %d]\noff: [%f %f]\n",
|
|
|
|
tr.x, tr.y, tr.width, tr.height, cr.x, cr.y, cr.width, cr.height,
|
|
|
|
offset.x, offset.y);
|
|
|
|
}
|
2006-06-05 23:16:25 +00:00
|
|
|
#endif
|
|
|
|
|
2005-08-20 07:12:01 +00:00
|
|
|
// For left edge and right edge tabs, we need to adjust the widget
|
|
|
|
// rects and clip rects so that the edges don't get drawn.
|
|
|
|
if (aWidgetType == NS_THEME_TAB_LEFT_EDGE || aWidgetType == NS_THEME_TAB_RIGHT_EDGE) {
|
2005-08-20 07:12:06 +00:00
|
|
|
// HACK ALERT: There appears to be no way to really obtain this value, so we're forced
|
2005-08-20 07:12:01 +00:00
|
|
|
// to just use the default value for Luna (which also happens to be correct for
|
|
|
|
// all the other skins I've tried).
|
|
|
|
PRInt32 edgeSize = 2;
|
|
|
|
|
|
|
|
// Armed with the size of the edge, we now need to either shift to the left or to the
|
|
|
|
// right. The clip rect won't include this extra area, so we know that we're
|
|
|
|
// effectively shifting the edge out of view (such that it won't be painted).
|
|
|
|
if (aWidgetType == NS_THEME_TAB_LEFT_EDGE)
|
|
|
|
// The right edge should not be drawn. Extend our rect by the edge size.
|
|
|
|
widgetRect.right += edgeSize;
|
|
|
|
else
|
|
|
|
// The left edge should not be drawn. Move the widget rect's left coord back.
|
|
|
|
widgetRect.left -= edgeSize;
|
|
|
|
}
|
2005-10-07 00:31:36 +00:00
|
|
|
|
2006-05-30 13:50:48 +00:00
|
|
|
// widgetRect is the bounding box for a widget, yet the scale track is only
|
|
|
|
// a small portion of this size, so the edges of the scale need to be
|
|
|
|
// adjusted to the real size of the track.
|
|
|
|
if (aWidgetType == NS_THEME_SCALE_HORIZONTAL ||
|
|
|
|
aWidgetType == NS_THEME_SCALE_VERTICAL) {
|
|
|
|
RECT contentRect;
|
|
|
|
getThemeContentRect(theme, hdc, part, state, &widgetRect, &contentRect);
|
|
|
|
|
|
|
|
SIZE siz;
|
|
|
|
getThemePartSize(theme, hdc, part, state, &widgetRect, 1, &siz);
|
|
|
|
|
|
|
|
if (aWidgetType == NS_THEME_SCALE_HORIZONTAL) {
|
|
|
|
PRInt32 adjustment = (contentRect.bottom - contentRect.top - siz.cy) / 2 + 1;
|
|
|
|
contentRect.top += adjustment;
|
|
|
|
contentRect.bottom -= adjustment;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
PRInt32 adjustment = (contentRect.right - contentRect.left - siz.cx) / 2 + 1;
|
|
|
|
// need to subtract one from the left position, otherwise the scale's
|
|
|
|
// border isn't visible
|
|
|
|
contentRect.left += adjustment - 1;
|
|
|
|
contentRect.right -= adjustment;
|
|
|
|
}
|
|
|
|
|
|
|
|
drawThemeBG(theme, hdc, part, state, &contentRect, &clipRect);
|
|
|
|
}
|
2007-08-06 17:45:57 +00:00
|
|
|
else if (aWidgetType == NS_THEME_MENUCHECKBOX || aWidgetType == NS_THEME_MENURADIO)
|
|
|
|
{
|
|
|
|
PRBool isChecked = PR_FALSE;
|
|
|
|
isChecked = CheckBooleanAttr(aFrame, nsWidgetAtoms::checked);
|
|
|
|
|
|
|
|
if (isChecked)
|
|
|
|
{
|
|
|
|
int bgState = MCB_NORMAL;
|
|
|
|
PRBool isDisabled = IsDisabled(aFrame);
|
|
|
|
|
|
|
|
// the disabled states are offset by 1
|
|
|
|
if (isDisabled)
|
|
|
|
bgState += 1;
|
|
|
|
|
|
|
|
SIZE checkboxSize(GetCheckboxSize(theme,hdc));
|
|
|
|
|
|
|
|
RECT checkRect = widgetRect;
|
|
|
|
checkRect.right = checkRect.left+checkboxSize.cx;
|
|
|
|
|
|
|
|
// Center the checkbox vertically in the menuitem
|
|
|
|
checkRect.top += (checkRect.bottom - checkRect.top)/2 - checkboxSize.cy/2;
|
|
|
|
checkRect.bottom = checkRect.top + checkboxSize.cy;
|
|
|
|
|
|
|
|
drawThemeBG(theme, hdc, MENU_POPUPCHECKBACKGROUND, bgState, &checkRect, &clipRect);
|
|
|
|
drawThemeBG(theme, hdc, MENU_POPUPCHECK, state, &checkRect, &clipRect);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (aWidgetType == NS_THEME_MENUPOPUP)
|
|
|
|
{
|
|
|
|
drawThemeBG(theme, hdc, MENU_POPUPBORDERS, /* state */ 0, &widgetRect, &clipRect);
|
|
|
|
SIZE borderSize;
|
|
|
|
getThemePartSize(theme, hdc, MENU_POPUPBORDERS, 0, NULL, TS_TRUE, &borderSize);
|
|
|
|
|
|
|
|
RECT bgRect = widgetRect;
|
|
|
|
bgRect.top += borderSize.cy;
|
|
|
|
bgRect.bottom -= borderSize.cy;
|
|
|
|
bgRect.left += borderSize.cx;
|
|
|
|
bgRect.right -= borderSize.cx;
|
|
|
|
|
|
|
|
drawThemeBG(theme, hdc, MENU_POPUPBACKGROUND, /* state */ 0, &bgRect, &clipRect);
|
|
|
|
|
|
|
|
SIZE gutterSize(GetGutterSize(theme, hdc));
|
|
|
|
|
|
|
|
RECT gutterRect;
|
|
|
|
gutterRect.top = bgRect.top;
|
|
|
|
gutterRect.bottom = bgRect.bottom;
|
|
|
|
gutterRect.left = bgRect.left;
|
|
|
|
gutterRect.right = gutterRect.left+gutterSize.cx;
|
|
|
|
drawThemeBG(theme, hdc, MENU_POPUPGUTTER, /* state */ 0, &gutterRect, &clipRect);
|
|
|
|
}
|
|
|
|
else if (aWidgetType == NS_THEME_MENUSEPARATOR)
|
|
|
|
{
|
|
|
|
SIZE gutterSize(GetGutterSize(theme,hdc));
|
|
|
|
|
|
|
|
RECT sepRect = widgetRect;
|
|
|
|
sepRect.left += gutterSize.cx;
|
|
|
|
|
|
|
|
drawThemeBG(theme, hdc, MENU_POPUPSEPARATOR, /* state */ 0, &sepRect, &clipRect);
|
|
|
|
}
|
2005-10-07 00:31:36 +00:00
|
|
|
// If part is negative, the element wishes us to not render a themed
|
|
|
|
// background, instead opting to be drawn specially below.
|
2006-05-30 13:50:48 +00:00
|
|
|
else if (part >= 0) {
|
2005-10-07 00:31:36 +00:00
|
|
|
drawThemeBG(theme, hdc, part, state, &widgetRect, &clipRect);
|
2006-05-30 13:50:48 +00:00
|
|
|
}
|
2005-08-20 07:13:11 +00:00
|
|
|
|
|
|
|
// Draw focus rectangles for XP HTML checkboxes and radio buttons
|
|
|
|
// XXX it'd be nice to draw these outside of the frame
|
2007-05-09 19:17:17 +00:00
|
|
|
if ((IsCheckboxWidgetType(aWidgetType) || IsRadioWidgetType(aWidgetType)) &&
|
|
|
|
aFrame->GetContent()->IsNodeOfType(nsINode::eHTML) ||
|
2006-05-30 13:50:48 +00:00
|
|
|
aWidgetType == NS_THEME_SCALE_HORIZONTAL ||
|
|
|
|
aWidgetType == NS_THEME_SCALE_VERTICAL) {
|
2005-08-20 07:13:11 +00:00
|
|
|
PRInt32 contentState ;
|
2005-08-20 07:13:56 +00:00
|
|
|
contentState = GetContentState(aFrame, aWidgetType);
|
2005-08-20 07:13:11 +00:00
|
|
|
|
|
|
|
if (contentState & NS_EVENT_STATE_FOCUS) {
|
|
|
|
// setup DC to make DrawFocusRect draw correctly
|
2006-07-11 23:13:21 +00:00
|
|
|
POINT vpOrg;
|
|
|
|
::GetViewportOrgEx(hdc, &vpOrg);
|
|
|
|
::SetBrushOrgEx(hdc, vpOrg.x + widgetRect.left, vpOrg.y + widgetRect.top, NULL);
|
2005-08-20 07:13:11 +00:00
|
|
|
PRInt32 oldColor;
|
|
|
|
oldColor = ::SetTextColor(hdc, 0);
|
|
|
|
// draw focus rectangle
|
|
|
|
::DrawFocusRect(hdc, &widgetRect);
|
|
|
|
::SetTextColor(hdc, oldColor);
|
|
|
|
}
|
|
|
|
}
|
2007-07-14 15:11:37 +00:00
|
|
|
else if (aWidgetType == NS_THEME_TOOLBAR && state == 0) {
|
|
|
|
// Draw toolbar separator lines above all toolbars except the first one.
|
|
|
|
// The lines are part of the Rebar theme, which is loaded for NS_THEME_TOOLBOX.
|
|
|
|
theme = GetTheme(NS_THEME_TOOLBOX);
|
|
|
|
if (!theme)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
widgetRect.bottom = widgetRect.top + TB_SEPARATOR_HEIGHT;
|
|
|
|
drawThemeEdge(theme, hdc, RP_BAND, 0, &widgetRect, EDGE_ETCHED, BF_TOP, NULL);
|
2005-10-07 00:31:36 +00:00
|
|
|
}
|
2005-10-06 04:02:10 +00:00
|
|
|
|
2007-03-03 00:18:34 +00:00
|
|
|
nativeDrawing.EndNativeDrawing();
|
2006-08-09 20:25:07 +00:00
|
|
|
|
2007-03-03 00:18:34 +00:00
|
|
|
if (nativeDrawing.ShouldRenderAgain())
|
|
|
|
goto RENDER_AGAIN;
|
2006-08-09 20:25:07 +00:00
|
|
|
|
2007-03-03 00:18:34 +00:00
|
|
|
nativeDrawing.PaintToContext();
|
2006-01-18 22:42:30 +00:00
|
|
|
|
2005-08-20 07:11:56 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2005-08-20 07:11:57 +00:00
|
|
|
nsNativeThemeWin::GetWidgetBorder(nsIDeviceContext* aContext,
|
|
|
|
nsIFrame* aFrame,
|
|
|
|
PRUint8 aWidgetType,
|
|
|
|
nsMargin* aResult)
|
2005-08-20 07:11:56 +00:00
|
|
|
{
|
2005-08-20 07:13:11 +00:00
|
|
|
HANDLE theme = GetTheme(aWidgetType);
|
|
|
|
if (!theme)
|
|
|
|
return ClassicGetWidgetBorder(aContext, aFrame, aWidgetType, aResult);
|
2005-08-20 07:11:56 +00:00
|
|
|
|
2005-08-20 07:11:59 +00:00
|
|
|
(*aResult).top = (*aResult).bottom = (*aResult).left = (*aResult).right = 0;
|
|
|
|
|
2005-08-20 07:12:07 +00:00
|
|
|
if (!WidgetIsContainer(aWidgetType) ||
|
2005-10-07 00:31:36 +00:00
|
|
|
aWidgetType == NS_THEME_TOOLBOX ||
|
2005-08-20 07:11:57 +00:00
|
|
|
aWidgetType == NS_THEME_STATUSBAR ||
|
2006-08-07 22:45:56 +00:00
|
|
|
aWidgetType == NS_THEME_RESIZER || aWidgetType == NS_THEME_TAB_PANEL ||
|
|
|
|
aWidgetType == NS_THEME_SCROLLBAR_TRACK_HORIZONTAL ||
|
2007-08-06 17:45:57 +00:00
|
|
|
aWidgetType == NS_THEME_SCROLLBAR_TRACK_VERTICAL ||
|
|
|
|
aWidgetType == NS_THEME_MENUITEM || aWidgetType == NS_THEME_CHECKMENUITEM ||
|
|
|
|
aWidgetType == NS_THEME_RADIOMENUITEM || aWidgetType == NS_THEME_MENUPOPUP ||
|
2007-08-25 20:30:43 +00:00
|
|
|
aWidgetType == NS_THEME_MENUIMAGE || aWidgetType == NS_THEME_MENUITEMTEXT ||
|
|
|
|
aWidgetType == NS_THEME_TOOLBAR_SEPARATOR)
|
2005-08-20 07:11:56 +00:00
|
|
|
return NS_OK; // Don't worry about it.
|
2005-10-07 00:31:36 +00:00
|
|
|
|
2005-08-20 07:13:11 +00:00
|
|
|
if (!getThemeContentRect)
|
2005-08-20 07:11:56 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
PRInt32 part, state;
|
|
|
|
nsresult rv = GetThemePartAndState(aFrame, aWidgetType, part, state);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
2007-07-14 15:11:37 +00:00
|
|
|
if (aWidgetType == NS_THEME_TOOLBAR) {
|
|
|
|
// make space for the separator line above all toolbars but the first
|
|
|
|
if (state == 0)
|
|
|
|
aResult->top = TB_SEPARATOR_HEIGHT;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2005-08-20 07:11:56 +00:00
|
|
|
// Get our info.
|
|
|
|
RECT outerRect; // Create a fake outer rect.
|
|
|
|
outerRect.top = outerRect.left = 100;
|
|
|
|
outerRect.right = outerRect.bottom = 200;
|
|
|
|
RECT contentRect(outerRect);
|
|
|
|
HRESULT res = getThemeContentRect(theme, NULL, part, state, &outerRect, &contentRect);
|
|
|
|
|
|
|
|
if (FAILED(res))
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// Now compute the delta in each direction and place it in our
|
|
|
|
// nsMargin struct.
|
|
|
|
aResult->top = contentRect.top - outerRect.top;
|
|
|
|
aResult->bottom = outerRect.bottom - contentRect.bottom;
|
|
|
|
aResult->left = contentRect.left - outerRect.left;
|
|
|
|
aResult->right = outerRect.right - contentRect.right;
|
2005-08-20 07:12:01 +00:00
|
|
|
|
|
|
|
// Remove the edges for tabs that are before or after the selected tab,
|
|
|
|
if (aWidgetType == NS_THEME_TAB_LEFT_EDGE)
|
|
|
|
// Remove the right edge, since we won't be drawing it.
|
|
|
|
aResult->right = 0;
|
|
|
|
else if (aWidgetType == NS_THEME_TAB_RIGHT_EDGE)
|
|
|
|
// Remove the left edge, since we won't be drawing it.
|
|
|
|
aResult->left = 0;
|
|
|
|
|
2007-05-07 02:06:58 +00:00
|
|
|
if (aFrame && (aWidgetType == NS_THEME_TEXTFIELD || aWidgetType == NS_THEME_TEXTFIELD_MULTILINE)) {
|
2005-08-20 07:13:33 +00:00
|
|
|
nsIContent* content = aFrame->GetContent();
|
2006-05-05 06:52:21 +00:00
|
|
|
if (content && content->IsNodeOfType(nsINode::eHTML)) {
|
2005-08-20 07:13:10 +00:00
|
|
|
// We need to pad textfields by 1 pixel, since the caret will draw
|
|
|
|
// flush against the edge by default if we don't.
|
2006-03-15 11:59:22 +00:00
|
|
|
aResult->top++;
|
2005-08-20 07:13:10 +00:00
|
|
|
aResult->left++;
|
2006-03-15 11:59:22 +00:00
|
|
|
aResult->bottom++;
|
2005-08-20 07:13:10 +00:00
|
|
|
aResult->right++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-20 07:11:56 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2005-08-20 07:14:07 +00:00
|
|
|
PRBool
|
|
|
|
nsNativeThemeWin::GetWidgetPadding(nsIDeviceContext* aContext,
|
|
|
|
nsIFrame* aFrame,
|
|
|
|
PRUint8 aWidgetType,
|
|
|
|
nsMargin* aResult)
|
|
|
|
{
|
2007-08-06 17:45:57 +00:00
|
|
|
HANDLE theme = GetTheme(aWidgetType);
|
|
|
|
if (!theme && aWidgetType != NS_THEME_MENUITEMTEXT)
|
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
if (aWidgetType == NS_THEME_MENUPOPUP)
|
|
|
|
{
|
|
|
|
SIZE popupSize;
|
|
|
|
getThemePartSize(theme, NULL, MENU_POPUPBORDERS, /* state */ 0, NULL, TS_TRUE, &popupSize);
|
|
|
|
aResult->top = aResult->bottom = popupSize.cy;
|
|
|
|
aResult->left = aResult->right = popupSize.cx;
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 right, left, top, bottom;
|
|
|
|
right = left = top = bottom = 0;
|
|
|
|
switch (aWidgetType)
|
|
|
|
{
|
|
|
|
case NS_THEME_MENUIMAGE:
|
|
|
|
right = 9;
|
|
|
|
left = 3;
|
|
|
|
break;
|
|
|
|
case NS_THEME_MENUCHECKBOX:
|
|
|
|
case NS_THEME_MENURADIO:
|
2007-08-17 21:07:26 +00:00
|
|
|
right = 8;
|
2007-08-06 17:45:57 +00:00
|
|
|
left = 0;
|
|
|
|
break;
|
|
|
|
case NS_THEME_MENUITEMTEXT:
|
|
|
|
if (!theme)
|
|
|
|
{
|
2007-10-01 23:26:48 +00:00
|
|
|
left = 18;
|
2007-08-06 17:45:57 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// There seem to be exactly 4 pixels from the edge
|
|
|
|
// of the gutter to the text
|
|
|
|
SIZE size(GetGutterSize(theme, NULL));
|
|
|
|
left = size.cx + 4;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NS_THEME_MENUSEPARATOR:
|
|
|
|
{
|
|
|
|
SIZE size(GetGutterSize(theme, NULL));
|
|
|
|
left = size.cx + 5;
|
|
|
|
top = 10;
|
|
|
|
bottom = 7;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsFrameRTL(aFrame))
|
|
|
|
{
|
|
|
|
aResult->right = left;
|
|
|
|
aResult->left = right;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
aResult->right = right;
|
|
|
|
aResult->left = left;
|
|
|
|
}
|
|
|
|
|
|
|
|
return PR_TRUE;
|
2005-08-20 07:14:07 +00:00
|
|
|
}
|
|
|
|
|
2005-08-20 07:11:56 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsNativeThemeWin::GetMinimumWidgetSize(nsIRenderingContext* aContext, nsIFrame* aFrame,
|
|
|
|
PRUint8 aWidgetType,
|
2005-08-20 07:12:10 +00:00
|
|
|
nsSize* aResult, PRBool* aIsOverridable)
|
2005-08-20 07:11:56 +00:00
|
|
|
{
|
2005-08-20 07:11:59 +00:00
|
|
|
(*aResult).width = (*aResult).height = 0;
|
2005-08-20 07:12:10 +00:00
|
|
|
*aIsOverridable = PR_TRUE;
|
2005-08-20 07:11:59 +00:00
|
|
|
|
2005-08-20 07:13:11 +00:00
|
|
|
HANDLE theme = GetTheme(aWidgetType);
|
|
|
|
if (!theme)
|
|
|
|
return ClassicGetMinimumWidgetSize(aContext, aFrame, aWidgetType, aResult, aIsOverridable);
|
2007-08-06 17:45:57 +00:00
|
|
|
|
2005-08-20 07:11:57 +00:00
|
|
|
if (aWidgetType == NS_THEME_TOOLBOX || aWidgetType == NS_THEME_TOOLBAR ||
|
2005-08-20 07:11:59 +00:00
|
|
|
aWidgetType == NS_THEME_STATUSBAR || aWidgetType == NS_THEME_PROGRESSBAR_CHUNK ||
|
2005-08-20 07:12:02 +00:00
|
|
|
aWidgetType == NS_THEME_PROGRESSBAR_CHUNK_VERTICAL ||
|
2005-08-20 07:13:25 +00:00
|
|
|
aWidgetType == NS_THEME_TAB_PANELS || aWidgetType == NS_THEME_TAB_PANEL ||
|
2007-08-06 17:45:57 +00:00
|
|
|
aWidgetType == NS_THEME_LISTBOX || aWidgetType == NS_THEME_TREEVIEW || aWidgetType == NS_THEME_MENUITEMTEXT)
|
2005-08-20 07:11:56 +00:00
|
|
|
return NS_OK; // Don't worry about it.
|
|
|
|
|
2007-08-06 17:45:57 +00:00
|
|
|
if (aWidgetType == NS_THEME_MENUITEM && IsTopLevelMenu(aFrame))
|
|
|
|
return NS_OK; // Don't worry about it for top level menus
|
|
|
|
|
2005-08-20 07:13:11 +00:00
|
|
|
if (!getThemePartSize)
|
2005-08-20 07:11:56 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
2005-08-20 07:13:11 +00:00
|
|
|
|
|
|
|
// Call GetSystemMetrics to determine size for WinXP scrollbars
|
|
|
|
// (GetThemeSysSize API returns the optimal size for the theme, but
|
|
|
|
// Windows appears to always use metrics when drawing standard scrollbars)
|
|
|
|
switch (aWidgetType) {
|
|
|
|
case NS_THEME_SCROLLBAR_THUMB_VERTICAL:
|
|
|
|
case NS_THEME_SCROLLBAR_THUMB_HORIZONTAL:
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_UP:
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_DOWN:
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_LEFT:
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_RIGHT:
|
|
|
|
case NS_THEME_SCROLLBAR_TRACK_HORIZONTAL:
|
|
|
|
case NS_THEME_SCROLLBAR_TRACK_VERTICAL:
|
|
|
|
case NS_THEME_DROPDOWN_BUTTON:
|
|
|
|
return ClassicGetMinimumWidgetSize(aContext, aFrame, aWidgetType, aResult, aIsOverridable);
|
2007-08-06 17:45:57 +00:00
|
|
|
case NS_THEME_MENUITEM:
|
|
|
|
case NS_THEME_CHECKMENUITEM:
|
|
|
|
case NS_THEME_RADIOMENUITEM:
|
|
|
|
if(!IsTopLevelMenu(aFrame))
|
|
|
|
{
|
|
|
|
SIZE gutterSize(GetGutterSize(theme, NULL));
|
|
|
|
aResult->width = gutterSize.cx;
|
|
|
|
aResult->height = gutterSize.cy;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NS_THEME_MENUIMAGE:
|
|
|
|
aResult->width = 1;
|
|
|
|
case NS_THEME_MENUCHECKBOX:
|
|
|
|
case NS_THEME_MENURADIO:
|
|
|
|
{
|
|
|
|
SIZE boxSize(GetGutterSize(theme, NULL));
|
|
|
|
aResult->width += boxSize.cx+2;
|
|
|
|
aResult->height = boxSize.cy;
|
|
|
|
*aIsOverridable = PR_FALSE;
|
|
|
|
}
|
|
|
|
case NS_THEME_MENUITEMTEXT:
|
|
|
|
return NS_OK;
|
|
|
|
case NS_THEME_MENUARROW:
|
|
|
|
aResult->width = 26;
|
|
|
|
aResult->height = 16;
|
|
|
|
return NS_OK;
|
2005-08-20 07:13:11 +00:00
|
|
|
}
|
2005-08-20 07:11:56 +00:00
|
|
|
|
2006-05-30 13:50:48 +00:00
|
|
|
if (aWidgetType == NS_THEME_SCALE_THUMB_HORIZONTAL ||
|
|
|
|
aWidgetType == NS_THEME_SCALE_THUMB_VERTICAL) {
|
|
|
|
*aIsOverridable = PR_FALSE;
|
|
|
|
}
|
2007-08-25 20:30:43 +00:00
|
|
|
else if (aWidgetType == NS_THEME_TOOLBAR_SEPARATOR) {
|
|
|
|
// that's 2px left margin, 2px right margin and 2px separator
|
|
|
|
// (the margin is drawn as part of the separator, though)
|
|
|
|
aResult->width = 6;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2006-05-30 13:50:48 +00:00
|
|
|
|
2005-08-20 07:11:56 +00:00
|
|
|
PRInt32 part, state;
|
|
|
|
nsresult rv = GetThemePartAndState(aFrame, aWidgetType, part, state);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
2005-08-23 02:11:54 +00:00
|
|
|
HDC hdc = (HDC)aContext->GetNativeGraphicData(nsIRenderingContext::NATIVE_WINDOWS_DC);
|
2005-08-20 07:11:56 +00:00
|
|
|
if (!hdc)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
PRInt32 sizeReq = 1; // Best-fit size.
|
2005-08-20 07:13:11 +00:00
|
|
|
if (aWidgetType == NS_THEME_PROGRESSBAR ||
|
2005-08-20 07:12:01 +00:00
|
|
|
aWidgetType == NS_THEME_PROGRESSBAR_VERTICAL)
|
2005-08-20 07:13:11 +00:00
|
|
|
sizeReq = 0; // Best-fit size for progress meters is too large for most
|
2005-08-20 07:12:01 +00:00
|
|
|
// themes.
|
|
|
|
// In our app, we want these widgets to be able to really shrink down,
|
2005-08-20 07:11:56 +00:00
|
|
|
// so use the min-size request value (of 0).
|
2006-07-13 17:40:49 +00:00
|
|
|
|
2005-08-20 07:11:56 +00:00
|
|
|
SIZE sz;
|
|
|
|
getThemePartSize(theme, hdc, part, state, NULL, sizeReq, &sz);
|
|
|
|
aResult->width = sz.cx;
|
|
|
|
aResult->height = sz.cy;
|
2005-08-20 07:13:09 +00:00
|
|
|
|
2006-07-13 17:40:49 +00:00
|
|
|
if (aWidgetType == NS_THEME_SPINNER_UP_BUTTON ||
|
|
|
|
aWidgetType == NS_THEME_SPINNER_DOWN_BUTTON) {
|
|
|
|
aResult->width++;
|
|
|
|
aResult->height = aResult->height / 2 + 1;
|
|
|
|
}
|
2007-08-06 17:45:57 +00:00
|
|
|
else if (aWidgetType == NS_THEME_MENUSEPARATOR)
|
|
|
|
{
|
|
|
|
SIZE gutterSize(GetGutterSize(theme,hdc));
|
|
|
|
aResult->width += gutterSize.cx;
|
|
|
|
}
|
2005-08-20 07:11:56 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsNativeThemeWin::WidgetStateChanged(nsIFrame* aFrame, PRUint8 aWidgetType,
|
|
|
|
nsIAtom* aAttribute, PRBool* aShouldRepaint)
|
|
|
|
{
|
|
|
|
// Some widget types just never change state.
|
|
|
|
if (aWidgetType == NS_THEME_TOOLBOX || aWidgetType == NS_THEME_TOOLBAR ||
|
2005-08-20 07:11:57 +00:00
|
|
|
aWidgetType == NS_THEME_STATUSBAR || aWidgetType == NS_THEME_STATUSBAR_PANEL ||
|
2005-08-20 07:11:59 +00:00
|
|
|
aWidgetType == NS_THEME_STATUSBAR_RESIZER_PANEL ||
|
|
|
|
aWidgetType == NS_THEME_PROGRESSBAR_CHUNK ||
|
|
|
|
aWidgetType == NS_THEME_PROGRESSBAR_CHUNK_VERTICAL ||
|
|
|
|
aWidgetType == NS_THEME_PROGRESSBAR ||
|
2005-08-20 07:12:00 +00:00
|
|
|
aWidgetType == NS_THEME_PROGRESSBAR_VERTICAL ||
|
2005-08-20 07:12:02 +00:00
|
|
|
aWidgetType == NS_THEME_TOOLTIP ||
|
|
|
|
aWidgetType == NS_THEME_TAB_PANELS ||
|
2007-08-25 20:30:43 +00:00
|
|
|
aWidgetType == NS_THEME_TAB_PANEL ||
|
|
|
|
aWidgetType == NS_THEME_TOOLBAR_SEPARATOR) {
|
2005-08-20 07:11:56 +00:00
|
|
|
*aShouldRepaint = PR_FALSE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-08-17 20:47:33 +00:00
|
|
|
// On Vista, the scrollbar buttons need to change state when the track has/doesn't have hover
|
|
|
|
if (GetWindowsVersion() < VISTA_VERSION &&
|
|
|
|
(aWidgetType == NS_THEME_SCROLLBAR_TRACK_VERTICAL ||
|
|
|
|
aWidgetType == NS_THEME_SCROLLBAR_TRACK_HORIZONTAL)) {
|
|
|
|
*aShouldRepaint = PR_FALSE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2005-08-20 07:11:56 +00:00
|
|
|
// XXXdwh Not sure what can really be done here. Can at least guess for
|
|
|
|
// specific widgets that they're highly unlikely to have certain states.
|
|
|
|
// For example, a toolbar doesn't care about any states.
|
|
|
|
if (!aAttribute) {
|
|
|
|
// Hover/focus/active changed. Always repaint.
|
|
|
|
*aShouldRepaint = PR_TRUE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Check the attribute to see if it's relevant.
|
|
|
|
// disabled, checked, dlgtype, default, etc.
|
|
|
|
*aShouldRepaint = PR_FALSE;
|
2006-06-09 06:02:30 +00:00
|
|
|
if (aAttribute == nsWidgetAtoms::disabled ||
|
|
|
|
aAttribute == nsWidgetAtoms::checked ||
|
|
|
|
aAttribute == nsWidgetAtoms::selected ||
|
|
|
|
aAttribute == nsWidgetAtoms::readonly ||
|
|
|
|
aAttribute == nsWidgetAtoms::mozmenuactive)
|
2005-08-20 07:11:56 +00:00
|
|
|
*aShouldRepaint = PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsNativeThemeWin::CloseData()
|
|
|
|
{
|
|
|
|
if (mToolbarTheme) {
|
|
|
|
closeTheme(mToolbarTheme);
|
|
|
|
mToolbarTheme = NULL;
|
|
|
|
}
|
|
|
|
if (mScrollbarTheme) {
|
|
|
|
closeTheme(mScrollbarTheme);
|
|
|
|
mScrollbarTheme = NULL;
|
|
|
|
}
|
2006-05-30 13:50:48 +00:00
|
|
|
if (mScaleTheme) {
|
|
|
|
closeTheme(mScaleTheme);
|
|
|
|
mScaleTheme = NULL;
|
|
|
|
}
|
2006-07-13 17:40:49 +00:00
|
|
|
if (mSpinTheme) {
|
|
|
|
closeTheme(mSpinTheme);
|
|
|
|
mSpinTheme = NULL;
|
|
|
|
}
|
2005-08-20 07:11:56 +00:00
|
|
|
if (mRebarTheme) {
|
|
|
|
closeTheme(mRebarTheme);
|
|
|
|
mRebarTheme = NULL;
|
|
|
|
}
|
2005-08-20 07:11:59 +00:00
|
|
|
if (mProgressTheme) {
|
|
|
|
closeTheme(mProgressTheme);
|
|
|
|
mProgressTheme = NULL;
|
|
|
|
}
|
2005-08-20 07:11:56 +00:00
|
|
|
if (mButtonTheme) {
|
|
|
|
closeTheme(mButtonTheme);
|
|
|
|
mButtonTheme = NULL;
|
2005-08-20 07:12:00 +00:00
|
|
|
}
|
2005-08-20 07:12:06 +00:00
|
|
|
if (mTextFieldTheme) {
|
|
|
|
closeTheme(mTextFieldTheme);
|
|
|
|
mTextFieldTheme = NULL;
|
|
|
|
}
|
2005-08-20 07:12:00 +00:00
|
|
|
if (mTooltipTheme) {
|
|
|
|
closeTheme(mTooltipTheme);
|
|
|
|
mTooltipTheme = NULL;
|
2005-08-20 07:11:56 +00:00
|
|
|
}
|
|
|
|
if (mStatusbarTheme) {
|
|
|
|
closeTheme(mStatusbarTheme);
|
|
|
|
mStatusbarTheme = NULL;
|
|
|
|
}
|
|
|
|
if (mTabTheme) {
|
|
|
|
closeTheme(mTabTheme);
|
|
|
|
mTabTheme = NULL;
|
|
|
|
}
|
|
|
|
if (mTreeViewTheme) {
|
|
|
|
closeTheme(mTreeViewTheme);
|
|
|
|
mTreeViewTheme = NULL;
|
|
|
|
}
|
2005-08-20 07:12:07 +00:00
|
|
|
if (mComboBoxTheme) {
|
|
|
|
closeTheme(mComboBoxTheme);
|
|
|
|
mComboBoxTheme = NULL;
|
|
|
|
}
|
2005-08-20 07:13:09 +00:00
|
|
|
if (mHeaderTheme) {
|
|
|
|
closeTheme(mHeaderTheme);
|
|
|
|
mHeaderTheme = NULL;
|
|
|
|
}
|
2007-08-06 17:45:57 +00:00
|
|
|
if (mMenuTheme) {
|
|
|
|
closeTheme(mMenuTheme);
|
|
|
|
mMenuTheme = NULL;
|
|
|
|
}
|
2005-08-20 07:11:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsNativeThemeWin::ThemeChanged()
|
|
|
|
{
|
|
|
|
CloseData();
|
2005-10-07 00:31:36 +00:00
|
|
|
UpdateConfig();
|
2005-08-20 07:11:56 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2005-08-20 07:13:11 +00:00
|
|
|
PRBool
|
2005-08-20 07:14:04 +00:00
|
|
|
nsNativeThemeWin::ThemeSupportsWidget(nsPresContext* aPresContext,
|
2005-08-20 07:13:11 +00:00
|
|
|
nsIFrame* aFrame,
|
|
|
|
PRUint8 aWidgetType)
|
|
|
|
{
|
2007-08-06 17:45:57 +00:00
|
|
|
if (gfxPlatform::UseGlitz())
|
|
|
|
return PR_FALSE;
|
2005-08-20 07:13:11 +00:00
|
|
|
// XXXdwh We can go even further and call the API to ask if support exists for
|
|
|
|
// specific widgets.
|
|
|
|
|
2005-08-20 07:13:36 +00:00
|
|
|
if (aPresContext && !aPresContext->PresShell()->IsThemeSupportEnabled())
|
|
|
|
return PR_FALSE;
|
2005-08-20 07:13:11 +00:00
|
|
|
|
|
|
|
HANDLE theme = NULL;
|
|
|
|
if (aWidgetType == NS_THEME_CHECKBOX_CONTAINER)
|
|
|
|
theme = GetTheme(NS_THEME_CHECKBOX);
|
|
|
|
else if (aWidgetType == NS_THEME_RADIO_CONTAINER)
|
|
|
|
theme = GetTheme(NS_THEME_RADIO);
|
|
|
|
else
|
|
|
|
theme = GetTheme(aWidgetType);
|
|
|
|
|
|
|
|
if ((theme) || (!theme && ClassicThemeSupportsWidget(aPresContext, aFrame, aWidgetType)))
|
|
|
|
// turn off theming for some HTML widgets styled by the page
|
2005-08-20 07:13:24 +00:00
|
|
|
return (!IsWidgetStyled(aPresContext, aFrame, aWidgetType));
|
2005-08-20 07:13:11 +00:00
|
|
|
|
|
|
|
return PR_FALSE;
|
2005-08-20 07:11:56 +00:00
|
|
|
}
|
|
|
|
|
2005-08-20 07:12:07 +00:00
|
|
|
PRBool
|
|
|
|
nsNativeThemeWin::WidgetIsContainer(PRUint8 aWidgetType)
|
|
|
|
{
|
|
|
|
// XXXdwh At some point flesh all of this out.
|
|
|
|
if (aWidgetType == NS_THEME_DROPDOWN_BUTTON ||
|
2007-05-09 19:17:17 +00:00
|
|
|
IsRadioWidgetType(aWidgetType) ||
|
|
|
|
IsCheckboxWidgetType(aWidgetType))
|
2005-08-20 07:12:07 +00:00
|
|
|
return PR_FALSE;
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
2007-02-16 01:53:43 +00:00
|
|
|
PRBool
|
|
|
|
nsNativeThemeWin::ThemeDrawsFocusForWidget(nsPresContext* aPresContext, nsIFrame* aFrame, PRUint8 aWidgetType)
|
|
|
|
{
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
2005-08-20 07:13:11 +00:00
|
|
|
|
2007-05-18 03:04:04 +00:00
|
|
|
PRBool
|
|
|
|
nsNativeThemeWin::ThemeNeedsComboboxDropmarker()
|
|
|
|
{
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
2005-08-20 07:13:11 +00:00
|
|
|
/* Windows 9x/NT/2000/Classic XP Theme Support */
|
|
|
|
|
|
|
|
PRBool
|
2005-08-20 07:14:04 +00:00
|
|
|
nsNativeThemeWin::ClassicThemeSupportsWidget(nsPresContext* aPresContext,
|
2005-08-20 07:13:11 +00:00
|
|
|
nsIFrame* aFrame,
|
|
|
|
PRUint8 aWidgetType)
|
|
|
|
{
|
|
|
|
switch (aWidgetType) {
|
2007-07-14 15:11:37 +00:00
|
|
|
case NS_THEME_MENUBAR:
|
|
|
|
case NS_THEME_MENUPOPUP:
|
|
|
|
// Classic non-flat menus are handled almost entirely through CSS.
|
|
|
|
if (!mFlatMenus)
|
|
|
|
return PR_FALSE;
|
2005-08-20 07:13:11 +00:00
|
|
|
case NS_THEME_BUTTON:
|
|
|
|
case NS_THEME_TEXTFIELD:
|
2007-05-07 02:06:58 +00:00
|
|
|
case NS_THEME_TEXTFIELD_MULTILINE:
|
2005-08-20 07:13:11 +00:00
|
|
|
case NS_THEME_CHECKBOX:
|
2007-05-09 19:17:17 +00:00
|
|
|
case NS_THEME_CHECKBOX_SMALL:
|
2005-08-20 07:13:11 +00:00
|
|
|
case NS_THEME_RADIO:
|
2007-05-09 19:17:17 +00:00
|
|
|
case NS_THEME_RADIO_SMALL:
|
2005-08-20 07:13:11 +00:00
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_UP:
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_DOWN:
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_LEFT:
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_RIGHT:
|
|
|
|
case NS_THEME_SCROLLBAR_THUMB_VERTICAL:
|
|
|
|
case NS_THEME_SCROLLBAR_THUMB_HORIZONTAL:
|
|
|
|
case NS_THEME_SCROLLBAR_TRACK_VERTICAL:
|
|
|
|
case NS_THEME_SCROLLBAR_TRACK_HORIZONTAL:
|
2006-05-30 13:50:48 +00:00
|
|
|
case NS_THEME_SCALE_HORIZONTAL:
|
|
|
|
case NS_THEME_SCALE_VERTICAL:
|
|
|
|
case NS_THEME_SCALE_THUMB_HORIZONTAL:
|
|
|
|
case NS_THEME_SCALE_THUMB_VERTICAL:
|
2005-08-20 07:13:11 +00:00
|
|
|
case NS_THEME_DROPDOWN_BUTTON:
|
|
|
|
case NS_THEME_SPINNER_UP_BUTTON:
|
|
|
|
case NS_THEME_SPINNER_DOWN_BUTTON:
|
|
|
|
case NS_THEME_LISTBOX:
|
|
|
|
case NS_THEME_TREEVIEW:
|
|
|
|
case NS_THEME_DROPDOWN_TEXTFIELD:
|
|
|
|
case NS_THEME_DROPDOWN:
|
|
|
|
case NS_THEME_TOOLTIP:
|
|
|
|
case NS_THEME_STATUSBAR:
|
|
|
|
case NS_THEME_STATUSBAR_PANEL:
|
|
|
|
case NS_THEME_STATUSBAR_RESIZER_PANEL:
|
|
|
|
case NS_THEME_RESIZER:
|
|
|
|
case NS_THEME_PROGRESSBAR:
|
|
|
|
case NS_THEME_PROGRESSBAR_VERTICAL:
|
|
|
|
case NS_THEME_PROGRESSBAR_CHUNK:
|
|
|
|
case NS_THEME_PROGRESSBAR_CHUNK_VERTICAL:
|
|
|
|
case NS_THEME_TAB:
|
|
|
|
case NS_THEME_TAB_LEFT_EDGE:
|
|
|
|
case NS_THEME_TAB_RIGHT_EDGE:
|
|
|
|
case NS_THEME_TAB_PANEL:
|
|
|
|
case NS_THEME_TAB_PANELS:
|
2005-10-07 00:31:36 +00:00
|
|
|
case NS_THEME_MENUITEM:
|
|
|
|
case NS_THEME_CHECKMENUITEM:
|
|
|
|
case NS_THEME_RADIOMENUITEM:
|
2007-07-14 15:11:37 +00:00
|
|
|
case NS_THEME_MENUCHECKBOX:
|
|
|
|
case NS_THEME_MENURADIO:
|
|
|
|
case NS_THEME_MENUARROW:
|
2007-08-06 17:45:57 +00:00
|
|
|
case NS_THEME_MENUSEPARATOR:
|
|
|
|
case NS_THEME_MENUITEMTEXT:
|
2005-08-20 07:13:11 +00:00
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsNativeThemeWin::ClassicGetWidgetBorder(nsIDeviceContext* aContext,
|
|
|
|
nsIFrame* aFrame,
|
|
|
|
PRUint8 aWidgetType,
|
|
|
|
nsMargin* aResult)
|
|
|
|
{
|
|
|
|
switch (aWidgetType) {
|
2007-10-01 16:40:35 +00:00
|
|
|
case NS_THEME_BUTTON:
|
|
|
|
(*aResult).top = (*aResult).left = (*aResult).bottom = (*aResult).right = 2;
|
|
|
|
break;
|
2005-08-20 07:13:11 +00:00
|
|
|
case NS_THEME_STATUSBAR:
|
|
|
|
(*aResult).bottom = (*aResult).left = (*aResult).right = 0;
|
|
|
|
(*aResult).top = 2;
|
|
|
|
break;
|
|
|
|
case NS_THEME_LISTBOX:
|
|
|
|
case NS_THEME_TREEVIEW:
|
|
|
|
case NS_THEME_DROPDOWN:
|
|
|
|
case NS_THEME_DROPDOWN_TEXTFIELD:
|
|
|
|
case NS_THEME_TAB:
|
|
|
|
case NS_THEME_TAB_LEFT_EDGE:
|
|
|
|
case NS_THEME_TAB_RIGHT_EDGE:
|
2006-03-15 11:59:22 +00:00
|
|
|
case NS_THEME_TEXTFIELD:
|
2007-05-07 02:06:58 +00:00
|
|
|
case NS_THEME_TEXTFIELD_MULTILINE:
|
2005-08-20 07:13:11 +00:00
|
|
|
(*aResult).top = (*aResult).left = (*aResult).bottom = (*aResult).right = 2;
|
|
|
|
break;
|
|
|
|
case NS_THEME_STATUSBAR_PANEL:
|
|
|
|
case NS_THEME_STATUSBAR_RESIZER_PANEL: {
|
|
|
|
(*aResult).top = 1;
|
|
|
|
(*aResult).left = 1;
|
|
|
|
(*aResult).bottom = 1;
|
2005-08-20 07:13:33 +00:00
|
|
|
(*aResult).right = aFrame->GetNextSibling() ? 3 : 1;
|
2005-08-20 07:13:11 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case NS_THEME_TOOLTIP:
|
|
|
|
(*aResult).top = (*aResult).left = (*aResult).bottom = (*aResult).right = 1;
|
|
|
|
break;
|
2005-08-20 07:14:29 +00:00
|
|
|
case NS_THEME_PROGRESSBAR:
|
|
|
|
case NS_THEME_PROGRESSBAR_VERTICAL:
|
|
|
|
(*aResult).top = (*aResult).left = (*aResult).bottom = (*aResult).right = 1;
|
|
|
|
break;
|
2005-10-07 00:31:36 +00:00
|
|
|
case NS_THEME_MENUBAR:
|
|
|
|
(*aResult).top = (*aResult).left = (*aResult).bottom = (*aResult).right = 0;
|
|
|
|
break;
|
|
|
|
case NS_THEME_MENUPOPUP:
|
2007-07-14 15:11:37 +00:00
|
|
|
(*aResult).top = (*aResult).left = (*aResult).bottom = (*aResult).right = 3;
|
2005-10-07 00:31:36 +00:00
|
|
|
break;
|
|
|
|
case NS_THEME_MENUITEM:
|
|
|
|
case NS_THEME_CHECKMENUITEM:
|
|
|
|
case NS_THEME_RADIOMENUITEM: {
|
2007-07-14 15:11:37 +00:00
|
|
|
PRInt32 part, state;
|
|
|
|
PRBool focused;
|
|
|
|
nsresult rv;
|
2005-10-07 00:31:36 +00:00
|
|
|
|
2007-07-14 15:11:37 +00:00
|
|
|
rv = ClassicGetThemePartAndState(aFrame, aWidgetType, part, state, focused);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
2005-10-07 00:31:36 +00:00
|
|
|
|
2007-07-14 15:11:37 +00:00
|
|
|
if (part == 1) { // top level menu
|
|
|
|
if (mFlatMenus || !(state & DFCS_PUSHED)) {
|
|
|
|
(*aResult).top = (*aResult).bottom = (*aResult).left = (*aResult).right = 2;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// make top-level menus look sunken when pushed in the Classic look
|
|
|
|
(*aResult).top = (*aResult).left = 3;
|
|
|
|
(*aResult).bottom = (*aResult).right = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
(*aResult).top = 1;
|
|
|
|
(*aResult).bottom = 3;
|
|
|
|
(*aResult).left = (*aResult).right = 2;
|
2005-10-07 00:31:36 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2005-08-20 07:13:11 +00:00
|
|
|
default:
|
|
|
|
(*aResult).top = (*aResult).bottom = (*aResult).left = (*aResult).right = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsNativeThemeWin::ClassicGetMinimumWidgetSize(nsIRenderingContext* aContext, nsIFrame* aFrame,
|
|
|
|
PRUint8 aWidgetType,
|
|
|
|
nsSize* aResult, PRBool* aIsOverridable)
|
|
|
|
{
|
|
|
|
(*aResult).width = (*aResult).height = 0;
|
|
|
|
*aIsOverridable = PR_TRUE;
|
|
|
|
switch (aWidgetType) {
|
|
|
|
case NS_THEME_RADIO:
|
2007-05-09 19:17:17 +00:00
|
|
|
case NS_THEME_RADIO_SMALL:
|
|
|
|
case NS_THEME_CHECKBOX:
|
|
|
|
case NS_THEME_CHECKBOX_SMALL:
|
2005-08-20 07:13:11 +00:00
|
|
|
(*aResult).width = (*aResult).height = 13;
|
|
|
|
break;
|
2007-07-14 15:11:37 +00:00
|
|
|
case NS_THEME_MENUCHECKBOX:
|
|
|
|
case NS_THEME_MENURADIO:
|
|
|
|
case NS_THEME_MENUARROW:
|
|
|
|
(*aResult).width = ::GetSystemMetrics(SM_CXMENUCHECK);
|
|
|
|
(*aResult).height = ::GetSystemMetrics(SM_CYMENUCHECK);
|
|
|
|
break;
|
2005-08-20 07:13:11 +00:00
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_UP:
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_DOWN:
|
|
|
|
(*aResult).width = ::GetSystemMetrics(SM_CXVSCROLL);
|
|
|
|
(*aResult).height = ::GetSystemMetrics(SM_CYVSCROLL);
|
|
|
|
*aIsOverridable = PR_FALSE;
|
|
|
|
break;
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_LEFT:
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_RIGHT:
|
|
|
|
(*aResult).width = ::GetSystemMetrics(SM_CXHSCROLL);
|
|
|
|
(*aResult).height = ::GetSystemMetrics(SM_CYHSCROLL);
|
|
|
|
*aIsOverridable = PR_FALSE;
|
|
|
|
break;
|
|
|
|
case NS_THEME_SCROLLBAR_TRACK_VERTICAL:
|
2005-08-20 07:13:32 +00:00
|
|
|
// XXX HACK We should be able to have a minimum height for the scrollbar
|
|
|
|
// track. However, this causes problems when uncollapsing a scrollbar
|
|
|
|
// inside a tree. See bug 201379 for details.
|
|
|
|
|
|
|
|
// (*aResult).height = ::GetSystemMetrics(SM_CYVTHUMB) << 1;
|
2005-08-20 07:13:11 +00:00
|
|
|
break;
|
2006-05-30 13:50:48 +00:00
|
|
|
case NS_THEME_SCALE_THUMB_HORIZONTAL:
|
|
|
|
(*aResult).width = 12;
|
|
|
|
(*aResult).height = 20;
|
|
|
|
*aIsOverridable = PR_FALSE;
|
|
|
|
break;
|
|
|
|
case NS_THEME_SCALE_THUMB_VERTICAL:
|
|
|
|
(*aResult).width = 20;
|
|
|
|
(*aResult).height = 12;
|
|
|
|
*aIsOverridable = PR_FALSE;
|
|
|
|
break;
|
2005-08-20 07:13:11 +00:00
|
|
|
case NS_THEME_DROPDOWN_BUTTON:
|
|
|
|
(*aResult).width = ::GetSystemMetrics(SM_CXVSCROLL);
|
|
|
|
break;
|
|
|
|
case NS_THEME_DROPDOWN:
|
|
|
|
case NS_THEME_BUTTON:
|
|
|
|
case NS_THEME_LISTBOX:
|
|
|
|
case NS_THEME_TREEVIEW:
|
2007-05-07 02:06:58 +00:00
|
|
|
case NS_THEME_TEXTFIELD:
|
|
|
|
case NS_THEME_TEXTFIELD_MULTILINE:
|
2005-08-20 07:13:11 +00:00
|
|
|
case NS_THEME_DROPDOWN_TEXTFIELD:
|
|
|
|
case NS_THEME_STATUSBAR:
|
|
|
|
case NS_THEME_STATUSBAR_PANEL:
|
|
|
|
case NS_THEME_STATUSBAR_RESIZER_PANEL:
|
|
|
|
case NS_THEME_PROGRESSBAR_CHUNK:
|
|
|
|
case NS_THEME_PROGRESSBAR_CHUNK_VERTICAL:
|
|
|
|
case NS_THEME_TOOLTIP:
|
|
|
|
case NS_THEME_PROGRESSBAR:
|
|
|
|
case NS_THEME_PROGRESSBAR_VERTICAL:
|
|
|
|
case NS_THEME_TAB:
|
|
|
|
case NS_THEME_TAB_LEFT_EDGE:
|
|
|
|
case NS_THEME_TAB_RIGHT_EDGE:
|
|
|
|
case NS_THEME_TAB_PANEL:
|
|
|
|
case NS_THEME_TAB_PANELS:
|
|
|
|
// no minimum widget size
|
|
|
|
break;
|
|
|
|
case NS_THEME_RESIZER: {
|
2005-08-20 07:14:27 +00:00
|
|
|
#ifndef WINCE
|
2005-08-20 07:13:11 +00:00
|
|
|
NONCLIENTMETRICS nc;
|
|
|
|
nc.cbSize = sizeof(nc);
|
|
|
|
if (SystemParametersInfo(SPI_GETNONCLIENTMETRICS, sizeof(nc), &nc, 0))
|
|
|
|
(*aResult).width = (*aResult).height = abs(nc.lfStatusFont.lfHeight) + 4;
|
|
|
|
else
|
2005-08-20 07:14:27 +00:00
|
|
|
#endif
|
2005-08-20 07:13:11 +00:00
|
|
|
(*aResult).width = (*aResult).height = 15;
|
|
|
|
break;
|
2005-08-20 07:14:19 +00:00
|
|
|
case NS_THEME_SCROLLBAR_THUMB_VERTICAL:
|
|
|
|
(*aResult).width = ::GetSystemMetrics(SM_CYVTHUMB);
|
|
|
|
(*aResult).height = (*aResult).width >> 1;
|
|
|
|
*aIsOverridable = PR_FALSE;
|
|
|
|
break;
|
|
|
|
case NS_THEME_SCROLLBAR_THUMB_HORIZONTAL:
|
|
|
|
(*aResult).height = ::GetSystemMetrics(SM_CXHTHUMB);
|
|
|
|
(*aResult).width = (*aResult).height >> 1;
|
|
|
|
*aIsOverridable = PR_FALSE;
|
|
|
|
break;
|
|
|
|
case NS_THEME_SCROLLBAR_TRACK_HORIZONTAL:
|
|
|
|
(*aResult).width = ::GetSystemMetrics(SM_CXHTHUMB) << 1;
|
|
|
|
break;
|
2005-08-20 07:13:11 +00:00
|
|
|
}
|
2007-08-06 17:45:57 +00:00
|
|
|
case NS_THEME_MENUSEPARATOR:
|
|
|
|
{
|
|
|
|
aResult->width = 0;
|
|
|
|
aResult->height = 10;
|
|
|
|
break;
|
|
|
|
}
|
2005-08-20 07:13:11 +00:00
|
|
|
default:
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsresult nsNativeThemeWin::ClassicGetThemePartAndState(nsIFrame* aFrame, PRUint8 aWidgetType,
|
|
|
|
PRInt32& aPart, PRInt32& aState, PRBool& aFocused)
|
|
|
|
{
|
|
|
|
switch (aWidgetType) {
|
|
|
|
case NS_THEME_BUTTON: {
|
|
|
|
PRInt32 contentState;
|
|
|
|
|
|
|
|
aPart = DFC_BUTTON;
|
|
|
|
aState = DFCS_BUTTONPUSH;
|
|
|
|
aFocused = PR_FALSE;
|
|
|
|
|
2005-08-20 07:13:56 +00:00
|
|
|
contentState = GetContentState(aFrame, aWidgetType);
|
2005-08-20 07:13:11 +00:00
|
|
|
if (IsDisabled(aFrame))
|
|
|
|
aState |= DFCS_INACTIVE;
|
|
|
|
else {
|
|
|
|
if (contentState & NS_EVENT_STATE_ACTIVE && contentState & NS_EVENT_STATE_HOVER) {
|
|
|
|
aState |= DFCS_PUSHED;
|
2005-08-20 07:13:26 +00:00
|
|
|
const nsStyleUserInterface *uiData = aFrame->GetStyleUserInterface();
|
2005-08-20 07:13:11 +00:00
|
|
|
// The down state is flat if the button is focusable
|
2005-08-20 07:13:26 +00:00
|
|
|
if (uiData->mUserFocus == NS_STYLE_USER_FOCUS_NORMAL) {
|
2005-08-20 07:14:19 +00:00
|
|
|
#ifndef WINCE
|
2006-05-05 06:52:21 +00:00
|
|
|
if (!aFrame->GetContent()->IsNodeOfType(nsINode::eHTML))
|
2005-08-20 07:13:11 +00:00
|
|
|
aState |= DFCS_FLAT;
|
2005-08-20 07:14:19 +00:00
|
|
|
#endif
|
2005-08-20 07:13:11 +00:00
|
|
|
aFocused = PR_TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ((contentState & NS_EVENT_STATE_FOCUS) ||
|
2005-08-20 07:13:56 +00:00
|
|
|
(aState == DFCS_BUTTONPUSH && IsDefaultButton(aFrame))) {
|
2005-08-20 07:13:11 +00:00
|
|
|
aFocused = PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
case NS_THEME_CHECKBOX:
|
2007-05-09 19:17:17 +00:00
|
|
|
case NS_THEME_CHECKBOX_SMALL:
|
|
|
|
case NS_THEME_RADIO:
|
|
|
|
case NS_THEME_RADIO_SMALL: {
|
2005-08-20 07:13:11 +00:00
|
|
|
PRInt32 contentState ;
|
|
|
|
aFocused = PR_FALSE;
|
|
|
|
|
|
|
|
aPart = DFC_BUTTON;
|
2007-05-09 19:17:17 +00:00
|
|
|
aState = (IsCheckboxWidgetType(aWidgetType)) ? DFCS_BUTTONCHECK : DFCS_BUTTONRADIO;
|
2005-08-20 07:13:33 +00:00
|
|
|
nsIContent* content = aFrame->GetContent();
|
2005-08-20 07:13:11 +00:00
|
|
|
|
2006-05-05 06:52:21 +00:00
|
|
|
if (content->IsNodeOfType(nsINode::eXUL)) {
|
2005-08-20 07:13:11 +00:00
|
|
|
// XUL
|
2007-05-09 19:17:17 +00:00
|
|
|
if (IsCheckboxWidgetType(aWidgetType)) {
|
2005-08-20 07:13:11 +00:00
|
|
|
if (IsChecked(aFrame))
|
|
|
|
aState |= DFCS_CHECKED;
|
|
|
|
}
|
|
|
|
else
|
2005-08-20 07:13:56 +00:00
|
|
|
if (IsSelected(aFrame))
|
2005-08-20 07:13:11 +00:00
|
|
|
aState |= DFCS_CHECKED;
|
2005-08-20 07:13:56 +00:00
|
|
|
contentState = GetContentState(aFrame, aWidgetType);
|
2005-08-20 07:13:11 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
// HTML
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMHTMLInputElement> inputElt(do_QueryInterface(content));
|
|
|
|
if (inputElt) {
|
|
|
|
PRBool isChecked = PR_FALSE;
|
|
|
|
inputElt->GetChecked(&isChecked);
|
|
|
|
if (isChecked)
|
|
|
|
aState |= DFCS_CHECKED;
|
|
|
|
}
|
2005-08-20 07:13:56 +00:00
|
|
|
contentState = GetContentState(aFrame, aWidgetType);
|
2005-08-20 07:13:11 +00:00
|
|
|
if (contentState & NS_EVENT_STATE_FOCUS)
|
|
|
|
aFocused = PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsDisabled(aFrame))
|
|
|
|
aState |= DFCS_INACTIVE;
|
|
|
|
else if (contentState & NS_EVENT_STATE_ACTIVE && contentState & NS_EVENT_STATE_HOVER)
|
|
|
|
aState |= DFCS_PUSHED;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2005-10-07 00:31:36 +00:00
|
|
|
case NS_THEME_MENUITEM:
|
|
|
|
case NS_THEME_CHECKMENUITEM:
|
|
|
|
case NS_THEME_RADIOMENUITEM: {
|
|
|
|
PRBool isTopLevel = PR_FALSE;
|
|
|
|
PRBool isOpen = PR_FALSE;
|
|
|
|
PRBool isContainer = PR_FALSE;
|
|
|
|
nsIMenuFrame *menuFrame = nsnull;
|
|
|
|
CallQueryInterface(aFrame, &menuFrame);
|
|
|
|
|
|
|
|
// We indicate top-level-ness using aPart. 0 is a normal menu item,
|
|
|
|
// 1 is a top-level menu item. The state of the item is composed of
|
|
|
|
// DFCS_* flags only.
|
|
|
|
aPart = 0;
|
|
|
|
aState = 0;
|
|
|
|
|
|
|
|
if (menuFrame) {
|
|
|
|
// If this is a real menu item, we should check if it is part of the
|
|
|
|
// main menu bar or not, and if it is a container, as these affect
|
|
|
|
// rendering.
|
2007-07-04 15:49:38 +00:00
|
|
|
isTopLevel = menuFrame->IsOnMenuBar();
|
|
|
|
isOpen = menuFrame->IsOpen();
|
|
|
|
isContainer = menuFrame->IsMenu();
|
2005-10-07 00:31:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (IsDisabled(aFrame))
|
|
|
|
aState |= DFCS_INACTIVE;
|
|
|
|
|
|
|
|
if (isTopLevel) {
|
|
|
|
aPart = 1;
|
|
|
|
if (isOpen)
|
|
|
|
aState |= DFCS_PUSHED;
|
|
|
|
}
|
|
|
|
|
2006-06-09 06:02:30 +00:00
|
|
|
if (CheckBooleanAttr(aFrame, nsWidgetAtoms::mozmenuactive))
|
2005-10-07 00:31:36 +00:00
|
|
|
aState |= DFCS_HOT;
|
|
|
|
|
2007-07-14 15:11:37 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
case NS_THEME_MENUCHECKBOX:
|
|
|
|
case NS_THEME_MENURADIO:
|
|
|
|
case NS_THEME_MENUARROW:
|
|
|
|
aState = 0;
|
|
|
|
if (IsDisabled(aFrame))
|
|
|
|
aState |= DFCS_INACTIVE;
|
|
|
|
if (CheckBooleanAttr(aFrame, nsWidgetAtoms::mozmenuactive))
|
|
|
|
aState |= DFCS_HOT;
|
|
|
|
if (aWidgetType == NS_THEME_MENUCHECKBOX || aWidgetType == NS_THEME_MENURADIO) {
|
2005-10-07 00:31:36 +00:00
|
|
|
if (IsCheckedButton(aFrame))
|
|
|
|
aState |= DFCS_CHECKED;
|
2007-07-14 15:11:37 +00:00
|
|
|
} else {
|
|
|
|
if (aFrame->GetStyleVisibility()->mDirection == NS_STYLE_DIRECTION_RTL)
|
|
|
|
aState |= DFCS_RTL;
|
2005-10-07 00:31:36 +00:00
|
|
|
}
|
|
|
|
return NS_OK;
|
2005-08-20 07:13:11 +00:00
|
|
|
case NS_THEME_LISTBOX:
|
|
|
|
case NS_THEME_TREEVIEW:
|
|
|
|
case NS_THEME_TEXTFIELD:
|
2007-05-07 02:06:58 +00:00
|
|
|
case NS_THEME_TEXTFIELD_MULTILINE:
|
2005-08-20 07:13:11 +00:00
|
|
|
case NS_THEME_DROPDOWN:
|
|
|
|
case NS_THEME_DROPDOWN_TEXTFIELD:
|
|
|
|
case NS_THEME_SCROLLBAR_THUMB_VERTICAL:
|
|
|
|
case NS_THEME_SCROLLBAR_THUMB_HORIZONTAL:
|
|
|
|
case NS_THEME_SCROLLBAR_TRACK_VERTICAL:
|
|
|
|
case NS_THEME_SCROLLBAR_TRACK_HORIZONTAL:
|
2006-05-30 13:50:48 +00:00
|
|
|
case NS_THEME_SCALE_HORIZONTAL:
|
|
|
|
case NS_THEME_SCALE_VERTICAL:
|
|
|
|
case NS_THEME_SCALE_THUMB_HORIZONTAL:
|
|
|
|
case NS_THEME_SCALE_THUMB_VERTICAL:
|
2005-08-20 07:13:11 +00:00
|
|
|
case NS_THEME_STATUSBAR:
|
|
|
|
case NS_THEME_STATUSBAR_PANEL:
|
|
|
|
case NS_THEME_STATUSBAR_RESIZER_PANEL:
|
|
|
|
case NS_THEME_PROGRESSBAR_CHUNK:
|
|
|
|
case NS_THEME_PROGRESSBAR_CHUNK_VERTICAL:
|
|
|
|
case NS_THEME_TOOLTIP:
|
|
|
|
case NS_THEME_PROGRESSBAR:
|
|
|
|
case NS_THEME_PROGRESSBAR_VERTICAL:
|
|
|
|
case NS_THEME_TAB:
|
|
|
|
case NS_THEME_TAB_LEFT_EDGE:
|
|
|
|
case NS_THEME_TAB_RIGHT_EDGE:
|
|
|
|
case NS_THEME_TAB_PANEL:
|
|
|
|
case NS_THEME_TAB_PANELS:
|
2005-10-07 00:31:36 +00:00
|
|
|
case NS_THEME_MENUBAR:
|
|
|
|
case NS_THEME_MENUPOPUP:
|
2005-08-20 07:13:11 +00:00
|
|
|
// these don't use DrawFrameControl
|
|
|
|
return NS_OK;
|
|
|
|
case NS_THEME_DROPDOWN_BUTTON: {
|
|
|
|
|
|
|
|
aPart = DFC_SCROLL;
|
|
|
|
aState = DFCS_SCROLLCOMBOBOX;
|
|
|
|
|
2005-08-20 07:13:33 +00:00
|
|
|
nsIContent* content = aFrame->GetContent();
|
|
|
|
nsIFrame* parentFrame = aFrame->GetParent();
|
2007-07-04 15:49:38 +00:00
|
|
|
if (parentFrame->GetType() == nsWidgetAtoms::menuFrame ||
|
|
|
|
(content && content->IsNodeOfType(nsINode::eHTML)))
|
2005-08-20 07:13:11 +00:00
|
|
|
// XUL menu lists and HTML selects get state from parent
|
|
|
|
aFrame = parentFrame;
|
|
|
|
// XXX the button really shouldn't depress when clicking the
|
|
|
|
// parent, but the button frame is never :active for these controls..
|
|
|
|
|
|
|
|
if (IsDisabled(aFrame))
|
|
|
|
aState |= DFCS_INACTIVE;
|
|
|
|
else {
|
2005-08-20 07:13:56 +00:00
|
|
|
PRInt32 eventState = GetContentState(aFrame, aWidgetType);
|
2005-08-20 07:14:19 +00:00
|
|
|
#ifndef WINCE
|
2005-08-20 07:13:11 +00:00
|
|
|
if (eventState & NS_EVENT_STATE_HOVER && eventState & NS_EVENT_STATE_ACTIVE)
|
2005-08-20 07:14:19 +00:00
|
|
|
aState |= DFCS_PUSHED | DFCS_FLAT;
|
|
|
|
#endif
|
2005-08-20 07:13:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_UP:
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_DOWN:
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_LEFT:
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_RIGHT: {
|
|
|
|
PRInt32 contentState;
|
|
|
|
|
|
|
|
aPart = DFC_SCROLL;
|
|
|
|
switch (aWidgetType) {
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_UP:
|
|
|
|
aState = DFCS_SCROLLUP;
|
|
|
|
break;
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_DOWN:
|
|
|
|
aState = DFCS_SCROLLDOWN;
|
|
|
|
break;
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_LEFT:
|
|
|
|
aState = DFCS_SCROLLLEFT;
|
|
|
|
break;
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_RIGHT:
|
|
|
|
aState = DFCS_SCROLLRIGHT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsDisabled(aFrame))
|
|
|
|
aState |= DFCS_INACTIVE;
|
|
|
|
else {
|
2005-08-20 07:13:56 +00:00
|
|
|
contentState = GetContentState(aFrame, aWidgetType);
|
2005-08-20 07:14:19 +00:00
|
|
|
#ifndef WINCE
|
2005-08-20 07:13:11 +00:00
|
|
|
if (contentState & NS_EVENT_STATE_HOVER && contentState & NS_EVENT_STATE_ACTIVE)
|
|
|
|
aState |= DFCS_PUSHED | DFCS_FLAT;
|
2005-08-20 07:14:19 +00:00
|
|
|
#endif
|
2005-08-20 07:13:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
case NS_THEME_SPINNER_UP_BUTTON:
|
|
|
|
case NS_THEME_SPINNER_DOWN_BUTTON: {
|
|
|
|
PRInt32 contentState;
|
|
|
|
|
|
|
|
aPart = DFC_SCROLL;
|
|
|
|
switch (aWidgetType) {
|
|
|
|
case NS_THEME_SPINNER_UP_BUTTON:
|
|
|
|
aState = DFCS_SCROLLUP;
|
|
|
|
break;
|
|
|
|
case NS_THEME_SPINNER_DOWN_BUTTON:
|
|
|
|
aState = DFCS_SCROLLDOWN;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsDisabled(aFrame))
|
|
|
|
aState |= DFCS_INACTIVE;
|
|
|
|
else {
|
2005-08-20 07:13:56 +00:00
|
|
|
contentState = GetContentState(aFrame, aWidgetType);
|
2005-08-20 07:13:11 +00:00
|
|
|
if (contentState & NS_EVENT_STATE_HOVER && contentState & NS_EVENT_STATE_ACTIVE)
|
|
|
|
aState |= DFCS_PUSHED;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
case NS_THEME_RESIZER:
|
|
|
|
aPart = DFC_SCROLL;
|
|
|
|
aState = DFCS_SCROLLSIZEGRIP;
|
|
|
|
return NS_OK;
|
2007-08-06 17:45:57 +00:00
|
|
|
case NS_THEME_MENUSEPARATOR:
|
|
|
|
aPart = 0;
|
|
|
|
aState = 0;
|
|
|
|
return NS_OK;
|
2005-08-20 07:13:11 +00:00
|
|
|
}
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Draw classic Windows tab
|
|
|
|
// (no system API for this, but DrawEdge can draw all the parts of a tab)
|
|
|
|
static void DrawTab(HDC hdc, const RECT& R, PRInt32 aPosition, PRBool aSelected,
|
|
|
|
PRBool aDrawLeft, PRBool aDrawRight)
|
|
|
|
{
|
|
|
|
PRInt32 leftFlag, topFlag, rightFlag, lightFlag, shadeFlag;
|
|
|
|
RECT topRect, sideRect, bottomRect, lightRect, shadeRect;
|
|
|
|
PRInt32 selectedOffset, lOffset, rOffset;
|
|
|
|
|
|
|
|
selectedOffset = aSelected ? 1 : 0;
|
|
|
|
lOffset = aDrawLeft ? 2 : 0;
|
|
|
|
rOffset = aDrawRight ? 2 : 0;
|
|
|
|
|
|
|
|
// Get info for tab orientation/position (Left, Top, Right, Bottom)
|
|
|
|
switch (aPosition) {
|
|
|
|
case BF_LEFT:
|
|
|
|
leftFlag = BF_TOP; topFlag = BF_LEFT;
|
|
|
|
rightFlag = BF_BOTTOM;
|
|
|
|
lightFlag = BF_DIAGONAL_ENDTOPRIGHT;
|
|
|
|
shadeFlag = BF_DIAGONAL_ENDBOTTOMRIGHT;
|
|
|
|
|
|
|
|
::SetRect(&topRect, R.left, R.top+lOffset, R.right, R.bottom-rOffset);
|
|
|
|
::SetRect(&sideRect, R.left+2, R.top, R.right-2+selectedOffset, R.bottom);
|
|
|
|
::SetRect(&bottomRect, R.right-2, R.top, R.right, R.bottom);
|
|
|
|
::SetRect(&lightRect, R.left, R.top, R.left+3, R.top+3);
|
|
|
|
::SetRect(&shadeRect, R.left+1, R.bottom-2, R.left+2, R.bottom-1);
|
|
|
|
break;
|
|
|
|
case BF_TOP:
|
|
|
|
leftFlag = BF_LEFT; topFlag = BF_TOP;
|
|
|
|
rightFlag = BF_RIGHT;
|
|
|
|
lightFlag = BF_DIAGONAL_ENDTOPRIGHT;
|
|
|
|
shadeFlag = BF_DIAGONAL_ENDBOTTOMRIGHT;
|
|
|
|
|
|
|
|
::SetRect(&topRect, R.left+lOffset, R.top, R.right-rOffset, R.bottom);
|
|
|
|
::SetRect(&sideRect, R.left, R.top+2, R.right, R.bottom-1+selectedOffset);
|
|
|
|
::SetRect(&bottomRect, R.left, R.bottom-1, R.right, R.bottom);
|
|
|
|
::SetRect(&lightRect, R.left, R.top, R.left+3, R.top+3);
|
|
|
|
::SetRect(&shadeRect, R.right-2, R.top+1, R.right-1, R.top+2);
|
|
|
|
break;
|
|
|
|
case BF_RIGHT:
|
|
|
|
leftFlag = BF_TOP; topFlag = BF_RIGHT;
|
|
|
|
rightFlag = BF_BOTTOM;
|
|
|
|
lightFlag = BF_DIAGONAL_ENDTOPLEFT;
|
|
|
|
shadeFlag = BF_DIAGONAL_ENDBOTTOMLEFT;
|
|
|
|
|
|
|
|
::SetRect(&topRect, R.left, R.top+lOffset, R.right, R.bottom-rOffset);
|
|
|
|
::SetRect(&sideRect, R.left+2-selectedOffset, R.top, R.right-2, R.bottom);
|
|
|
|
::SetRect(&bottomRect, R.left, R.top, R.left+2, R.bottom);
|
|
|
|
::SetRect(&lightRect, R.right-3, R.top, R.right-1, R.top+2);
|
|
|
|
::SetRect(&shadeRect, R.right-2, R.bottom-3, R.right, R.bottom-1);
|
|
|
|
break;
|
|
|
|
case BF_BOTTOM:
|
|
|
|
leftFlag = BF_LEFT; topFlag = BF_BOTTOM;
|
|
|
|
rightFlag = BF_RIGHT;
|
|
|
|
lightFlag = BF_DIAGONAL_ENDTOPLEFT;
|
|
|
|
shadeFlag = BF_DIAGONAL_ENDBOTTOMLEFT;
|
|
|
|
|
|
|
|
::SetRect(&topRect, R.left+lOffset, R.top, R.right-rOffset, R.bottom);
|
|
|
|
::SetRect(&sideRect, R.left, R.top+2-selectedOffset, R.right, R.bottom-2);
|
|
|
|
::SetRect(&bottomRect, R.left, R.top, R.right, R.top+2);
|
|
|
|
::SetRect(&lightRect, R.left, R.bottom-3, R.left+2, R.bottom-1);
|
|
|
|
::SetRect(&shadeRect, R.right-2, R.bottom-3, R.right, R.bottom-1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Background
|
|
|
|
::FillRect(hdc, &R, (HBRUSH) (COLOR_3DFACE+1) );
|
|
|
|
|
|
|
|
// Tab "Top"
|
|
|
|
::DrawEdge(hdc, &topRect, EDGE_RAISED, BF_SOFT | topFlag);
|
|
|
|
|
|
|
|
// Tab "Bottom"
|
|
|
|
if (!aSelected)
|
|
|
|
::DrawEdge(hdc, &bottomRect, EDGE_RAISED, BF_SOFT | topFlag);
|
|
|
|
|
|
|
|
// Tab "Sides"
|
|
|
|
if (!aDrawLeft)
|
|
|
|
leftFlag = 0;
|
|
|
|
if (!aDrawRight)
|
|
|
|
rightFlag = 0;
|
|
|
|
::DrawEdge(hdc, &sideRect, EDGE_RAISED, BF_SOFT | leftFlag | rightFlag);
|
|
|
|
|
|
|
|
// Tab Diagonal Corners
|
|
|
|
if (aDrawLeft)
|
|
|
|
::DrawEdge(hdc, &lightRect, EDGE_RAISED, BF_SOFT | lightFlag);
|
|
|
|
|
|
|
|
if (aDrawRight)
|
|
|
|
::DrawEdge(hdc, &shadeRect, EDGE_RAISED, BF_SOFT | shadeFlag);
|
|
|
|
}
|
|
|
|
|
2005-10-13 15:07:56 +00:00
|
|
|
#ifndef WINCE
|
2005-10-07 00:31:36 +00:00
|
|
|
static void DrawMenuImage(HDC hdc, const RECT& rc, PRInt32 aComponent, PRUint32 aColor)
|
|
|
|
{
|
|
|
|
// This procedure creates a memory bitmap to contain the check mark, draws
|
|
|
|
// it into the bitmap (it is a mask image), then composes it onto the menu
|
|
|
|
// item in appropriate colors.
|
|
|
|
HDC hMemoryDC = ::CreateCompatibleDC(hdc);
|
|
|
|
if (hMemoryDC) {
|
|
|
|
// XXXjgr We should ideally be caching these, but we wont be notified when
|
|
|
|
// they change currently, so we can't do so easily. Same for the bitmap.
|
|
|
|
int checkW = ::GetSystemMetrics(SM_CXMENUCHECK);
|
|
|
|
int checkH = ::GetSystemMetrics(SM_CYMENUCHECK);
|
|
|
|
|
|
|
|
HBITMAP hMonoBitmap = ::CreateBitmap(checkW, checkH, 1, 1, NULL);
|
|
|
|
if (hMonoBitmap) {
|
|
|
|
|
|
|
|
HBITMAP hPrevBitmap = (HBITMAP) ::SelectObject(hMemoryDC, hMonoBitmap);
|
|
|
|
if (hPrevBitmap) {
|
|
|
|
|
|
|
|
// XXXjgr This will go pear-shaped if the image is bigger than the
|
|
|
|
// provided rect. What should we do?
|
|
|
|
RECT imgRect = { 0, 0, checkW, checkH };
|
|
|
|
POINT imgPos = {
|
|
|
|
rc.left + (rc.right - rc.left - checkW) / 2,
|
|
|
|
rc.top + (rc.bottom - rc.top - checkH) / 2
|
|
|
|
};
|
|
|
|
|
2007-07-14 15:11:37 +00:00
|
|
|
// XXXzeniko Windows renders these 1px lower than you'd expect
|
|
|
|
if (aComponent == DFCS_MENUCHECK || aComponent == DFCS_MENUBULLET)
|
|
|
|
imgPos.y++;
|
|
|
|
|
2005-10-07 00:31:36 +00:00
|
|
|
::DrawFrameControl(hMemoryDC, &imgRect, DFC_MENU, aComponent);
|
|
|
|
COLORREF oldTextCol = ::SetTextColor(hdc, 0x00000000);
|
|
|
|
COLORREF oldBackCol = ::SetBkColor(hdc, 0x00FFFFFF);
|
|
|
|
::BitBlt(hdc, imgPos.x, imgPos.y, checkW, checkH, hMemoryDC, 0, 0, SRCAND);
|
|
|
|
::SetTextColor(hdc, ::GetSysColor(aColor));
|
|
|
|
::SetBkColor(hdc, 0x00000000);
|
|
|
|
::BitBlt(hdc, imgPos.x, imgPos.y, checkW, checkH, hMemoryDC, 0, 0, SRCPAINT);
|
|
|
|
::SetTextColor(hdc, oldTextCol);
|
|
|
|
::SetBkColor(hdc, oldBackCol);
|
|
|
|
::SelectObject(hMemoryDC, hPrevBitmap);
|
|
|
|
}
|
|
|
|
::DeleteObject(hMonoBitmap);
|
|
|
|
}
|
|
|
|
::DeleteDC(hMemoryDC);
|
|
|
|
}
|
|
|
|
}
|
2005-10-13 15:07:56 +00:00
|
|
|
#endif
|
2005-10-07 00:31:36 +00:00
|
|
|
|
2006-05-30 13:50:48 +00:00
|
|
|
void nsNativeThemeWin::DrawCheckedRect(HDC hdc, const RECT& rc, PRInt32 fore, PRInt32 back,
|
|
|
|
HBRUSH defaultBack)
|
|
|
|
{
|
|
|
|
static WORD patBits[8] = {
|
|
|
|
0xaa, 0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa, 0x55
|
|
|
|
};
|
|
|
|
|
|
|
|
HBITMAP patBmp = ::CreateBitmap(8, 8, 1, 1, patBits);
|
|
|
|
if (patBmp) {
|
|
|
|
HBRUSH brush = (HBRUSH) ::CreatePatternBrush(patBmp);
|
|
|
|
if (brush) {
|
|
|
|
COLORREF oldForeColor = ::SetTextColor(hdc, ::GetSysColor(fore));
|
|
|
|
COLORREF oldBackColor = ::SetBkColor(hdc, ::GetSysColor(back));
|
2006-07-11 23:13:21 +00:00
|
|
|
POINT vpOrg;
|
2006-05-30 13:50:48 +00:00
|
|
|
|
|
|
|
#ifndef WINCE
|
|
|
|
::UnrealizeObject(brush);
|
|
|
|
#endif
|
2006-07-11 23:13:21 +00:00
|
|
|
::GetViewportOrgEx(hdc, &vpOrg);
|
|
|
|
::SetBrushOrgEx(hdc, vpOrg.x + rc.left, vpOrg.y + rc.top, NULL);
|
2006-05-30 13:50:48 +00:00
|
|
|
HBRUSH oldBrush = (HBRUSH) ::SelectObject(hdc, brush);
|
|
|
|
::FillRect(hdc, &rc, brush);
|
|
|
|
::SetTextColor(hdc, oldForeColor);
|
|
|
|
::SetBkColor(hdc, oldBackColor);
|
|
|
|
::SelectObject(hdc, oldBrush);
|
|
|
|
::DeleteObject(brush);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
::FillRect(hdc, &rc, defaultBack);
|
|
|
|
|
|
|
|
::DeleteObject(patBmp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-20 07:13:11 +00:00
|
|
|
nsresult nsNativeThemeWin::ClassicDrawWidgetBackground(nsIRenderingContext* aContext,
|
|
|
|
nsIFrame* aFrame,
|
|
|
|
PRUint8 aWidgetType,
|
|
|
|
const nsRect& aRect,
|
|
|
|
const nsRect& aClipRect)
|
2007-03-03 00:18:34 +00:00
|
|
|
{
|
2005-08-20 07:13:11 +00:00
|
|
|
PRInt32 part, state;
|
|
|
|
PRBool focused;
|
|
|
|
nsresult rv;
|
|
|
|
rv = ClassicGetThemePartAndState(aFrame, aWidgetType, part, state, focused);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
2005-08-23 02:11:54 +00:00
|
|
|
nsCOMPtr<nsIDeviceContext> dc;
|
|
|
|
aContext->GetDeviceContext(*getter_AddRefs(dc));
|
2007-06-27 16:42:37 +00:00
|
|
|
gfxFloat p2a = gfxFloat(dc->AppUnitsPerDevPixel());
|
2005-08-20 07:13:11 +00:00
|
|
|
RECT widgetRect;
|
2007-06-27 16:42:37 +00:00
|
|
|
gfxRect tr(aRect.x, aRect.y, aRect.width, aRect.height),
|
|
|
|
cr(aClipRect.x, aClipRect.y, aClipRect.width, aClipRect.height);
|
2005-08-20 07:13:11 +00:00
|
|
|
|
2007-06-27 16:42:37 +00:00
|
|
|
tr.ScaleInverse(p2a);
|
|
|
|
cr.ScaleInverse(p2a);
|
2006-02-09 01:24:30 +00:00
|
|
|
|
2007-03-03 00:18:34 +00:00
|
|
|
nsRefPtr<gfxContext> ctx = (gfxContext*)aContext->GetNativeGraphicData(nsIRenderingContext::NATIVE_THEBES_CONTEXT);
|
2006-06-06 19:01:58 +00:00
|
|
|
|
2007-03-03 00:18:34 +00:00
|
|
|
gfxWindowsNativeDrawing nativeDrawing(ctx, cr, GetWidgetNativeDrawingFlags(aWidgetType));
|
2006-02-09 01:24:30 +00:00
|
|
|
|
2007-03-03 00:18:34 +00:00
|
|
|
RENDER_AGAIN:
|
2006-02-09 01:24:30 +00:00
|
|
|
|
2007-03-03 00:18:34 +00:00
|
|
|
HDC hdc = nativeDrawing.BeginNativeDrawing();
|
2007-08-09 18:54:17 +00:00
|
|
|
if (!hdc)
|
|
|
|
return NS_ERROR_FAILURE;
|
2006-02-09 01:24:30 +00:00
|
|
|
|
2007-03-03 00:18:34 +00:00
|
|
|
nativeDrawing.TransformToNativeRect(tr, widgetRect);
|
2005-10-06 04:02:10 +00:00
|
|
|
|
2005-11-16 13:51:47 +00:00
|
|
|
rv = NS_OK;
|
2005-08-20 07:13:11 +00:00
|
|
|
switch (aWidgetType) {
|
|
|
|
// Draw button
|
|
|
|
case NS_THEME_BUTTON: {
|
|
|
|
if (focused) {
|
|
|
|
// draw dark button focus border first
|
|
|
|
HBRUSH brush;
|
|
|
|
brush = ::GetSysColorBrush(COLOR_3DDKSHADOW);
|
|
|
|
if (brush)
|
|
|
|
::FrameRect(hdc, &widgetRect, brush);
|
|
|
|
InflateRect(&widgetRect, -1, -1);
|
|
|
|
}
|
|
|
|
// fall-through...
|
|
|
|
}
|
|
|
|
// Draw controls supported by DrawFrameControl
|
|
|
|
case NS_THEME_CHECKBOX:
|
2007-05-09 19:17:17 +00:00
|
|
|
case NS_THEME_CHECKBOX_SMALL:
|
2005-08-20 07:13:11 +00:00
|
|
|
case NS_THEME_RADIO:
|
2007-05-09 19:17:17 +00:00
|
|
|
case NS_THEME_RADIO_SMALL:
|
2005-08-20 07:13:11 +00:00
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_UP:
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_DOWN:
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_LEFT:
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_RIGHT:
|
|
|
|
case NS_THEME_SPINNER_UP_BUTTON:
|
|
|
|
case NS_THEME_SPINNER_DOWN_BUTTON:
|
|
|
|
case NS_THEME_DROPDOWN_BUTTON:
|
2005-10-07 00:31:36 +00:00
|
|
|
case NS_THEME_RESIZER: {
|
2005-08-20 07:13:11 +00:00
|
|
|
PRInt32 oldTA;
|
|
|
|
// setup DC to make DrawFrameControl draw correctly
|
|
|
|
oldTA = ::SetTextAlign(hdc, TA_TOP | TA_LEFT | TA_NOUPDATECP);
|
|
|
|
::DrawFrameControl(hdc, &widgetRect, part, state);
|
|
|
|
::SetTextAlign(hdc, oldTA);
|
|
|
|
|
|
|
|
// Draw focus rectangles for HTML checkboxes and radio buttons
|
|
|
|
// XXX it'd be nice to draw these outside of the frame
|
2007-05-09 19:17:17 +00:00
|
|
|
if (focused && (IsCheckboxWidgetType(aWidgetType) || IsRadioWidgetType(aWidgetType))) {
|
2005-08-20 07:13:11 +00:00
|
|
|
// setup DC to make DrawFocusRect draw correctly
|
2006-07-11 23:13:21 +00:00
|
|
|
POINT vpOrg;
|
|
|
|
::GetViewportOrgEx(hdc, &vpOrg);
|
|
|
|
::SetBrushOrgEx(hdc, vpOrg.x + widgetRect.left, vpOrg.y + widgetRect.top, NULL);
|
2005-08-20 07:13:11 +00:00
|
|
|
PRInt32 oldColor;
|
|
|
|
oldColor = ::SetTextColor(hdc, 0);
|
|
|
|
// draw focus rectangle
|
|
|
|
::DrawFocusRect(hdc, &widgetRect);
|
|
|
|
::SetTextColor(hdc, oldColor);
|
|
|
|
}
|
2005-11-16 13:51:47 +00:00
|
|
|
break;
|
2005-08-20 07:13:11 +00:00
|
|
|
}
|
|
|
|
// Draw controls with 2px 3D inset border
|
|
|
|
case NS_THEME_TEXTFIELD:
|
2007-05-07 02:06:58 +00:00
|
|
|
case NS_THEME_TEXTFIELD_MULTILINE:
|
2005-08-20 07:13:56 +00:00
|
|
|
case NS_THEME_LISTBOX:
|
2005-08-20 07:13:11 +00:00
|
|
|
case NS_THEME_DROPDOWN:
|
|
|
|
case NS_THEME_DROPDOWN_TEXTFIELD: {
|
|
|
|
// Draw inset edge
|
|
|
|
::DrawEdge(hdc, &widgetRect, EDGE_SUNKEN, BF_RECT | BF_ADJUST);
|
|
|
|
|
2005-08-20 07:13:24 +00:00
|
|
|
// Fill in background
|
2005-08-20 07:13:33 +00:00
|
|
|
if (IsDisabled(aFrame) ||
|
2006-05-05 06:52:21 +00:00
|
|
|
(aFrame->GetContent()->IsNodeOfType(nsINode::eXUL) &&
|
2005-08-20 07:13:33 +00:00
|
|
|
IsReadOnly(aFrame)))
|
2005-08-20 07:13:24 +00:00
|
|
|
::FillRect(hdc, &widgetRect, (HBRUSH) (COLOR_BTNFACE+1));
|
|
|
|
else
|
|
|
|
::FillRect(hdc, &widgetRect, (HBRUSH) (COLOR_WINDOW+1));
|
2005-10-06 04:02:10 +00:00
|
|
|
|
2005-11-16 13:51:47 +00:00
|
|
|
break;
|
2005-08-20 07:13:24 +00:00
|
|
|
}
|
|
|
|
case NS_THEME_TREEVIEW: {
|
|
|
|
// Draw inset edge
|
|
|
|
::DrawEdge(hdc, &widgetRect, EDGE_SUNKEN, BF_RECT | BF_ADJUST);
|
|
|
|
|
2005-08-20 07:13:11 +00:00
|
|
|
// Fill in window color background
|
|
|
|
::FillRect(hdc, &widgetRect, (HBRUSH) (COLOR_WINDOW+1));
|
2005-10-06 04:02:10 +00:00
|
|
|
|
2005-11-16 13:51:47 +00:00
|
|
|
break;
|
2005-08-20 07:13:11 +00:00
|
|
|
}
|
|
|
|
// Draw ToolTip background
|
|
|
|
case NS_THEME_TOOLTIP:
|
2007-06-30 05:00:02 +00:00
|
|
|
::FrameRect(hdc, &widgetRect, ::GetSysColorBrush(COLOR_WINDOWFRAME));
|
2005-08-20 07:13:11 +00:00
|
|
|
InflateRect(&widgetRect, -1, -1);
|
2007-06-30 05:00:02 +00:00
|
|
|
::FillRect(hdc, &widgetRect, ::GetSysColorBrush(COLOR_INFOBK));
|
2005-10-06 04:02:10 +00:00
|
|
|
|
2005-11-16 13:51:47 +00:00
|
|
|
break;
|
2005-08-20 07:13:11 +00:00
|
|
|
// Draw 3D face background controls
|
|
|
|
case NS_THEME_PROGRESSBAR:
|
|
|
|
case NS_THEME_PROGRESSBAR_VERTICAL:
|
2005-08-20 07:14:29 +00:00
|
|
|
// Draw 3D border
|
|
|
|
::DrawEdge(hdc, &widgetRect, BDR_SUNKENOUTER, BF_RECT | BF_MIDDLE);
|
|
|
|
InflateRect(&widgetRect, -1, -1);
|
|
|
|
// fall through
|
|
|
|
case NS_THEME_TAB_PANEL:
|
2005-08-20 07:13:11 +00:00
|
|
|
case NS_THEME_STATUSBAR:
|
|
|
|
case NS_THEME_STATUSBAR_RESIZER_PANEL: {
|
|
|
|
::FillRect(hdc, &widgetRect, (HBRUSH) (COLOR_BTNFACE+1));
|
2005-10-06 04:02:10 +00:00
|
|
|
|
2005-11-16 13:51:47 +00:00
|
|
|
break;
|
2005-08-20 07:13:11 +00:00
|
|
|
}
|
|
|
|
// Draw 3D inset statusbar panel
|
|
|
|
case NS_THEME_STATUSBAR_PANEL: {
|
2005-08-20 07:13:33 +00:00
|
|
|
if (aFrame->GetNextSibling())
|
2005-08-20 07:13:11 +00:00
|
|
|
widgetRect.right -= 2; // space between sibling status panels
|
|
|
|
|
|
|
|
::DrawEdge(hdc, &widgetRect, BDR_SUNKENOUTER, BF_RECT | BF_MIDDLE);
|
2005-10-06 04:02:10 +00:00
|
|
|
|
2005-11-16 13:51:47 +00:00
|
|
|
break;
|
2005-08-20 07:13:11 +00:00
|
|
|
}
|
|
|
|
// Draw scrollbar thumb
|
|
|
|
case NS_THEME_SCROLLBAR_THUMB_VERTICAL:
|
|
|
|
case NS_THEME_SCROLLBAR_THUMB_HORIZONTAL:
|
|
|
|
::DrawEdge(hdc, &widgetRect, EDGE_RAISED, BF_RECT | BF_MIDDLE);
|
2005-10-06 04:02:10 +00:00
|
|
|
|
2006-05-30 13:50:48 +00:00
|
|
|
break;
|
|
|
|
case NS_THEME_SCALE_THUMB_VERTICAL:
|
|
|
|
case NS_THEME_SCALE_THUMB_HORIZONTAL:
|
|
|
|
::DrawEdge(hdc, &widgetRect, EDGE_RAISED, BF_RECT | BF_SOFT | BF_MIDDLE | BF_ADJUST);
|
|
|
|
if (IsDisabled(aFrame)) {
|
|
|
|
DrawCheckedRect(hdc, widgetRect, COLOR_3DFACE, COLOR_3DHILIGHT,
|
|
|
|
(HBRUSH) COLOR_3DHILIGHT);
|
|
|
|
}
|
|
|
|
|
2005-11-16 13:51:47 +00:00
|
|
|
break;
|
2005-08-20 07:13:11 +00:00
|
|
|
// Draw scrollbar track background
|
|
|
|
case NS_THEME_SCROLLBAR_TRACK_VERTICAL:
|
|
|
|
case NS_THEME_SCROLLBAR_TRACK_HORIZONTAL: {
|
|
|
|
|
|
|
|
// Windows fills in the scrollbar track differently
|
|
|
|
// depending on whether these are equal
|
|
|
|
DWORD color3D, colorScrollbar, colorWindow;
|
|
|
|
|
|
|
|
color3D = ::GetSysColor(COLOR_3DFACE);
|
|
|
|
colorWindow = ::GetSysColor(COLOR_WINDOW);
|
|
|
|
colorScrollbar = ::GetSysColor(COLOR_SCROLLBAR);
|
|
|
|
|
|
|
|
if ((color3D != colorScrollbar) && (colorWindow != colorScrollbar))
|
|
|
|
// Use solid brush
|
|
|
|
::FillRect(hdc, &widgetRect, (HBRUSH) (COLOR_SCROLLBAR+1));
|
|
|
|
else
|
|
|
|
{
|
2006-05-30 13:50:48 +00:00
|
|
|
DrawCheckedRect(hdc, widgetRect, COLOR_3DHILIGHT, COLOR_3DFACE,
|
|
|
|
(HBRUSH) COLOR_SCROLLBAR+1);
|
2005-08-20 07:13:11 +00:00
|
|
|
}
|
|
|
|
// XXX should invert the part of the track being clicked here
|
|
|
|
// but the track is never :active
|
2005-10-06 04:02:10 +00:00
|
|
|
|
2005-11-16 13:51:47 +00:00
|
|
|
break;
|
2005-08-20 07:13:11 +00:00
|
|
|
}
|
2006-05-30 13:50:48 +00:00
|
|
|
// Draw scale track background
|
|
|
|
case NS_THEME_SCALE_VERTICAL:
|
|
|
|
case NS_THEME_SCALE_HORIZONTAL: {
|
|
|
|
if (aWidgetType == NS_THEME_SCALE_HORIZONTAL) {
|
|
|
|
PRInt32 adjustment = (widgetRect.bottom - widgetRect.top) / 2 - 2;
|
|
|
|
widgetRect.top += adjustment;
|
|
|
|
widgetRect.bottom -= adjustment;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
PRInt32 adjustment = (widgetRect.right - widgetRect.left) / 2 - 2;
|
|
|
|
widgetRect.left += adjustment;
|
|
|
|
widgetRect.right -= adjustment;
|
|
|
|
}
|
|
|
|
|
|
|
|
::DrawEdge(hdc, &widgetRect, EDGE_SUNKEN, BF_RECT | BF_ADJUST);
|
|
|
|
::FillRect(hdc, &widgetRect, (HBRUSH) GetStockObject(GRAY_BRUSH));
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2005-08-20 07:13:11 +00:00
|
|
|
case NS_THEME_PROGRESSBAR_CHUNK:
|
|
|
|
case NS_THEME_PROGRESSBAR_CHUNK_VERTICAL:
|
|
|
|
::FillRect(hdc, &widgetRect, (HBRUSH) (COLOR_HIGHLIGHT+1));
|
2005-10-06 04:02:10 +00:00
|
|
|
|
2005-11-16 13:51:47 +00:00
|
|
|
break;
|
2005-08-20 07:13:11 +00:00
|
|
|
// Draw Tab
|
|
|
|
case NS_THEME_TAB:
|
|
|
|
case NS_THEME_TAB_LEFT_EDGE:
|
|
|
|
case NS_THEME_TAB_RIGHT_EDGE: {
|
|
|
|
DrawTab(hdc, widgetRect,
|
|
|
|
IsBottomTab(aFrame) ? BF_BOTTOM : BF_TOP,
|
2005-08-20 07:13:56 +00:00
|
|
|
IsSelectedTab(aFrame),
|
2005-08-20 07:13:11 +00:00
|
|
|
aWidgetType != NS_THEME_TAB_RIGHT_EDGE,
|
|
|
|
aWidgetType != NS_THEME_TAB_LEFT_EDGE);
|
|
|
|
|
2005-11-16 13:51:47 +00:00
|
|
|
break;
|
2005-08-20 07:13:11 +00:00
|
|
|
}
|
|
|
|
case NS_THEME_TAB_PANELS:
|
|
|
|
::DrawEdge(hdc, &widgetRect, EDGE_RAISED, BF_SOFT | BF_MIDDLE |
|
|
|
|
BF_LEFT | BF_RIGHT | BF_BOTTOM);
|
2005-10-06 04:02:10 +00:00
|
|
|
|
2005-11-16 13:51:47 +00:00
|
|
|
break;
|
2005-10-07 00:31:36 +00:00
|
|
|
case NS_THEME_MENUBAR:
|
2005-11-16 13:51:47 +00:00
|
|
|
break;
|
2005-10-07 00:31:36 +00:00
|
|
|
case NS_THEME_MENUPOPUP:
|
2007-07-14 15:11:37 +00:00
|
|
|
NS_ASSERTION(mFlatMenus, "Classic menus are styled entirely through CSS");
|
|
|
|
::FillRect(hdc, &widgetRect, (HBRUSH) (COLOR_MENU+1));
|
|
|
|
::FrameRect(hdc, &widgetRect, ::GetSysColorBrush(COLOR_BTNSHADOW));
|
2005-11-16 13:51:47 +00:00
|
|
|
break;
|
2005-10-07 00:31:36 +00:00
|
|
|
case NS_THEME_MENUITEM:
|
|
|
|
case NS_THEME_CHECKMENUITEM:
|
2007-07-14 15:11:37 +00:00
|
|
|
case NS_THEME_RADIOMENUITEM:
|
2005-10-07 00:31:36 +00:00
|
|
|
// part == 0 for normal items
|
|
|
|
// part == 1 for top-level menu items
|
|
|
|
if (mFlatMenus) {
|
|
|
|
// Not disabled and hot/pushed.
|
|
|
|
if ((state & (DFCS_HOT | DFCS_PUSHED)) != 0) {
|
|
|
|
::FillRect(hdc, &widgetRect, (HBRUSH) (COLOR_MENUHILIGHT+1));
|
|
|
|
::FrameRect(hdc, &widgetRect, ::GetSysColorBrush(COLOR_HIGHLIGHT));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (part == 1) {
|
|
|
|
if ((state & DFCS_INACTIVE) == 0) {
|
|
|
|
if ((state & DFCS_PUSHED) != 0) {
|
|
|
|
::DrawEdge(hdc, &widgetRect, BDR_SUNKENOUTER, BF_RECT);
|
|
|
|
} else if ((state & DFCS_HOT) != 0) {
|
|
|
|
::DrawEdge(hdc, &widgetRect, BDR_RAISEDINNER, BF_RECT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if ((state & (DFCS_HOT | DFCS_PUSHED)) != 0) {
|
|
|
|
::FillRect(hdc, &widgetRect, (HBRUSH) (COLOR_HIGHLIGHT+1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-07-14 15:11:37 +00:00
|
|
|
break;
|
2005-10-13 15:07:56 +00:00
|
|
|
#ifndef WINCE
|
2007-07-14 15:11:37 +00:00
|
|
|
case NS_THEME_MENUCHECKBOX:
|
|
|
|
case NS_THEME_MENURADIO:
|
|
|
|
if (!(state & DFCS_CHECKED))
|
|
|
|
break; // nothin' to do
|
|
|
|
case NS_THEME_MENUARROW: {
|
|
|
|
PRUint32 color = COLOR_MENUTEXT;
|
|
|
|
if ((state & DFCS_INACTIVE))
|
|
|
|
color = COLOR_GRAYTEXT;
|
|
|
|
else if ((state & DFCS_HOT))
|
|
|
|
color = COLOR_HIGHLIGHTTEXT;
|
|
|
|
|
|
|
|
if (aWidgetType == NS_THEME_MENUCHECKBOX)
|
|
|
|
DrawMenuImage(hdc, widgetRect, DFCS_MENUCHECK, color);
|
|
|
|
else if (aWidgetType == NS_THEME_MENURADIO)
|
|
|
|
DrawMenuImage(hdc, widgetRect, DFCS_MENUBULLET, color);
|
|
|
|
else if (aWidgetType == NS_THEME_MENUARROW)
|
|
|
|
DrawMenuImage(hdc, widgetRect,
|
|
|
|
(state & DFCS_RTL) ? DFCS_MENUARROWRIGHT : DFCS_MENUARROW,
|
|
|
|
color);
|
2005-11-16 13:51:47 +00:00
|
|
|
break;
|
2005-10-07 00:31:36 +00:00
|
|
|
}
|
2007-08-06 17:45:57 +00:00
|
|
|
case NS_THEME_MENUSEPARATOR: {
|
|
|
|
// separators are offset by a bit (see menu.css)
|
|
|
|
widgetRect.left++;
|
|
|
|
widgetRect.right--;
|
|
|
|
|
|
|
|
// This magic number is brought to you by the value in menu.css
|
|
|
|
widgetRect.top += 4;
|
|
|
|
// Our rectangles are 1 pixel high (see border size in menu.css)
|
|
|
|
widgetRect.bottom = widgetRect.top+1;
|
|
|
|
::FillRect(hdc, &widgetRect, (HBRUSH)(COLOR_3DSHADOW+1));
|
|
|
|
widgetRect.top++;
|
|
|
|
widgetRect.bottom++;
|
|
|
|
::FillRect(hdc, &widgetRect, (HBRUSH)(COLOR_3DHILIGHT+1));
|
|
|
|
break;
|
|
|
|
}
|
2007-07-14 15:11:37 +00:00
|
|
|
#endif
|
2005-11-16 13:51:47 +00:00
|
|
|
default:
|
|
|
|
rv = NS_ERROR_FAILURE;
|
|
|
|
break;
|
2005-08-20 07:13:11 +00:00
|
|
|
}
|
2006-01-20 04:14:05 +00:00
|
|
|
|
2007-03-03 00:18:34 +00:00
|
|
|
nativeDrawing.EndNativeDrawing();
|
2006-08-09 20:25:07 +00:00
|
|
|
|
2007-03-03 00:18:34 +00:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
2006-08-09 20:25:07 +00:00
|
|
|
|
2007-03-03 00:18:34 +00:00
|
|
|
if (nativeDrawing.ShouldRenderAgain())
|
|
|
|
goto RENDER_AGAIN;
|
|
|
|
|
|
|
|
nativeDrawing.PaintToContext();
|
2006-01-20 04:14:05 +00:00
|
|
|
|
2005-11-16 13:51:47 +00:00
|
|
|
return rv;
|
2005-08-20 07:13:11 +00:00
|
|
|
}
|
|
|
|
|
2007-03-03 00:18:34 +00:00
|
|
|
PRUint32
|
|
|
|
nsNativeThemeWin::GetWidgetNativeDrawingFlags(PRUint8 aWidgetType)
|
|
|
|
{
|
|
|
|
switch (aWidgetType) {
|
|
|
|
case NS_THEME_BUTTON:
|
|
|
|
case NS_THEME_TEXTFIELD:
|
2007-05-07 02:06:58 +00:00
|
|
|
case NS_THEME_TEXTFIELD_MULTILINE:
|
2007-03-03 00:18:34 +00:00
|
|
|
|
|
|
|
case NS_THEME_DROPDOWN:
|
|
|
|
case NS_THEME_DROPDOWN_TEXTFIELD:
|
|
|
|
return
|
|
|
|
gfxWindowsNativeDrawing::CANNOT_DRAW_TO_COLOR_ALPHA |
|
|
|
|
gfxWindowsNativeDrawing::CAN_AXIS_ALIGNED_SCALE |
|
|
|
|
gfxWindowsNativeDrawing::CANNOT_COMPLEX_TRANSFORM;
|
|
|
|
|
|
|
|
// need to check these others
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_UP:
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_DOWN:
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_LEFT:
|
|
|
|
case NS_THEME_SCROLLBAR_BUTTON_RIGHT:
|
|
|
|
case NS_THEME_SCROLLBAR_THUMB_VERTICAL:
|
|
|
|
case NS_THEME_SCROLLBAR_THUMB_HORIZONTAL:
|
|
|
|
case NS_THEME_SCROLLBAR_TRACK_VERTICAL:
|
|
|
|
case NS_THEME_SCROLLBAR_TRACK_HORIZONTAL:
|
|
|
|
case NS_THEME_SCALE_HORIZONTAL:
|
|
|
|
case NS_THEME_SCALE_VERTICAL:
|
|
|
|
case NS_THEME_SCALE_THUMB_HORIZONTAL:
|
|
|
|
case NS_THEME_SCALE_THUMB_VERTICAL:
|
|
|
|
case NS_THEME_SPINNER_UP_BUTTON:
|
|
|
|
case NS_THEME_SPINNER_DOWN_BUTTON:
|
|
|
|
case NS_THEME_LISTBOX:
|
|
|
|
case NS_THEME_TREEVIEW:
|
|
|
|
case NS_THEME_TOOLTIP:
|
|
|
|
case NS_THEME_STATUSBAR:
|
|
|
|
case NS_THEME_STATUSBAR_PANEL:
|
|
|
|
case NS_THEME_STATUSBAR_RESIZER_PANEL:
|
|
|
|
case NS_THEME_RESIZER:
|
|
|
|
case NS_THEME_PROGRESSBAR:
|
|
|
|
case NS_THEME_PROGRESSBAR_VERTICAL:
|
|
|
|
case NS_THEME_PROGRESSBAR_CHUNK:
|
|
|
|
case NS_THEME_PROGRESSBAR_CHUNK_VERTICAL:
|
|
|
|
case NS_THEME_TAB:
|
|
|
|
case NS_THEME_TAB_LEFT_EDGE:
|
|
|
|
case NS_THEME_TAB_RIGHT_EDGE:
|
|
|
|
case NS_THEME_TAB_PANEL:
|
|
|
|
case NS_THEME_TAB_PANELS:
|
|
|
|
case NS_THEME_MENUBAR:
|
|
|
|
case NS_THEME_MENUPOPUP:
|
|
|
|
case NS_THEME_MENUITEM:
|
|
|
|
break;
|
|
|
|
|
|
|
|
// the dropdown button /almost/ renders correctly with scaling,
|
|
|
|
// except that the graphic in the dropdown button (the downward arrow)
|
|
|
|
// doesn't get scaled up.
|
|
|
|
case NS_THEME_DROPDOWN_BUTTON:
|
|
|
|
// these are definitely no; they're all graphics that don't get scaled up
|
|
|
|
case NS_THEME_CHECKBOX:
|
2007-05-09 19:17:17 +00:00
|
|
|
case NS_THEME_CHECKBOX_SMALL:
|
2007-03-03 00:18:34 +00:00
|
|
|
case NS_THEME_RADIO:
|
2007-05-09 19:17:17 +00:00
|
|
|
case NS_THEME_RADIO_SMALL:
|
2007-03-03 00:18:34 +00:00
|
|
|
case NS_THEME_CHECKMENUITEM:
|
|
|
|
case NS_THEME_RADIOMENUITEM:
|
2007-07-14 15:11:37 +00:00
|
|
|
case NS_THEME_MENUCHECKBOX:
|
|
|
|
case NS_THEME_MENURADIO:
|
|
|
|
case NS_THEME_MENUARROW:
|
2007-03-03 00:18:34 +00:00
|
|
|
return
|
|
|
|
gfxWindowsNativeDrawing::CANNOT_DRAW_TO_COLOR_ALPHA |
|
|
|
|
gfxWindowsNativeDrawing::CANNOT_AXIS_ALIGNED_SCALE |
|
|
|
|
gfxWindowsNativeDrawing::CANNOT_COMPLEX_TRANSFORM;
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
gfxWindowsNativeDrawing::CANNOT_DRAW_TO_COLOR_ALPHA |
|
|
|
|
gfxWindowsNativeDrawing::CANNOT_AXIS_ALIGNED_SCALE |
|
|
|
|
gfxWindowsNativeDrawing::CANNOT_COMPLEX_TRANSFORM;
|
|
|
|
}
|
2005-08-20 07:13:11 +00:00
|
|
|
|
2005-08-20 07:11:56 +00:00
|
|
|
///////////////////////////////////////////
|
|
|
|
// Creation Routine
|
|
|
|
///////////////////////////////////////////
|
|
|
|
NS_METHOD NS_NewNativeTheme(nsISupports *aOuter, REFNSIID aIID, void **aResult)
|
|
|
|
{
|
|
|
|
if (aOuter)
|
|
|
|
return NS_ERROR_NO_AGGREGATION;
|
|
|
|
|
|
|
|
nsNativeThemeWin* theme = new nsNativeThemeWin();
|
|
|
|
if (!theme)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
return theme->QueryInterface(aIID, aResult);
|
2005-08-20 07:13:13 +00:00
|
|
|
}
|