2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2002
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Brian Ryner <bryner@brianryner.com> (Original Author)
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
// This defines a common base class for nsITheme implementations, to reduce
|
|
|
|
// code duplication.
|
|
|
|
|
|
|
|
#include "prtypes.h"
|
2011-06-02 05:56:50 -07:00
|
|
|
#include "nsAlgorithm.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIAtom.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsMargin.h"
|
|
|
|
#include "nsILookAndFeel.h"
|
|
|
|
#include "nsWidgetAtoms.h"
|
2010-10-20 04:26:32 -07:00
|
|
|
#include "nsEventStates.h"
|
2010-11-13 00:19:38 -08:00
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "nsITimer.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-11-13 00:19:38 -08:00
|
|
|
class nsIContent;
|
2007-03-22 10:30:00 -07:00
|
|
|
class nsIFrame;
|
|
|
|
class nsIPresShell;
|
|
|
|
class nsPresContext;
|
|
|
|
|
2010-11-13 00:19:38 -08:00
|
|
|
class nsNativeTheme : public nsITimerCallback
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
protected:
|
|
|
|
|
2010-11-13 00:19:38 -08:00
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSITIMERCALLBACK
|
|
|
|
|
2008-01-12 20:13:50 -08:00
|
|
|
enum ScrollbarButtonType {
|
|
|
|
eScrollbarButton_UpTop = 0,
|
|
|
|
eScrollbarButton_Down = 1 << 0,
|
|
|
|
eScrollbarButton_Bottom = 1 << 1
|
|
|
|
};
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
enum TreeSortDirection {
|
|
|
|
eTreeSortDirection_Descending,
|
|
|
|
eTreeSortDirection_Natural,
|
|
|
|
eTreeSortDirection_Ascending
|
|
|
|
};
|
|
|
|
|
|
|
|
nsNativeTheme();
|
|
|
|
|
2011-04-21 10:35:52 -07:00
|
|
|
// Returns the content state (hover, focus, etc), see nsEventStateManager.h
|
2010-10-20 04:26:32 -07:00
|
|
|
nsEventStates GetContentState(nsIFrame* aFrame, PRUint8 aWidgetType);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Returns whether the widget is already styled by content
|
|
|
|
// Normally called from ThemeSupportsWidget to turn off native theming
|
|
|
|
// for elements that are already styled.
|
|
|
|
PRBool IsWidgetStyled(nsPresContext* aPresContext, nsIFrame* aFrame,
|
|
|
|
PRUint8 aWidgetType);
|
|
|
|
|
|
|
|
// Accessors to widget-specific state information
|
|
|
|
|
2010-10-20 04:26:32 -07:00
|
|
|
bool IsDisabled(nsIFrame* aFrame, nsEventStates aEventStates);
|
2010-09-27 18:25:18 -07:00
|
|
|
|
2008-11-27 14:14:54 -08:00
|
|
|
// RTL chrome direction
|
|
|
|
PRBool IsFrameRTL(nsIFrame* aFrame);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// button:
|
|
|
|
PRBool IsDefaultButton(nsIFrame* aFrame) {
|
|
|
|
return CheckBooleanAttr(aFrame, nsWidgetAtoms::_default);
|
|
|
|
}
|
|
|
|
|
2009-08-10 14:23:50 -07:00
|
|
|
PRBool IsButtonTypeMenu(nsIFrame* aFrame);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// checkbox:
|
|
|
|
PRBool IsChecked(nsIFrame* aFrame) {
|
|
|
|
return GetCheckedOrSelected(aFrame, PR_FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
// radiobutton:
|
|
|
|
PRBool IsSelected(nsIFrame* aFrame) {
|
|
|
|
return GetCheckedOrSelected(aFrame, PR_TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool IsFocused(nsIFrame* aFrame) {
|
|
|
|
return CheckBooleanAttr(aFrame, nsWidgetAtoms::focused);
|
|
|
|
}
|
2008-01-12 20:13:50 -08:00
|
|
|
|
|
|
|
// scrollbar button:
|
|
|
|
PRInt32 GetScrollbarButtonType(nsIFrame* aFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// tab:
|
|
|
|
PRBool IsSelectedTab(nsIFrame* aFrame) {
|
|
|
|
return CheckBooleanAttr(aFrame, nsWidgetAtoms::selected);
|
|
|
|
}
|
2008-11-27 14:16:13 -08:00
|
|
|
|
|
|
|
PRBool IsNextToSelectedTab(nsIFrame* aFrame, PRInt32 aOffset);
|
|
|
|
|
|
|
|
PRBool IsBeforeSelectedTab(nsIFrame* aFrame) {
|
|
|
|
return IsNextToSelectedTab(aFrame, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool IsAfterSelectedTab(nsIFrame* aFrame) {
|
|
|
|
return IsNextToSelectedTab(aFrame, 1);
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-01-04 06:01:48 -08:00
|
|
|
PRBool IsLeftToSelectedTab(nsIFrame* aFrame) {
|
|
|
|
return IsFrameRTL(aFrame) ? IsAfterSelectedTab(aFrame) : IsBeforeSelectedTab(aFrame);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool IsRightToSelectedTab(nsIFrame* aFrame) {
|
|
|
|
return IsFrameRTL(aFrame) ? IsBeforeSelectedTab(aFrame) : IsAfterSelectedTab(aFrame);
|
|
|
|
}
|
|
|
|
|
2009-03-13 05:23:26 -07:00
|
|
|
// button / toolbarbutton:
|
2007-03-22 10:30:00 -07:00
|
|
|
PRBool IsCheckedButton(nsIFrame* aFrame) {
|
|
|
|
return CheckBooleanAttr(aFrame, nsWidgetAtoms::checked);
|
|
|
|
}
|
2008-01-12 20:13:50 -08:00
|
|
|
|
2009-03-13 05:23:26 -07:00
|
|
|
PRBool IsOpenButton(nsIFrame* aFrame) {
|
|
|
|
return CheckBooleanAttr(aFrame, nsWidgetAtoms::open);
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// treeheadercell:
|
|
|
|
TreeSortDirection GetTreeSortDirection(nsIFrame* aFrame);
|
2008-11-27 14:14:54 -08:00
|
|
|
PRBool IsLastTreeHeaderCell(nsIFrame* aFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// tab:
|
|
|
|
PRBool IsBottomTab(nsIFrame* aFrame);
|
|
|
|
PRBool IsFirstTab(nsIFrame* aFrame);
|
|
|
|
PRBool IsLastTab(nsIFrame* aFrame);
|
2007-12-21 03:17:01 -08:00
|
|
|
|
|
|
|
PRBool IsHorizontal(nsIFrame* aFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// progressbar:
|
2011-02-28 18:06:22 -08:00
|
|
|
PRBool IsIndeterminateProgress(nsIFrame* aFrame, nsEventStates aEventStates);
|
2011-05-17 09:39:22 -07:00
|
|
|
PRBool IsVerticalProgress(nsIFrame* aFrame);
|
Back out bug 514437, bug 567872, bug 568825, bug 633209, bug 633913, bug 634086, bug 634088, bug 634549, bug 634551, bug 638176, bug 641517, bug 641905, bug 641942, bug 642127, and bug 642667 to undo the performance regression tracked by bug 655860.
2011-05-09 15:48:39 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// textfield:
|
|
|
|
PRBool IsReadOnly(nsIFrame* aFrame) {
|
|
|
|
return CheckBooleanAttr(aFrame, nsWidgetAtoms::readonly);
|
|
|
|
}
|
|
|
|
|
2009-01-12 11:23:51 -08:00
|
|
|
// menupopup:
|
|
|
|
PRBool IsSubmenu(nsIFrame* aFrame, PRBool* aLeftOfParent);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIPresShell *GetPresShell(nsIFrame* aFrame);
|
2008-03-26 22:36:20 -07:00
|
|
|
PRInt32 CheckIntAttr(nsIFrame* aFrame, nsIAtom* aAtom, PRInt32 defaultValue);
|
2007-03-22 10:30:00 -07:00
|
|
|
PRBool CheckBooleanAttr(nsIFrame* aFrame, nsIAtom* aAtom);
|
|
|
|
|
|
|
|
PRBool GetCheckedOrSelected(nsIFrame* aFrame, PRBool aCheckSelected);
|
2009-01-29 23:19:41 -08:00
|
|
|
PRBool GetIndeterminate(nsIFrame* aFrame);
|
2010-11-13 00:19:38 -08:00
|
|
|
|
|
|
|
PRBool QueueAnimatedContentForRefresh(nsIContent* aContent,
|
|
|
|
PRUint32 aMinimumFrameRate);
|
|
|
|
|
|
|
|
private:
|
|
|
|
PRUint32 mAnimatedContentTimeout;
|
|
|
|
nsCOMPtr<nsITimer> mAnimatedContentTimer;
|
|
|
|
nsAutoTArray<nsCOMPtr<nsIContent>, 20> mAnimatedContentList;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|