/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- * * The contents of this file are subject to the Mozilla Public * License Version 1.1 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or * implied. See the License for the specific language governing * rights and limitations under the License. * * The Original Code is the Mozilla browser. * * The Initial Developer of the Original Code is Netscape * Communications Corporation. Portions created by Netscape are * Copyright (C) 1999 Netscape Communications Corporation. All * Rights Reserved. * * Original Author: David W. Hyatt (hyatt@netscape.com) * * Contributors: * Tim Hill (tim@prismelite.com) */ #include "nsITheme.h" #include "nsCOMPtr.h" #include "nsIAtom.h" #include class nsNativeThemeWin: public nsITheme { public: NS_DECL_ISUPPORTS // The nsITheme interface. NS_IMETHOD DrawWidgetBackground(nsIRenderingContext* aContext, nsIFrame* aFrame, PRUint8 aWidgetType, const nsRect& aRect, const nsRect& aClipRect); NS_IMETHOD GetWidgetBorder(nsIDeviceContext* aContext, nsIFrame* aFrame, PRUint8 aWidgetType, nsMargin* aResult); virtual PRBool GetWidgetPadding(nsIDeviceContext* aContext, nsIFrame* aFrame, PRUint8 aWidgetType, nsMargin* aResult); NS_IMETHOD GetMinimumWidgetSize(nsIRenderingContext* aContext, nsIFrame* aFrame, PRUint8 aWidgetType, nsSize* aResult, PRBool* aIsOverridable); NS_IMETHOD WidgetStateChanged(nsIFrame* aFrame, PRUint8 aWidgetType, nsIAtom* aAttribute, PRBool* aShouldRepaint); NS_IMETHOD ThemeChanged(); PRBool ThemeSupportsWidget(nsIPresContext* aPresContext, nsIFrame* aFrame, PRUint8 aWidgetType); PRBool WidgetIsContainer(PRUint8 aWidgetType); nsNativeThemeWin(); virtual ~nsNativeThemeWin(); protected: void CloseData(); HANDLE GetTheme(PRUint8 aWidgetType); nsresult GetThemePartAndState(nsIFrame* aFrame, PRUint8 aWidgetType, PRInt32& aPart, PRInt32& aState); nsresult ClassicGetThemePartAndState(nsIFrame* aFrame, PRUint8 aWidgetType, PRInt32& aPart, PRInt32& aState, PRBool& aFocused); nsresult ClassicDrawWidgetBackground(nsIRenderingContext* aContext, nsIFrame* aFrame, PRUint8 aWidgetType, const nsRect& aRect, const nsRect& aClipRect); nsresult ClassicGetWidgetBorder(nsIDeviceContext* aContext, nsIFrame* aFrame, PRUint8 aWidgetType, nsMargin* aResult); nsresult ClassicGetMinimumWidgetSize(nsIRenderingContext* aContext, nsIFrame* aFrame, PRUint8 aWidgetType, nsSize* aResult, PRBool* aIsOverridable); PRBool ClassicThemeSupportsWidget(nsIPresContext* aPresContext, nsIFrame* aFrame, PRUint8 aWidgetType); PRBool IsDisabled(nsIFrame* aFrame); PRBool IsReadOnly(nsIFrame* aFrame); PRBool IsChecked(nsIFrame* aFrame); PRBool IsSelected(nsIFrame* aFrame); PRBool IsBottomTab(nsIFrame* aFrame); PRBool IsWidgetStyled(nsIPresContext* aPresContext, nsIFrame* aFrame, PRUint8 aWidgetType); private: HMODULE mThemeDLL; HANDLE mButtonTheme; HANDLE mTextFieldTheme; HANDLE mTooltipTheme; HANDLE mToolbarTheme; HANDLE mRebarTheme; HANDLE mProgressTheme; HANDLE mScrollbarTheme; HANDLE mStatusbarTheme; HANDLE mTabTheme; HANDLE mTreeViewTheme; HANDLE mComboBoxTheme; HANDLE mHeaderTheme; nsCOMPtr mCheckedAtom; nsCOMPtr mInputAtom; nsCOMPtr mInputCheckedAtom; nsCOMPtr mDisabledAtom; nsCOMPtr mSelectedAtom; nsCOMPtr mTypeAtom; nsCOMPtr mReadOnlyAtom; nsCOMPtr mDefaultAtom; nsCOMPtr mClassAtom; }; // Creator function extern NS_METHOD NS_NewNativeThemeWin(nsISupports *aOuter, REFNSIID aIID, void **aResult);