2005-08-20 07:13:18 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2005-08-20 07:13:18 +00:00
|
|
|
|
|
|
|
// This defines a common base class for nsITheme implementations, to reduce
|
|
|
|
// code duplication.
|
|
|
|
|
2011-06-02 12:56:50 +00:00
|
|
|
#include "nsAlgorithm.h"
|
2005-08-20 07:13:18 +00:00
|
|
|
#include "nsIAtom.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsMargin.h"
|
2011-10-14 18:11:22 +00:00
|
|
|
#include "nsGkAtoms.h"
|
2010-11-13 08:19:38 +00:00
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "nsITimer.h"
|
2013-03-25 20:24:14 +00:00
|
|
|
#include "nsIContent.h"
|
2005-08-20 07:13:18 +00:00
|
|
|
|
|
|
|
class nsIFrame;
|
|
|
|
class nsIPresShell;
|
2005-08-20 07:14:04 +00:00
|
|
|
class nsPresContext;
|
2005-08-20 07:13:18 +00:00
|
|
|
|
2014-04-03 04:18:36 +00:00
|
|
|
namespace mozilla {
|
|
|
|
class EventStates;
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2012-03-08 01:15:57 +00:00
|
|
|
class nsNativeTheme : public nsITimerCallback
|
2005-08-20 07:13:18 +00:00
|
|
|
{
|
2012-03-07 15:29:42 +00:00
|
|
|
protected:
|
2014-06-24 16:36:44 +00:00
|
|
|
virtual ~nsNativeTheme() {}
|
2012-03-07 15:29:21 +00:00
|
|
|
|
2010-11-13 08:19:38 +00:00
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSITIMERCALLBACK
|
|
|
|
|
2008-01-13 04:13:50 +00:00
|
|
|
enum ScrollbarButtonType {
|
|
|
|
eScrollbarButton_UpTop = 0,
|
|
|
|
eScrollbarButton_Down = 1 << 0,
|
|
|
|
eScrollbarButton_Bottom = 1 << 1
|
|
|
|
};
|
|
|
|
|
2005-08-20 07:14:25 +00:00
|
|
|
enum TreeSortDirection {
|
|
|
|
eTreeSortDirection_Descending,
|
|
|
|
eTreeSortDirection_Natural,
|
|
|
|
eTreeSortDirection_Ascending
|
|
|
|
};
|
|
|
|
|
2005-08-20 07:13:18 +00:00
|
|
|
nsNativeTheme();
|
|
|
|
|
2014-04-01 04:09:23 +00:00
|
|
|
// Returns the content state (hover, focus, etc), see EventStateManager.h
|
2014-04-03 04:18:36 +00:00
|
|
|
mozilla::EventStates GetContentState(nsIFrame* aFrame, uint8_t aWidgetType);
|
2005-08-20 07:13:18 +00: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 06:19:26 +00:00
|
|
|
bool IsWidgetStyled(nsPresContext* aPresContext, nsIFrame* aFrame,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint8_t aWidgetType);
|
2005-08-20 07:13:18 +00:00
|
|
|
|
|
|
|
// Accessors to widget-specific state information
|
|
|
|
|
2014-04-03 04:18:36 +00:00
|
|
|
bool IsDisabled(nsIFrame* aFrame, mozilla::EventStates aEventStates);
|
2010-09-28 01:25:18 +00:00
|
|
|
|
2008-11-27 22:14:54 +00:00
|
|
|
// RTL chrome direction
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsFrameRTL(nsIFrame* aFrame);
|
2008-11-27 22:14:54 +00:00
|
|
|
|
2013-02-25 00:16:02 +00:00
|
|
|
bool IsHTMLContent(nsIFrame *aFrame);
|
|
|
|
|
2005-08-20 07:13:18 +00:00
|
|
|
// button:
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsDefaultButton(nsIFrame* aFrame) {
|
2011-10-14 18:11:22 +00:00
|
|
|
return CheckBooleanAttr(aFrame, nsGkAtoms::_default);
|
2005-08-20 07:13:18 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsButtonTypeMenu(nsIFrame* aFrame);
|
2009-08-10 21:23:50 +00:00
|
|
|
|
2005-08-20 07:13:18 +00:00
|
|
|
// checkbox:
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsChecked(nsIFrame* aFrame) {
|
2011-10-17 14:59:28 +00:00
|
|
|
return GetCheckedOrSelected(aFrame, false);
|
2005-08-20 07:13:18 +00:00
|
|
|
}
|
|
|
|
|
2005-08-20 07:13:19 +00:00
|
|
|
// radiobutton:
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsSelected(nsIFrame* aFrame) {
|
2011-10-17 14:59:28 +00:00
|
|
|
return GetCheckedOrSelected(aFrame, true);
|
2005-08-20 07:13:18 +00:00
|
|
|
}
|
2013-02-25 00:16:02 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsFocused(nsIFrame* aFrame) {
|
2011-10-14 18:11:22 +00:00
|
|
|
return CheckBooleanAttr(aFrame, nsGkAtoms::focused);
|
2005-08-20 07:13:20 +00:00
|
|
|
}
|
2013-02-25 00:16:02 +00:00
|
|
|
|
2008-01-13 04:13:50 +00:00
|
|
|
// scrollbar button:
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t GetScrollbarButtonType(nsIFrame* aFrame);
|
2005-08-20 07:13:18 +00:00
|
|
|
|
2005-08-20 07:13:19 +00:00
|
|
|
// tab:
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsSelectedTab(nsIFrame* aFrame) {
|
2015-03-16 18:30:41 +00:00
|
|
|
return CheckBooleanAttr(aFrame, nsGkAtoms::visuallyselected);
|
2005-08-20 07:13:19 +00:00
|
|
|
}
|
2008-11-27 22:16:13 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
bool IsNextToSelectedTab(nsIFrame* aFrame, int32_t aOffset);
|
2011-08-08 15:38:57 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsBeforeSelectedTab(nsIFrame* aFrame) {
|
2011-08-08 15:38:57 +00:00
|
|
|
return IsNextToSelectedTab(aFrame, -1);
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsAfterSelectedTab(nsIFrame* aFrame) {
|
2011-08-08 15:38:57 +00:00
|
|
|
return IsNextToSelectedTab(aFrame, 1);
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsLeftToSelectedTab(nsIFrame* aFrame) {
|
2011-08-08 15:38:57 +00:00
|
|
|
return IsFrameRTL(aFrame) ? IsAfterSelectedTab(aFrame) : IsBeforeSelectedTab(aFrame);
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsRightToSelectedTab(nsIFrame* aFrame) {
|
2011-08-08 15:38:57 +00:00
|
|
|
return IsFrameRTL(aFrame) ? IsBeforeSelectedTab(aFrame) : IsAfterSelectedTab(aFrame);
|
|
|
|
}
|
|
|
|
|
2009-03-13 12:23:26 +00:00
|
|
|
// button / toolbarbutton:
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsCheckedButton(nsIFrame* aFrame) {
|
2011-10-14 18:11:22 +00:00
|
|
|
return CheckBooleanAttr(aFrame, nsGkAtoms::checked);
|
2005-08-20 07:14:26 +00:00
|
|
|
}
|
2008-01-13 04:13:50 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsSelectedButton(nsIFrame* aFrame) {
|
2011-10-14 18:11:22 +00:00
|
|
|
return CheckBooleanAttr(aFrame, nsGkAtoms::checked) ||
|
|
|
|
CheckBooleanAttr(aFrame, nsGkAtoms::selected);
|
2011-08-08 14:42:45 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsOpenButton(nsIFrame* aFrame) {
|
2011-10-14 18:11:22 +00:00
|
|
|
return CheckBooleanAttr(aFrame, nsGkAtoms::open);
|
2009-03-13 12:23:26 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsPressedButton(nsIFrame* aFrame);
|
2011-08-08 14:42:45 +00:00
|
|
|
|
2005-08-20 07:13:18 +00:00
|
|
|
// treeheadercell:
|
2006-06-09 06:02:30 +00:00
|
|
|
TreeSortDirection GetTreeSortDirection(nsIFrame* aFrame);
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsLastTreeHeaderCell(nsIFrame* aFrame);
|
2005-08-20 07:13:18 +00:00
|
|
|
|
|
|
|
// tab:
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsBottomTab(nsIFrame* aFrame);
|
|
|
|
bool IsFirstTab(nsIFrame* aFrame);
|
2007-12-21 11:17:01 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsHorizontal(nsIFrame* aFrame);
|
2005-08-20 07:13:18 +00:00
|
|
|
|
|
|
|
// progressbar:
|
2014-04-03 04:18:36 +00:00
|
|
|
bool IsIndeterminateProgress(nsIFrame* aFrame,
|
|
|
|
mozilla::EventStates aEventStates);
|
2011-09-29 06:19:26 +00:00
|
|
|
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-09 22:48:39 +00:00
|
|
|
|
2012-06-06 07:58:00 +00:00
|
|
|
// meter:
|
|
|
|
bool IsVerticalMeter(nsIFrame* aFrame);
|
|
|
|
|
2005-08-20 07:13:18 +00:00
|
|
|
// textfield:
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsReadOnly(nsIFrame* aFrame) {
|
2011-10-14 18:11:22 +00:00
|
|
|
return CheckBooleanAttr(aFrame, nsGkAtoms::readonly);
|
2005-08-20 07:13:18 +00:00
|
|
|
}
|
2005-08-20 07:14:11 +00:00
|
|
|
|
2009-01-12 19:23:51 +00:00
|
|
|
// menupopup:
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsSubmenu(nsIFrame* aFrame, bool* aLeftOfParent);
|
2009-01-12 19:23:51 +00:00
|
|
|
|
2011-06-24 21:00:46 +00:00
|
|
|
// True if it's not a menubar item or menulist item
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsRegularMenuItem(nsIFrame *aFrame);
|
2011-06-24 21:00:46 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsMenuListEditable(nsIFrame *aFrame);
|
2011-07-01 10:20:45 +00:00
|
|
|
|
2005-08-20 07:14:11 +00:00
|
|
|
nsIPresShell *GetPresShell(nsIFrame* aFrame);
|
2013-02-25 00:26:07 +00:00
|
|
|
static bool CheckBooleanAttr(nsIFrame* aFrame, nsIAtom* aAtom);
|
|
|
|
static int32_t CheckIntAttr(nsIFrame* aFrame, nsIAtom* aAtom, int32_t defaultValue);
|
|
|
|
|
|
|
|
// Helpers for progressbar.
|
|
|
|
static double GetProgressValue(nsIFrame* aFrame);
|
|
|
|
static double GetProgressMaxValue(nsIFrame* aFrame);
|
2005-08-20 07:14:11 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool GetCheckedOrSelected(nsIFrame* aFrame, bool aCheckSelected);
|
|
|
|
bool GetIndeterminate(nsIFrame* aFrame);
|
2010-11-13 08:19:38 +00:00
|
|
|
|
2012-03-07 15:29:21 +00:00
|
|
|
bool QueueAnimatedContentForRefresh(nsIContent* aContent,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aMinimumFrameRate);
|
2012-03-07 15:29:21 +00:00
|
|
|
|
2012-03-08 01:15:57 +00:00
|
|
|
nsIFrame* GetAdjacentSiblingFrameWithSameAppearance(nsIFrame* aFrame,
|
|
|
|
bool aNextSibling);
|
2012-03-07 15:29:21 +00:00
|
|
|
|
2013-03-16 05:40:15 +00:00
|
|
|
bool IsRangeHorizontal(nsIFrame* aFrame);
|
|
|
|
|
2013-05-19 15:01:28 +00:00
|
|
|
// scrollbar
|
|
|
|
bool IsDarkBackground(nsIFrame* aFrame);
|
|
|
|
|
2010-11-13 08:19:38 +00:00
|
|
|
private:
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t mAnimatedContentTimeout;
|
2010-11-13 08:19:38 +00:00
|
|
|
nsCOMPtr<nsITimer> mAnimatedContentTimer;
|
|
|
|
nsAutoTArray<nsCOMPtr<nsIContent>, 20> mAnimatedContentList;
|
2005-08-20 07:13:18 +00:00
|
|
|
};
|