2005-08-20 11:13:18 +04: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):
|
2005-08-20 11:13:39 +04:00
|
|
|
* Brian Ryner <bryner@brianryner.com> (Original Author)
|
2005-08-20 11:13:18 +04:00
|
|
|
*
|
|
|
|
* 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 16:56:50 +04:00
|
|
|
#include "nsAlgorithm.h"
|
2005-08-20 11:13:18 +04:00
|
|
|
#include "nsIAtom.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsMargin.h"
|
2011-10-14 22:11:22 +04:00
|
|
|
#include "nsGkAtoms.h"
|
2010-10-20 15:26:32 +04:00
|
|
|
#include "nsEventStates.h"
|
2010-11-13 11:19:38 +03:00
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "nsITimer.h"
|
2005-08-20 11:13:18 +04:00
|
|
|
|
2010-11-13 11:19:38 +03:00
|
|
|
class nsIContent;
|
2005-08-20 11:13:18 +04:00
|
|
|
class nsIFrame;
|
|
|
|
class nsIPresShell;
|
2005-08-20 11:14:04 +04:00
|
|
|
class nsPresContext;
|
2005-08-20 11:13:18 +04:00
|
|
|
|
2012-03-08 05:15:57 +04:00
|
|
|
class nsNativeTheme : public nsITimerCallback
|
2005-08-20 11:13:18 +04:00
|
|
|
{
|
2012-03-07 19:29:42 +04:00
|
|
|
protected:
|
2012-03-07 19:29:21 +04:00
|
|
|
|
2010-11-13 11:19:38 +03:00
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSITIMERCALLBACK
|
|
|
|
|
2008-01-13 07:13:50 +03:00
|
|
|
enum ScrollbarButtonType {
|
|
|
|
eScrollbarButton_UpTop = 0,
|
|
|
|
eScrollbarButton_Down = 1 << 0,
|
|
|
|
eScrollbarButton_Bottom = 1 << 1
|
|
|
|
};
|
|
|
|
|
2005-08-20 11:14:25 +04:00
|
|
|
enum TreeSortDirection {
|
|
|
|
eTreeSortDirection_Descending,
|
|
|
|
eTreeSortDirection_Natural,
|
|
|
|
eTreeSortDirection_Ascending
|
|
|
|
};
|
|
|
|
|
2005-08-20 11:13:18 +04:00
|
|
|
nsNativeTheme();
|
|
|
|
|
2011-04-21 21:35:52 +04:00
|
|
|
// Returns the content state (hover, focus, etc), see nsEventStateManager.h
|
2010-10-20 15:26:32 +04:00
|
|
|
nsEventStates GetContentState(nsIFrame* aFrame, PRUint8 aWidgetType);
|
2005-08-20 11:13:18 +04: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.
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsWidgetStyled(nsPresContext* aPresContext, nsIFrame* aFrame,
|
2005-08-20 11:13:20 +04:00
|
|
|
PRUint8 aWidgetType);
|
2005-08-20 11:13:18 +04:00
|
|
|
|
|
|
|
// Accessors to widget-specific state information
|
|
|
|
|
2010-10-20 15:26:32 +04:00
|
|
|
bool IsDisabled(nsIFrame* aFrame, nsEventStates aEventStates);
|
2010-09-28 05:25:18 +04:00
|
|
|
|
2008-11-28 01:14:54 +03:00
|
|
|
// RTL chrome direction
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsFrameRTL(nsIFrame* aFrame);
|
2008-11-28 01:14:54 +03:00
|
|
|
|
2005-08-20 11:13:18 +04:00
|
|
|
// button:
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsDefaultButton(nsIFrame* aFrame) {
|
2011-10-14 22:11:22 +04:00
|
|
|
return CheckBooleanAttr(aFrame, nsGkAtoms::_default);
|
2005-08-20 11:13:18 +04:00
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsButtonTypeMenu(nsIFrame* aFrame);
|
2009-08-11 01:23:50 +04:00
|
|
|
|
2005-08-20 11:13:18 +04:00
|
|
|
// checkbox:
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsChecked(nsIFrame* aFrame) {
|
2011-10-17 18:59:28 +04:00
|
|
|
return GetCheckedOrSelected(aFrame, false);
|
2005-08-20 11:13:18 +04:00
|
|
|
}
|
|
|
|
|
2005-08-20 11:13:19 +04:00
|
|
|
// radiobutton:
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsSelected(nsIFrame* aFrame) {
|
2011-10-17 18:59:28 +04:00
|
|
|
return GetCheckedOrSelected(aFrame, true);
|
2005-08-20 11:13:18 +04:00
|
|
|
}
|
2005-08-20 11:13:20 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsFocused(nsIFrame* aFrame) {
|
2011-10-14 22:11:22 +04:00
|
|
|
return CheckBooleanAttr(aFrame, nsGkAtoms::focused);
|
2005-08-20 11:13:20 +04:00
|
|
|
}
|
2008-01-13 07:13:50 +03:00
|
|
|
|
|
|
|
// scrollbar button:
|
|
|
|
PRInt32 GetScrollbarButtonType(nsIFrame* aFrame);
|
2005-08-20 11:13:18 +04:00
|
|
|
|
2005-08-20 11:13:19 +04:00
|
|
|
// tab:
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsSelectedTab(nsIFrame* aFrame) {
|
2011-10-14 22:11:22 +04:00
|
|
|
return CheckBooleanAttr(aFrame, nsGkAtoms::selected);
|
2005-08-20 11:13:19 +04:00
|
|
|
}
|
2008-11-28 01:16:13 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsNextToSelectedTab(nsIFrame* aFrame, PRInt32 aOffset);
|
2011-08-08 19:38:57 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsBeforeSelectedTab(nsIFrame* aFrame) {
|
2011-08-08 19:38:57 +04:00
|
|
|
return IsNextToSelectedTab(aFrame, -1);
|
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsAfterSelectedTab(nsIFrame* aFrame) {
|
2011-08-08 19:38:57 +04:00
|
|
|
return IsNextToSelectedTab(aFrame, 1);
|
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsLeftToSelectedTab(nsIFrame* aFrame) {
|
2011-08-08 19:38:57 +04:00
|
|
|
return IsFrameRTL(aFrame) ? IsAfterSelectedTab(aFrame) : IsBeforeSelectedTab(aFrame);
|
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsRightToSelectedTab(nsIFrame* aFrame) {
|
2011-08-08 19:38:57 +04:00
|
|
|
return IsFrameRTL(aFrame) ? IsBeforeSelectedTab(aFrame) : IsAfterSelectedTab(aFrame);
|
|
|
|
}
|
|
|
|
|
2009-03-13 15:23:26 +03:00
|
|
|
// button / toolbarbutton:
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsCheckedButton(nsIFrame* aFrame) {
|
2011-10-14 22:11:22 +04:00
|
|
|
return CheckBooleanAttr(aFrame, nsGkAtoms::checked);
|
2005-08-20 11:14:26 +04:00
|
|
|
}
|
2008-01-13 07:13:50 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsSelectedButton(nsIFrame* aFrame) {
|
2011-10-14 22:11:22 +04:00
|
|
|
return CheckBooleanAttr(aFrame, nsGkAtoms::checked) ||
|
|
|
|
CheckBooleanAttr(aFrame, nsGkAtoms::selected);
|
2011-08-08 18:42:45 +04:00
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsOpenButton(nsIFrame* aFrame) {
|
2011-10-14 22:11:22 +04:00
|
|
|
return CheckBooleanAttr(aFrame, nsGkAtoms::open);
|
2009-03-13 15:23:26 +03:00
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsPressedButton(nsIFrame* aFrame);
|
2011-08-08 18:42:45 +04:00
|
|
|
|
2005-08-20 11:13:18 +04:00
|
|
|
// treeheadercell:
|
2006-06-09 10:02:30 +04:00
|
|
|
TreeSortDirection GetTreeSortDirection(nsIFrame* aFrame);
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsLastTreeHeaderCell(nsIFrame* aFrame);
|
2005-08-20 11:13:18 +04:00
|
|
|
|
|
|
|
// tab:
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsBottomTab(nsIFrame* aFrame);
|
|
|
|
bool IsFirstTab(nsIFrame* aFrame);
|
2007-12-21 14:17:01 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsHorizontal(nsIFrame* aFrame);
|
2005-08-20 11:13:18 +04:00
|
|
|
|
|
|
|
// progressbar:
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsIndeterminateProgress(nsIFrame* aFrame, nsEventStates aEventStates);
|
|
|
|
bool 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-10 02:48:39 +04:00
|
|
|
|
2005-08-20 11:13:18 +04:00
|
|
|
// textfield:
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsReadOnly(nsIFrame* aFrame) {
|
2011-10-14 22:11:22 +04:00
|
|
|
return CheckBooleanAttr(aFrame, nsGkAtoms::readonly);
|
2005-08-20 11:13:18 +04:00
|
|
|
}
|
2005-08-20 11:14:11 +04:00
|
|
|
|
2009-01-12 22:23:51 +03:00
|
|
|
// menupopup:
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsSubmenu(nsIFrame* aFrame, bool* aLeftOfParent);
|
2009-01-12 22:23:51 +03:00
|
|
|
|
2011-06-25 01:00:46 +04:00
|
|
|
// True if it's not a menubar item or menulist item
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsRegularMenuItem(nsIFrame *aFrame);
|
2011-06-25 01:00:46 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsMenuListEditable(nsIFrame *aFrame);
|
2011-07-01 14:20:45 +04:00
|
|
|
|
2005-08-20 11:14:11 +04:00
|
|
|
nsIPresShell *GetPresShell(nsIFrame* aFrame);
|
2008-03-27 08:36:20 +03:00
|
|
|
PRInt32 CheckIntAttr(nsIFrame* aFrame, nsIAtom* aAtom, PRInt32 defaultValue);
|
2011-09-29 10:19:26 +04:00
|
|
|
bool CheckBooleanAttr(nsIFrame* aFrame, nsIAtom* aAtom);
|
2005-08-20 11:14:11 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool GetCheckedOrSelected(nsIFrame* aFrame, bool aCheckSelected);
|
|
|
|
bool GetIndeterminate(nsIFrame* aFrame);
|
2010-11-13 11:19:38 +03:00
|
|
|
|
2012-03-07 19:29:21 +04:00
|
|
|
bool QueueAnimatedContentForRefresh(nsIContent* aContent,
|
2012-03-08 05:15:57 +04:00
|
|
|
PRUint32 aMinimumFrameRate);
|
2012-03-07 19:29:21 +04:00
|
|
|
|
2012-03-08 05:15:57 +04:00
|
|
|
nsIFrame* GetAdjacentSiblingFrameWithSameAppearance(nsIFrame* aFrame,
|
|
|
|
bool aNextSibling);
|
2012-03-07 19:29:21 +04:00
|
|
|
|
2010-11-13 11:19:38 +03:00
|
|
|
private:
|
|
|
|
PRUint32 mAnimatedContentTimeout;
|
|
|
|
nsCOMPtr<nsITimer> mAnimatedContentTimer;
|
|
|
|
nsAutoTArray<nsCOMPtr<nsIContent>, 20> mAnimatedContentList;
|
2005-08-20 11:13:18 +04:00
|
|
|
};
|