2001-09-28 20:14:13 +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/. */
|
2006-03-30 05:56:38 +00:00
|
|
|
|
|
|
|
/* a presentation of a document, part 1 */
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
#ifndef nsPresContext_h___
|
|
|
|
#define nsPresContext_h___
|
1998-04-13 20:24:54 +00:00
|
|
|
|
2012-09-14 16:10:08 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-11-20 19:18:25 +00:00
|
|
|
#include "mozilla/WeakPtr.h"
|
1998-07-16 04:34:59 +00:00
|
|
|
#include "nsColor.h"
|
2001-07-16 02:40:48 +00:00
|
|
|
#include "nsCoord.h"
|
2003-02-22 00:32:13 +00:00
|
|
|
#include "nsCOMPtr.h"
|
2003-06-19 18:16:53 +00:00
|
|
|
#include "nsIPresShell.h"
|
2004-02-01 10:09:07 +00:00
|
|
|
#include "nsRect.h"
|
2004-07-29 19:41:39 +00:00
|
|
|
#include "nsFont.h"
|
2013-09-01 22:21:01 +00:00
|
|
|
#include "gfxFontConstants.h"
|
2013-08-23 17:56:20 +00:00
|
|
|
#include "nsIAtom.h"
|
2004-07-29 19:41:39 +00:00
|
|
|
#include "nsIObserver.h"
|
2005-08-23 23:52:16 +00:00
|
|
|
#include "nsITimer.h"
|
2004-07-29 19:41:39 +00:00
|
|
|
#include "nsCRT.h"
|
2016-02-23 16:10:00 +00:00
|
|
|
#include "nsIWidgetListener.h"
|
2010-03-29 01:46:55 +00:00
|
|
|
#include "FramePropertyTable.h"
|
2007-01-30 00:06:41 +00:00
|
|
|
#include "nsGkAtoms.h"
|
2007-08-10 21:25:24 +00:00
|
|
|
#include "nsCycleCollectionParticipant.h"
|
2008-02-08 19:52:46 +00:00
|
|
|
#include "nsChangeHint.h"
|
2013-01-15 12:22:03 +00:00
|
|
|
#include <algorithm>
|
2008-07-07 02:28:24 +00:00
|
|
|
// This also pulls in gfxTypes.h, which we cannot include directly.
|
|
|
|
#include "gfxRect.h"
|
2008-11-25 23:22:38 +00:00
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "nsAutoPtr.h"
|
2013-06-23 12:03:39 +00:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2009-10-02 18:05:32 +00:00
|
|
|
#include "mozilla/TimeStamp.h"
|
2013-09-06 20:15:04 +00:00
|
|
|
#include "mozilla/AppUnits.h"
|
2011-04-22 03:17:31 +00:00
|
|
|
#include "prclist.h"
|
2013-08-14 11:33:03 +00:00
|
|
|
#include "nsThreadUtils.h"
|
2013-08-23 20:20:07 +00:00
|
|
|
#include "ScrollbarStyles.h"
|
2014-05-23 12:52:36 +00:00
|
|
|
#include "nsIMessageManager.h"
|
2014-09-25 05:45:36 +00:00
|
|
|
#include "mozilla/RestyleLogging.h"
|
2015-09-29 00:13:52 +00:00
|
|
|
#include "Units.h"
|
2016-02-24 07:01:12 +00:00
|
|
|
#include "mozilla/RestyleManagerHandle.h"
|
2016-02-24 07:01:12 +00:00
|
|
|
#include "prenv.h"
|
2016-03-31 19:47:20 +00:00
|
|
|
#include "mozilla/StaticPresData.h"
|
2016-07-27 00:27:56 +00:00
|
|
|
#include "mozilla/StyleBackendType.h"
|
2008-10-01 03:01:53 +00:00
|
|
|
|
2012-07-30 04:29:41 +00:00
|
|
|
class nsAString;
|
|
|
|
class nsIPrintSettings;
|
2013-11-20 19:18:25 +00:00
|
|
|
class nsDocShell;
|
|
|
|
class nsIDocShell;
|
2012-07-30 04:29:41 +00:00
|
|
|
class nsIDocument;
|
|
|
|
class nsILanguageAtomService;
|
|
|
|
class nsITheme;
|
|
|
|
class nsIContent;
|
1998-05-11 22:57:05 +00:00
|
|
|
class nsIFrame;
|
2004-02-23 21:29:06 +00:00
|
|
|
class nsFrameManager;
|
1998-04-13 20:24:54 +00:00
|
|
|
class nsILinkHandler;
|
1998-05-18 21:03:10 +00:00
|
|
|
class nsIAtom;
|
2006-09-12 04:36:03 +00:00
|
|
|
class nsIRunnable;
|
2015-03-06 08:44:23 +00:00
|
|
|
class gfxUserFontEntry;
|
2008-10-01 03:01:53 +00:00
|
|
|
class gfxUserFontSet;
|
2013-11-25 04:59:56 +00:00
|
|
|
class gfxTextPerfMetrics;
|
2014-09-24 04:34:00 +00:00
|
|
|
class nsPluginFrame;
|
2009-10-08 03:22:42 +00:00
|
|
|
class nsTransitionManager;
|
2011-04-12 06:18:44 +00:00
|
|
|
class nsAnimationManager;
|
2013-08-14 11:29:51 +00:00
|
|
|
class nsRefreshDriver;
|
2013-08-19 22:55:18 +00:00
|
|
|
class nsIWidget;
|
2013-09-23 11:52:25 +00:00
|
|
|
class nsDeviceContext;
|
2014-12-22 16:35:54 +00:00
|
|
|
class gfxMissingFontRecorder;
|
2001-03-13 01:47:22 +00:00
|
|
|
|
2013-07-20 19:14:24 +00:00
|
|
|
namespace mozilla {
|
2016-01-12 22:54:53 +00:00
|
|
|
class EffectCompositor;
|
2014-04-01 04:09:23 +00:00
|
|
|
class EventStateManager;
|
2014-06-12 01:11:00 +00:00
|
|
|
class CounterStyleManager;
|
2013-08-14 11:33:03 +00:00
|
|
|
namespace layers {
|
|
|
|
class ContainerLayer;
|
2015-01-29 19:41:54 +00:00
|
|
|
class LayerManager;
|
2015-07-13 15:25:42 +00:00
|
|
|
} // namespace layers
|
2016-12-23 00:52:12 +00:00
|
|
|
namespace dom {
|
|
|
|
class Element;
|
|
|
|
} // namespace dom
|
2015-07-13 15:25:42 +00:00
|
|
|
} // namespace mozilla
|
2013-07-20 19:14:24 +00:00
|
|
|
|
2000-10-11 08:33:01 +00:00
|
|
|
// supported values for cached bool types
|
2006-03-26 00:48:03 +00:00
|
|
|
enum nsPresContext_CachedBoolPrefType {
|
2014-11-27 19:06:14 +00:00
|
|
|
kPresContext_UseDocumentFonts = 1,
|
2006-03-26 00:48:03 +00:00
|
|
|
kPresContext_UnderlineLinks
|
|
|
|
};
|
2000-10-11 08:33:01 +00:00
|
|
|
|
2001-09-27 18:34:30 +00:00
|
|
|
// supported values for cached integer pref types
|
2006-03-26 00:48:03 +00:00
|
|
|
enum nsPresContext_CachedIntPrefType {
|
2012-01-25 23:52:26 +00:00
|
|
|
kPresContext_ScrollbarSide = 1,
|
2006-03-26 00:48:03 +00:00
|
|
|
kPresContext_BidiDirection
|
|
|
|
};
|
2001-09-27 18:34:30 +00:00
|
|
|
|
|
|
|
// IDs for the default variable and fixed fonts (not to be changed, see nsFont.h)
|
|
|
|
// To be used for Get/SetDefaultFont(). The other IDs in nsFont.h are also supported.
|
2012-08-22 15:56:38 +00:00
|
|
|
const uint8_t kPresContext_DefaultVariableFont_ID = 0x00; // kGenericFont_moz_variable
|
|
|
|
const uint8_t kPresContext_DefaultFixedFont_ID = 0x01; // kGenericFont_moz_fixed
|
2001-09-27 18:34:30 +00:00
|
|
|
|
2006-04-18 05:44:02 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
struct nsAutoLayoutPhase;
|
|
|
|
|
|
|
|
enum nsLayoutPhase {
|
|
|
|
eLayoutPhase_Paint,
|
|
|
|
eLayoutPhase_Reflow,
|
|
|
|
eLayoutPhase_FrameC,
|
|
|
|
eLayoutPhase_COUNT
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2009-09-04 04:49:18 +00:00
|
|
|
class nsInvalidateRequestList {
|
|
|
|
public:
|
|
|
|
struct Request {
|
|
|
|
nsRect mRect;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t mFlags;
|
2009-09-04 04:49:18 +00:00
|
|
|
};
|
|
|
|
|
2012-10-19 04:50:34 +00:00
|
|
|
void TakeFrom(nsInvalidateRequestList* aList)
|
|
|
|
{
|
2015-08-11 15:29:46 +00:00
|
|
|
mRequests.AppendElements(mozilla::Move(aList->mRequests));
|
2012-10-19 04:50:34 +00:00
|
|
|
}
|
|
|
|
bool IsEmpty() { return mRequests.IsEmpty(); }
|
|
|
|
|
2009-09-04 04:49:18 +00:00
|
|
|
nsTArray<Request> mRequests;
|
|
|
|
};
|
|
|
|
|
2008-04-25 23:12:45 +00:00
|
|
|
/* Used by nsPresContext::HasAuthorSpecifiedRules */
|
|
|
|
#define NS_AUTHOR_SPECIFIED_BACKGROUND (1 << 0)
|
|
|
|
#define NS_AUTHOR_SPECIFIED_BORDER (1 << 1)
|
|
|
|
#define NS_AUTHOR_SPECIFIED_PADDING (1 << 2)
|
2012-08-04 18:52:21 +00:00
|
|
|
#define NS_AUTHOR_SPECIFIED_TEXT_SHADOW (1 << 3)
|
2008-04-25 23:12:45 +00:00
|
|
|
|
2009-07-22 00:44:54 +00:00
|
|
|
class nsRootPresContext;
|
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
// An interface for presentation contexts. Presentation contexts are
|
|
|
|
// objects that provide an outer context for a presentation shell.
|
2004-07-29 21:00:58 +00:00
|
|
|
|
2016-10-12 11:27:38 +00:00
|
|
|
class nsPresContext : public nsIObserver,
|
|
|
|
public mozilla::SupportsWeakPtr<nsPresContext> {
|
2004-07-29 21:00:58 +00:00
|
|
|
public:
|
2010-03-29 01:46:55 +00:00
|
|
|
typedef mozilla::FramePropertyTable FramePropertyTable;
|
2016-03-31 19:47:20 +00:00
|
|
|
typedef mozilla::LangGroupFontPrefs LangGroupFontPrefs;
|
2014-09-15 19:30:00 +00:00
|
|
|
typedef mozilla::ScrollbarStyles ScrollbarStyles;
|
2016-03-31 19:47:20 +00:00
|
|
|
typedef mozilla::StaticPresData StaticPresData;
|
2010-03-29 01:46:55 +00:00
|
|
|
|
2007-08-10 21:25:24 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
2004-07-29 19:41:39 +00:00
|
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
NS_DECL_AND_IMPL_ZEROING_OPERATOR_NEW
|
2007-08-10 21:25:24 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS(nsPresContext)
|
2016-10-12 11:27:38 +00:00
|
|
|
MOZ_DECLARE_WEAKREFERENCE_TYPENAME(nsPresContext)
|
2004-07-29 19:41:39 +00:00
|
|
|
|
|
|
|
enum nsPresContextType {
|
|
|
|
eContext_Galley, // unpaginated screen presentation
|
|
|
|
eContext_PrintPreview, // paginated screen presentation
|
2006-04-01 01:19:28 +00:00
|
|
|
eContext_Print, // paginated printer presentation
|
|
|
|
eContext_PageLayout // paginated & editable.
|
2004-07-29 19:41:39 +00:00
|
|
|
};
|
|
|
|
|
2014-06-02 12:08:24 +00:00
|
|
|
nsPresContext(nsIDocument* aDocument, nsPresContextType aType);
|
2004-07-29 19:41:39 +00:00
|
|
|
|
1998-06-25 04:24:45 +00:00
|
|
|
/**
|
|
|
|
* Initialize the presentation context from a particular device.
|
|
|
|
*/
|
2014-06-02 12:08:21 +00:00
|
|
|
nsresult Init(nsDeviceContext* aDeviceContext);
|
1998-11-26 18:08:44 +00:00
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
/**
|
2016-07-27 00:43:56 +00:00
|
|
|
* Set and detach presentation shell that this context is bound to.
|
1998-04-13 20:24:54 +00:00
|
|
|
* A presentation context may only be bound to a single shell.
|
|
|
|
*/
|
2016-07-27 00:27:56 +00:00
|
|
|
void AttachShell(nsIPresShell* aShell, mozilla::StyleBackendType aBackendType);
|
2016-07-27 00:43:56 +00:00
|
|
|
void DetachShell();
|
2004-07-29 19:41:39 +00:00
|
|
|
|
|
|
|
|
2014-06-02 12:08:21 +00:00
|
|
|
nsPresContextType Type() const { return mType; }
|
1998-04-13 20:24:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the PresentationShell that this context is bound to.
|
|
|
|
*/
|
2003-12-21 05:36:36 +00:00
|
|
|
nsIPresShell* PresShell() const
|
|
|
|
{
|
|
|
|
NS_ASSERTION(mShell, "Null pres shell");
|
|
|
|
return mShell;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIPresShell* GetPresShell() const { return mShell; }
|
2003-06-19 18:16:53 +00:00
|
|
|
|
2012-05-04 05:00:57 +00:00
|
|
|
/**
|
|
|
|
* Returns the parent prescontext for this one. Returns null if this is a
|
|
|
|
* root.
|
|
|
|
*/
|
|
|
|
nsPresContext* GetParentPresContext();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the prescontext of the toplevel content document that contains
|
|
|
|
* this presentation, or null if there isn't one.
|
|
|
|
*/
|
|
|
|
nsPresContext* GetToplevelContentDocumentPresContext();
|
|
|
|
|
2012-09-26 05:47:45 +00:00
|
|
|
/**
|
|
|
|
* Returns the nearest widget for the root frame of this.
|
|
|
|
*
|
|
|
|
* @param aOffset If non-null the offset from the origin of the root
|
|
|
|
* frame's view to the widget's origin (usually positive)
|
|
|
|
* expressed in appunits of this will be returned in
|
|
|
|
* aOffset.
|
|
|
|
*/
|
|
|
|
nsIWidget* GetNearestWidget(nsPoint* aOffset = nullptr);
|
|
|
|
|
2013-02-06 02:50:02 +00:00
|
|
|
/**
|
|
|
|
* Returns the root widget for this.
|
|
|
|
* Note that the widget is a mediater with IME.
|
|
|
|
*/
|
|
|
|
nsIWidget* GetRootWidget();
|
|
|
|
|
2010-01-26 13:10:12 +00:00
|
|
|
/**
|
|
|
|
* Return the presentation context for the root of the view manager
|
2012-07-30 14:20:58 +00:00
|
|
|
* hierarchy that contains this presentation context, or nullptr if it can't
|
2010-01-26 13:10:12 +00:00
|
|
|
* be found (e.g. it's detached).
|
|
|
|
*/
|
|
|
|
nsRootPresContext* GetRootPresContext();
|
2016-01-22 01:09:04 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual bool IsRoot() { return false; }
|
2006-11-29 23:09:13 +00:00
|
|
|
|
2006-05-19 10:26:44 +00:00
|
|
|
nsIDocument* Document() const
|
|
|
|
{
|
|
|
|
NS_ASSERTION(!mShell || !mShell->GetDocument() ||
|
|
|
|
mShell->GetDocument() == mDocument,
|
|
|
|
"nsPresContext doesn't have the same document as nsPresShell!");
|
|
|
|
return mDocument;
|
|
|
|
}
|
|
|
|
|
2013-03-16 04:31:38 +00:00
|
|
|
#ifdef MOZILLA_INTERNAL_API
|
2017-01-04 19:52:26 +00:00
|
|
|
mozilla::StyleSetHandle StyleSet() const { return GetPresShell()->StyleSet(); }
|
2004-02-23 21:29:06 +00:00
|
|
|
|
|
|
|
nsFrameManager* FrameManager()
|
2013-07-20 19:14:25 +00:00
|
|
|
{ return PresShell()->FrameManager(); }
|
|
|
|
|
|
|
|
nsCSSFrameConstructor* FrameConstructor()
|
|
|
|
{ return PresShell()->FrameConstructor(); }
|
2009-10-08 03:22:42 +00:00
|
|
|
|
2016-01-12 22:54:53 +00:00
|
|
|
mozilla::EffectCompositor* EffectCompositor() { return mEffectCompositor; }
|
2009-10-08 03:22:42 +00:00
|
|
|
nsTransitionManager* TransitionManager() { return mTransitionManager; }
|
2011-04-12 06:18:44 +00:00
|
|
|
nsAnimationManager* AnimationManager() { return mAnimationManager; }
|
2009-10-08 03:22:42 +00:00
|
|
|
|
2009-12-23 19:10:30 +00:00
|
|
|
nsRefreshDriver* RefreshDriver() { return mRefreshDriver; }
|
2013-07-20 19:14:24 +00:00
|
|
|
|
2016-07-27 00:27:56 +00:00
|
|
|
mozilla::RestyleManagerHandle RestyleManager() {
|
|
|
|
MOZ_ASSERT(mRestyleManager);
|
|
|
|
return mRestyleManager;
|
|
|
|
}
|
2014-06-12 01:11:00 +00:00
|
|
|
|
2017-01-04 19:52:26 +00:00
|
|
|
mozilla::CounterStyleManager* CounterStyleManager() const {
|
2014-06-12 01:11:00 +00:00
|
|
|
return mCounterStyleManager;
|
|
|
|
}
|
2004-01-28 00:18:22 +00:00
|
|
|
#endif
|
1998-04-13 20:24:54 +00:00
|
|
|
|
2008-12-04 16:09:53 +00:00
|
|
|
/**
|
|
|
|
* Rebuilds all style data by throwing out the old rule tree and
|
|
|
|
* building a new one, and additionally applying aExtraHint (which
|
|
|
|
* must not contain nsChangeHint_ReconstructFrame) to the root frame.
|
2014-10-08 21:26:57 +00:00
|
|
|
* For aRestyleHint, see RestyleManager::RebuildAllStyleData.
|
2014-06-12 01:12:00 +00:00
|
|
|
* Also rebuild the user font set and counter style manager.
|
2008-12-04 16:09:53 +00:00
|
|
|
*/
|
2014-10-08 21:26:57 +00:00
|
|
|
void RebuildAllStyleData(nsChangeHint aExtraHint, nsRestyleHint aRestyleHint);
|
2008-12-04 16:09:53 +00:00
|
|
|
/**
|
|
|
|
* Just like RebuildAllStyleData, except (1) asynchronous and (2) it
|
|
|
|
* doesn't rebuild the user font set.
|
|
|
|
*/
|
2014-10-08 21:27:02 +00:00
|
|
|
void PostRebuildAllStyleDataEvent(nsChangeHint aExtraHint,
|
|
|
|
nsRestyleHint aRestyleHint);
|
2008-01-09 09:38:28 +00:00
|
|
|
|
2014-10-08 21:27:03 +00:00
|
|
|
/**
|
|
|
|
* Handle changes in the values of media features (used in media
|
|
|
|
* queries).
|
|
|
|
*
|
|
|
|
* There are three sensible values to use for aRestyleHint:
|
|
|
|
* * nsRestyleHint(0) to rebuild style data, with rerunning of
|
|
|
|
* selector matching, only if media features have changed
|
|
|
|
* * eRestyle_ForceDescendants to force rebuilding of style data (but
|
|
|
|
* still only rerun selector matching if media query results have
|
|
|
|
* changed). (RebuildAllStyleData always adds
|
|
|
|
* eRestyle_ForceDescendants internally, so here we're only using
|
|
|
|
* it to distinguish from nsRestyleHint(0) whether we need to call
|
|
|
|
* RebuildAllStyleData at all.)
|
|
|
|
* * eRestyle_Subtree to force rebuilding of style data with
|
|
|
|
* rerunning of selector matching
|
|
|
|
*
|
|
|
|
* For aChangeHint, see RestyleManager::RebuildAllStyleData. (Passing
|
|
|
|
* a nonzero aChangeHint forces rebuilding style data even if
|
|
|
|
* nsRestyleHint(0) is passed.)
|
|
|
|
*/
|
|
|
|
void MediaFeatureValuesChanged(nsRestyleHint aRestyleHint,
|
2012-11-09 06:40:41 +00:00
|
|
|
nsChangeHint aChangeHint = nsChangeHint(0));
|
2016-02-23 16:10:00 +00:00
|
|
|
/**
|
|
|
|
* Calls MediaFeatureValuesChanged for this pres context and all descendant
|
|
|
|
* subdocuments that have a pres context. This should be used for media
|
|
|
|
* features that must be updated in all subdocuments e.g. display-mode.
|
|
|
|
*/
|
|
|
|
void MediaFeatureValuesChangedAllDocuments(nsRestyleHint aRestyleHint,
|
|
|
|
nsChangeHint aChangeHint = nsChangeHint(0));
|
|
|
|
|
2008-07-26 16:14:48 +00:00
|
|
|
void PostMediaFeatureValuesChangedEvent();
|
2014-06-02 12:08:21 +00:00
|
|
|
void HandleMediaFeatureValuesChangedEvent();
|
2008-07-26 16:14:48 +00:00
|
|
|
void FlushPendingMediaFeatureValuesChanged() {
|
|
|
|
if (mPendingMediaFeatureValuesChanged)
|
2014-10-08 21:27:03 +00:00
|
|
|
MediaFeatureValuesChanged(nsRestyleHint(0));
|
2008-07-26 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2016-02-23 16:10:00 +00:00
|
|
|
/**
|
|
|
|
* Updates the size mode on all remote children and recursively notifies this
|
|
|
|
* document and all subdocuments (including remote children) that a media
|
|
|
|
* feature value has changed.
|
|
|
|
*/
|
|
|
|
void SizeModeChanged(nsSizeMode aSizeMode);
|
|
|
|
|
1998-07-31 05:54:59 +00:00
|
|
|
/**
|
2006-12-05 15:46:18 +00:00
|
|
|
* Access compatibility mode for this context. This is the same as
|
|
|
|
* our document's compatibility mode.
|
|
|
|
*/
|
2012-07-30 04:29:41 +00:00
|
|
|
nsCompatibility CompatibilityMode() const;
|
|
|
|
|
2006-12-05 15:46:18 +00:00
|
|
|
/**
|
|
|
|
* Notify the context that the document's compatibility mode has changed
|
1998-07-31 05:54:59 +00:00
|
|
|
*/
|
2014-06-02 12:08:21 +00:00
|
|
|
void CompatibilityModeChanged();
|
1998-07-31 05:54:59 +00:00
|
|
|
|
2000-05-13 01:39:20 +00:00
|
|
|
/**
|
|
|
|
* Access the image animation mode for this context
|
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
uint16_t ImageAnimationMode() const { return mImageAnimationMode; }
|
2014-06-02 12:08:21 +00:00
|
|
|
virtual void SetImageAnimationModeExternal(uint16_t aMode);
|
|
|
|
void SetImageAnimationModeInternal(uint16_t aMode);
|
2013-03-16 04:31:38 +00:00
|
|
|
#ifdef MOZILLA_INTERNAL_API
|
2012-08-22 15:56:38 +00:00
|
|
|
void SetImageAnimationMode(uint16_t aMode)
|
2004-07-29 19:41:39 +00:00
|
|
|
{ SetImageAnimationModeInternal(aMode); }
|
|
|
|
#else
|
2012-08-22 15:56:38 +00:00
|
|
|
void SetImageAnimationMode(uint16_t aMode)
|
2004-07-29 19:41:39 +00:00
|
|
|
{ SetImageAnimationModeExternal(aMode); }
|
|
|
|
#endif
|
2000-05-13 01:39:20 +00:00
|
|
|
|
2014-03-20 06:49:25 +00:00
|
|
|
/**
|
1998-12-02 00:28:57 +00:00
|
|
|
* Get medium of presentation
|
|
|
|
*/
|
2013-07-17 15:39:19 +00:00
|
|
|
nsIAtom* Medium() {
|
|
|
|
if (!mIsEmulatingMedia)
|
|
|
|
return mMedium;
|
|
|
|
return mMediaEmulated;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Render the document as if being viewed on a device with the specified
|
|
|
|
* media type.
|
|
|
|
*/
|
|
|
|
void EmulateMedium(const nsAString& aMediaType);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Restore the viewer's natural medium
|
|
|
|
*/
|
|
|
|
void StopEmulatingMedium();
|
1998-12-02 00:28:57 +00:00
|
|
|
|
2004-04-13 00:28:44 +00:00
|
|
|
void* AllocateFromShell(size_t aSize)
|
|
|
|
{
|
|
|
|
if (mShell)
|
2009-08-18 03:21:06 +00:00
|
|
|
return mShell->AllocateMisc(aSize);
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2004-04-13 00:28:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void FreeToShell(size_t aSize, void* aFreeChunk)
|
|
|
|
{
|
2009-01-30 04:39:23 +00:00
|
|
|
NS_ASSERTION(mShell, "freeing after shutdown");
|
2004-04-13 00:28:44 +00:00
|
|
|
if (mShell)
|
2009-08-18 03:21:06 +00:00
|
|
|
mShell->FreeMisc(aSize, aFreeChunk);
|
2004-04-13 00:28:44 +00:00
|
|
|
}
|
2001-05-31 22:19:43 +00:00
|
|
|
|
2004-01-31 22:41:40 +00:00
|
|
|
/**
|
2012-01-25 23:52:26 +00:00
|
|
|
* Get the default font for the given language and generic font ID.
|
2012-07-30 14:20:58 +00:00
|
|
|
* If aLanguage is nullptr, the document's language is used.
|
2012-01-25 23:52:26 +00:00
|
|
|
*
|
2016-03-31 19:47:20 +00:00
|
|
|
* See the comment in StaticPresData::GetDefaultFont.
|
2004-01-31 22:41:40 +00:00
|
|
|
*/
|
2014-06-02 12:08:21 +00:00
|
|
|
const nsFont* GetDefaultFont(uint8_t aFontID,
|
2016-03-31 19:47:20 +00:00
|
|
|
nsIAtom *aLanguage) const
|
|
|
|
{
|
|
|
|
nsIAtom* lang = aLanguage ? aLanguage : mLanguage.get();
|
|
|
|
return StaticPresData::Get()->GetDefaultFontHelper(aFontID, lang,
|
|
|
|
GetFontPrefsForLang(lang));
|
|
|
|
}
|
1998-07-17 05:41:41 +00:00
|
|
|
|
2004-04-13 00:28:44 +00:00
|
|
|
/** Get a cached boolean pref, by its type */
|
2000-10-11 08:33:01 +00:00
|
|
|
// * - initially created for bugs 31816, 20760, 22963
|
2011-09-29 06:19:26 +00:00
|
|
|
bool GetCachedBoolPref(nsPresContext_CachedBoolPrefType aPrefType) const
|
2004-02-20 17:49:01 +00:00
|
|
|
{
|
|
|
|
// If called with a constant parameter, the compiler should optimize
|
|
|
|
// this switch statement away.
|
|
|
|
switch (aPrefType) {
|
|
|
|
case kPresContext_UseDocumentFonts:
|
|
|
|
return mUseDocumentFonts;
|
|
|
|
case kPresContext_UnderlineLinks:
|
|
|
|
return mUnderlineLinks;
|
|
|
|
default:
|
|
|
|
NS_ERROR("Invalid arg passed to GetCachedBoolPref");
|
|
|
|
}
|
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2004-02-20 17:49:01 +00:00
|
|
|
}
|
2001-09-27 18:34:30 +00:00
|
|
|
|
2004-04-13 00:28:44 +00:00
|
|
|
/** Get a cached integer pref, by its type */
|
2001-09-27 18:34:30 +00:00
|
|
|
// * - initially created for bugs 30910, 61883, 74186, 84398
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t GetCachedIntPref(nsPresContext_CachedIntPrefType aPrefType) const
|
2004-04-13 00:28:44 +00:00
|
|
|
{
|
|
|
|
// If called with a constant parameter, the compiler should optimize
|
|
|
|
// this switch statement away.
|
|
|
|
switch (aPrefType) {
|
2006-03-26 00:48:03 +00:00
|
|
|
case kPresContext_ScrollbarSide:
|
|
|
|
return mPrefScrollbarSide;
|
|
|
|
case kPresContext_BidiDirection:
|
|
|
|
return mPrefBidiDirection;
|
2004-04-13 00:28:44 +00:00
|
|
|
default:
|
|
|
|
NS_ERROR("invalid arg passed to GetCachedIntPref");
|
|
|
|
}
|
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2004-04-13 00:28:44 +00:00
|
|
|
}
|
2000-10-11 08:33:01 +00:00
|
|
|
|
2014-03-20 06:49:25 +00:00
|
|
|
/**
|
2000-10-11 08:33:01 +00:00
|
|
|
* Get the default colors
|
1998-07-17 05:41:41 +00:00
|
|
|
*/
|
2016-01-06 01:08:45 +00:00
|
|
|
nscolor DefaultColor() const { return mDefaultColor; }
|
|
|
|
nscolor DefaultBackgroundColor() const { return mBackgroundColor; }
|
|
|
|
nscolor DefaultLinkColor() const { return mLinkColor; }
|
|
|
|
nscolor DefaultActiveLinkColor() const { return mActiveLinkColor; }
|
|
|
|
nscolor DefaultVisitedLinkColor() const { return mVisitedLinkColor; }
|
|
|
|
nscolor FocusBackgroundColor() const { return mFocusBackgroundColor; }
|
|
|
|
nscolor FocusTextColor() const { return mFocusTextColor; }
|
2004-01-31 22:41:40 +00:00
|
|
|
|
2011-06-01 11:43:31 +00:00
|
|
|
/**
|
|
|
|
* Body text color, for use in quirks mode only.
|
|
|
|
*/
|
2016-01-06 01:08:45 +00:00
|
|
|
nscolor BodyTextColor() const { return mBodyTextColor; }
|
2011-06-01 11:43:31 +00:00
|
|
|
void SetBodyTextColor(nscolor aColor) { mBodyTextColor = aColor; }
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool GetUseFocusColors() const { return mUseFocusColors; }
|
2012-08-22 15:56:38 +00:00
|
|
|
uint8_t FocusRingWidth() const { return mFocusRingWidth; }
|
2011-09-29 06:19:26 +00:00
|
|
|
bool GetFocusRingOnAnything() const { return mFocusRingOnAnything; }
|
2012-08-22 15:56:38 +00:00
|
|
|
uint8_t GetFocusRingStyle() const { return mFocusRingStyle; }
|
2008-10-08 23:28:31 +00:00
|
|
|
|
2014-06-02 12:08:21 +00:00
|
|
|
void SetContainer(nsIDocShell* aContainer);
|
1998-04-13 20:24:54 +00:00
|
|
|
|
2013-11-20 19:18:25 +00:00
|
|
|
virtual nsISupports* GetContainerWeakExternal() const;
|
|
|
|
nsISupports* GetContainerWeakInternal() const;
|
2013-03-16 04:31:38 +00:00
|
|
|
#ifdef MOZILLA_INTERNAL_API
|
2013-11-20 19:18:25 +00:00
|
|
|
nsISupports* GetContainerWeak() const
|
|
|
|
{ return GetContainerWeakInternal(); }
|
2004-07-29 19:41:39 +00:00
|
|
|
#else
|
2013-11-20 19:18:25 +00:00
|
|
|
nsISupports* GetContainerWeak() const
|
|
|
|
{ return GetContainerWeakExternal(); }
|
2004-07-29 19:41:39 +00:00
|
|
|
#endif
|
1998-04-13 20:24:54 +00:00
|
|
|
|
2013-11-20 19:18:25 +00:00
|
|
|
nsIDocShell* GetDocShell() const;
|
|
|
|
|
1998-07-13 19:49:07 +00:00
|
|
|
// XXX this are going to be replaced with set/get container
|
2004-02-01 10:09:07 +00:00
|
|
|
void SetLinkHandler(nsILinkHandler* aHandler) { mLinkHandler = aHandler; }
|
|
|
|
nsILinkHandler* GetLinkHandler() { return mLinkHandler; }
|
1998-04-13 20:24:54 +00:00
|
|
|
|
2014-02-03 23:47:57 +00:00
|
|
|
/**
|
|
|
|
* Detach this pres context - i.e. cancel relevant timers,
|
|
|
|
* SetLinkHandler(null), SetContainer(null) etc.
|
|
|
|
* Only to be used by the DocumentViewer.
|
|
|
|
*/
|
|
|
|
virtual void Detach();
|
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
/**
|
1998-07-13 19:49:07 +00:00
|
|
|
* Get the visible area associated with this presentation context.
|
2008-12-09 00:33:46 +00:00
|
|
|
* This is the size of the visible area that is used for
|
1998-07-13 19:49:07 +00:00
|
|
|
* presenting the document. The returned value is in the standard
|
|
|
|
* nscoord units (as scaled by the device context).
|
1998-04-13 20:24:54 +00:00
|
|
|
*/
|
2016-02-18 15:13:35 +00:00
|
|
|
nsRect GetVisibleArea() const { return mVisibleArea; }
|
1998-04-13 20:24:54 +00:00
|
|
|
|
|
|
|
/**
|
1998-07-13 19:49:07 +00:00
|
|
|
* Set the currently visible area. The units for r are standard
|
|
|
|
* nscoord units (as scaled by the device context).
|
1998-04-13 20:24:54 +00:00
|
|
|
*/
|
2008-07-26 16:14:48 +00:00
|
|
|
void SetVisibleArea(const nsRect& r) {
|
2011-04-19 03:07:23 +00:00
|
|
|
if (!r.IsEqualEdges(mVisibleArea)) {
|
2008-12-29 15:07:37 +00:00
|
|
|
mVisibleArea = r;
|
|
|
|
// Visible area does not affect media queries when paginated.
|
2012-10-19 23:21:06 +00:00
|
|
|
if (!IsPaginated() && HasCachedStyleData()) {
|
|
|
|
mPendingViewportChange = true;
|
2008-12-29 15:07:37 +00:00
|
|
|
PostMediaFeatureValuesChangedEvent();
|
2012-10-19 23:21:06 +00:00
|
|
|
}
|
2008-12-29 15:07:37 +00:00
|
|
|
}
|
2008-07-26 16:14:48 +00:00
|
|
|
}
|
1998-04-13 20:24:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return true if this presentation context is a paginated
|
|
|
|
* context.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsPaginated() const { return mPaginated; }
|
2014-03-20 06:49:25 +00:00
|
|
|
|
2001-11-03 14:59:39 +00:00
|
|
|
/**
|
|
|
|
* Sets whether the presentation context can scroll for a paginated
|
|
|
|
* context.
|
|
|
|
*/
|
2014-06-02 12:08:21 +00:00
|
|
|
void SetPaginatedScrolling(bool aResult);
|
2001-11-03 14:59:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return true if this presentation context can scroll for paginated
|
|
|
|
* context.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool HasPaginatedScrolling() const { return mCanPaginatedScroll; }
|
2001-11-03 14:59:39 +00:00
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
/**
|
2006-03-30 00:27:42 +00:00
|
|
|
* Get/set the size of a page
|
1998-04-13 20:24:54 +00:00
|
|
|
*/
|
2006-03-30 00:27:42 +00:00
|
|
|
nsSize GetPageSize() { return mPageSize; }
|
|
|
|
void SetPageSize(nsSize aSize) { mPageSize = aSize; }
|
1998-04-13 20:24:54 +00:00
|
|
|
|
|
|
|
/**
|
2006-03-30 00:27:42 +00:00
|
|
|
* Get/set whether this document should be treated as having real pages
|
|
|
|
* XXX This raises the obvious question of why a document that isn't a page
|
|
|
|
* is paginated; there isn't a good reason except history
|
1998-04-13 20:24:54 +00:00
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsRootPaginatedDocument() { return mIsRootPaginatedDocument; }
|
|
|
|
void SetIsRootPaginatedDocument(bool aIsRootPaginatedDocument)
|
2006-03-30 00:27:42 +00:00
|
|
|
{ mIsRootPaginatedDocument = aIsRootPaginatedDocument; }
|
1999-02-12 17:45:58 +00:00
|
|
|
|
2006-01-21 09:31:45 +00:00
|
|
|
/**
|
2007-02-07 07:46:44 +00:00
|
|
|
* Get/set the print scaling level; used by nsPageFrame to scale up
|
|
|
|
* pages. Set safe to call before reflow, get guaranteed to be set
|
|
|
|
* properly after reflow.
|
|
|
|
*/
|
1998-04-13 20:24:54 +00:00
|
|
|
|
2007-02-07 07:46:44 +00:00
|
|
|
float GetPageScale() { return mPageScale; }
|
|
|
|
void SetPageScale(float aScale) { mPageScale = aScale; }
|
1998-04-13 20:24:54 +00:00
|
|
|
|
2007-02-13 22:36:59 +00:00
|
|
|
/**
|
|
|
|
* Get/set the scaling facor to use when rendering the pages for print preview.
|
|
|
|
* Only safe to get after print preview set up; safe to set anytime.
|
|
|
|
* This is a scaling factor for the display of the print preview. It
|
|
|
|
* does not affect layout. It only affects the size of the onscreen pages
|
|
|
|
* in print preview.
|
|
|
|
* XXX Temporary: see http://wiki.mozilla.org/Gecko:PrintPreview
|
|
|
|
*/
|
|
|
|
float GetPrintPreviewScale() { return mPPScale; }
|
|
|
|
void SetPrintPreviewScale(float aScale) { mPPScale = aScale; }
|
1998-11-14 01:52:27 +00:00
|
|
|
|
2017-01-04 19:52:26 +00:00
|
|
|
nsDeviceContext* DeviceContext() const { return mDeviceContext; }
|
2014-04-01 04:09:23 +00:00
|
|
|
mozilla::EventStateManager* EventStateManager() { return mEventManager; }
|
2015-11-28 00:56:33 +00:00
|
|
|
nsIAtom* GetLanguageFromCharset() const { return mLanguage; }
|
|
|
|
already_AddRefed<nsIAtom> GetContentLanguage() const;
|
2000-04-21 14:59:47 +00:00
|
|
|
|
2017-01-04 19:52:26 +00:00
|
|
|
float TextZoom() const { return mTextZoom; }
|
2007-07-26 03:34:16 +00:00
|
|
|
void SetTextZoom(float aZoom) {
|
2015-11-16 16:32:39 +00:00
|
|
|
MOZ_ASSERT(aZoom > 0.0f, "invalid zoom factor");
|
2009-01-16 21:32:08 +00:00
|
|
|
if (aZoom == mTextZoom)
|
|
|
|
return;
|
|
|
|
|
2005-08-13 11:54:22 +00:00
|
|
|
mTextZoom = aZoom;
|
2009-01-16 21:32:08 +00:00
|
|
|
if (HasCachedStyleData()) {
|
2012-01-25 23:52:26 +00:00
|
|
|
// Media queries could have changed, since we changed the meaning
|
2009-01-16 21:32:08 +00:00
|
|
|
// of 'em' units in them.
|
2014-10-08 21:27:04 +00:00
|
|
|
MediaFeatureValuesChanged(eRestyle_ForceDescendants,
|
|
|
|
NS_STYLE_HINT_REFLOW);
|
2009-01-16 21:32:08 +00:00
|
|
|
}
|
2005-08-13 11:54:22 +00:00
|
|
|
}
|
2007-07-26 03:34:16 +00:00
|
|
|
|
2012-01-25 23:52:26 +00:00
|
|
|
/**
|
|
|
|
* Get the minimum font size for the specified language. If aLanguage
|
2014-02-25 19:07:47 +00:00
|
|
|
* is nullptr, then the document's language is used. This combines
|
|
|
|
* the language-specific global preference with the per-presentation
|
|
|
|
* base minimum font size.
|
2012-01-25 23:52:26 +00:00
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t MinFontSize(nsIAtom *aLanguage) const {
|
2012-01-25 23:52:26 +00:00
|
|
|
const LangGroupFontPrefs *prefs = GetFontPrefsForLang(aLanguage);
|
2014-02-25 19:07:47 +00:00
|
|
|
return std::max(mBaseMinFontSize, prefs->mMinimumFontSize);
|
2011-03-11 04:33:43 +00:00
|
|
|
}
|
2014-03-20 06:49:25 +00:00
|
|
|
|
2014-02-25 19:07:47 +00:00
|
|
|
/**
|
|
|
|
* Get the per-presentation base minimum font size. This size is
|
|
|
|
* independent of the language-specific global preference.
|
|
|
|
*/
|
|
|
|
int32_t BaseMinFontSize() const {
|
|
|
|
return mBaseMinFontSize;
|
|
|
|
}
|
2014-03-20 06:49:25 +00:00
|
|
|
|
2014-02-25 19:07:47 +00:00
|
|
|
/**
|
|
|
|
* Set the per-presentation base minimum font size. This size is
|
|
|
|
* independent of the language-specific global preference.
|
|
|
|
*/
|
|
|
|
void SetBaseMinFontSize(int32_t aMinFontSize) {
|
|
|
|
if (aMinFontSize == mBaseMinFontSize)
|
2011-03-11 04:33:43 +00:00
|
|
|
return;
|
|
|
|
|
2014-02-25 19:07:47 +00:00
|
|
|
mBaseMinFontSize = aMinFontSize;
|
2011-03-11 04:33:43 +00:00
|
|
|
if (HasCachedStyleData()) {
|
2012-01-25 23:52:26 +00:00
|
|
|
// Media queries could have changed, since we changed the meaning
|
2011-03-11 04:33:43 +00:00
|
|
|
// of 'em' units in them.
|
2014-10-08 21:27:04 +00:00
|
|
|
MediaFeatureValuesChanged(eRestyle_ForceDescendants,
|
|
|
|
NS_STYLE_HINT_REFLOW);
|
2011-03-11 04:33:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-07 20:38:35 +00:00
|
|
|
float GetFullZoom() { return mFullZoom; }
|
2007-07-26 03:34:16 +00:00
|
|
|
void SetFullZoom(float aZoom);
|
2005-08-13 11:54:22 +00:00
|
|
|
|
2016-08-25 11:15:19 +00:00
|
|
|
float GetOverrideDPPX() { return mOverrideDPPX; }
|
|
|
|
void SetOverrideDPPX(float aDPPX);
|
|
|
|
|
2007-07-26 09:47:43 +00:00
|
|
|
nscoord GetAutoQualityMinFontSize() {
|
|
|
|
return DevPixelsToAppUnits(mAutoQualityMinFontSizePixelsPref);
|
|
|
|
}
|
2012-05-05 13:25:45 +00:00
|
|
|
|
|
|
|
/**
|
2015-03-10 14:28:23 +00:00
|
|
|
* Return the device's screen size in inches, for font size
|
2012-05-05 13:25:45 +00:00
|
|
|
* inflation.
|
|
|
|
*
|
2012-06-12 05:43:31 +00:00
|
|
|
* If |aChanged| is non-null, then aChanged is filled in with whether
|
2015-03-10 14:28:23 +00:00
|
|
|
* the screen size value has changed since either:
|
2012-06-12 05:43:31 +00:00
|
|
|
* a. the last time the function was called with non-null aChanged, or
|
|
|
|
* b. the first time the function was called.
|
2012-05-05 13:25:45 +00:00
|
|
|
*/
|
2015-03-10 14:28:23 +00:00
|
|
|
gfxSize ScreenSizeInchesForFontInflation(bool* aChanged = nullptr);
|
2012-05-05 13:25:45 +00:00
|
|
|
|
2013-09-06 20:15:04 +00:00
|
|
|
static int32_t AppUnitsPerCSSPixel() { return mozilla::AppUnitsPerCSSPixel(); }
|
2013-09-23 11:52:25 +00:00
|
|
|
int32_t AppUnitsPerDevPixel() const;
|
|
|
|
static int32_t AppUnitsPerCSSInch() { return mozilla::AppUnitsPerCSSInch(); }
|
2007-02-07 07:46:44 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
static nscoord CSSPixelsToAppUnits(int32_t aPixels)
|
2013-08-05 02:58:41 +00:00
|
|
|
{ return NSToCoordRoundWithClamp(float(aPixels) *
|
2013-09-06 20:15:04 +00:00
|
|
|
float(AppUnitsPerCSSPixel())); }
|
2007-02-07 07:46:44 +00:00
|
|
|
|
|
|
|
static nscoord CSSPixelsToAppUnits(float aPixels)
|
2013-08-05 02:58:41 +00:00
|
|
|
{ return NSToCoordRoundWithClamp(aPixels *
|
2013-09-06 20:15:04 +00:00
|
|
|
float(AppUnitsPerCSSPixel())); }
|
2007-02-07 07:46:44 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
static int32_t AppUnitsToIntCSSPixels(nscoord aAppUnits)
|
2007-02-07 07:46:44 +00:00
|
|
|
{ return NSAppUnitsToIntPixels(aAppUnits,
|
2013-09-06 20:15:04 +00:00
|
|
|
float(AppUnitsPerCSSPixel())); }
|
2007-02-07 07:46:44 +00:00
|
|
|
|
|
|
|
static float AppUnitsToFloatCSSPixels(nscoord aAppUnits)
|
|
|
|
{ return NSAppUnitsToFloatPixels(aAppUnits,
|
2013-09-06 20:15:04 +00:00
|
|
|
float(AppUnitsPerCSSPixel())); }
|
2007-02-07 07:46:44 +00:00
|
|
|
|
2016-03-23 10:46:36 +00:00
|
|
|
static double AppUnitsToDoubleCSSPixels(nscoord aAppUnits)
|
|
|
|
{ return NSAppUnitsToDoublePixels(aAppUnits,
|
|
|
|
double(AppUnitsPerCSSPixel())); }
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
nscoord DevPixelsToAppUnits(int32_t aPixels) const
|
2013-09-23 11:52:25 +00:00
|
|
|
{ return NSIntPixelsToAppUnits(aPixels, AppUnitsPerDevPixel()); }
|
2007-02-07 07:46:44 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t AppUnitsToDevPixels(nscoord aAppUnits) const
|
2007-02-07 07:46:44 +00:00
|
|
|
{ return NSAppUnitsToIntPixels(aAppUnits,
|
2013-09-06 20:15:04 +00:00
|
|
|
float(AppUnitsPerDevPixel())); }
|
2007-02-07 07:46:44 +00:00
|
|
|
|
2016-04-22 17:40:39 +00:00
|
|
|
float AppUnitsToFloatDevPixels(nscoord aAppUnits)
|
|
|
|
{ return aAppUnits / float(AppUnitsPerDevPixel()); }
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t CSSPixelsToDevPixels(int32_t aPixels)
|
2009-06-18 08:35:11 +00:00
|
|
|
{ return AppUnitsToDevPixels(CSSPixelsToAppUnits(aPixels)); }
|
|
|
|
|
|
|
|
float CSSPixelsToDevPixels(float aPixels)
|
|
|
|
{
|
|
|
|
return NSAppUnitsToFloatPixels(CSSPixelsToAppUnits(aPixels),
|
2013-09-23 11:52:25 +00:00
|
|
|
float(AppUnitsPerDevPixel()));
|
2009-06-18 08:35:11 +00:00
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t DevPixelsToIntCSSPixels(int32_t aPixels)
|
2009-06-18 08:35:11 +00:00
|
|
|
{ return AppUnitsToIntCSSPixels(DevPixelsToAppUnits(aPixels)); }
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
float DevPixelsToFloatCSSPixels(int32_t aPixels)
|
2009-06-18 08:35:11 +00:00
|
|
|
{ return AppUnitsToFloatCSSPixels(DevPixelsToAppUnits(aPixels)); }
|
|
|
|
|
2015-09-29 00:13:52 +00:00
|
|
|
mozilla::CSSToLayoutDeviceScale CSSToDevPixelScale() const
|
|
|
|
{
|
|
|
|
return mozilla::CSSToLayoutDeviceScale(
|
|
|
|
float(AppUnitsPerCSSPixel()) / float(AppUnitsPerDevPixel()));
|
|
|
|
}
|
|
|
|
|
2008-02-16 15:31:27 +00:00
|
|
|
// If there is a remainder, it is rounded to nearest app units.
|
2013-09-23 11:52:25 +00:00
|
|
|
nscoord GfxUnitsToAppUnits(gfxFloat aGfxUnits) const;
|
2008-02-16 15:31:27 +00:00
|
|
|
|
2013-09-23 11:52:25 +00:00
|
|
|
gfxFloat AppUnitsToGfxUnits(nscoord aAppUnits) const;
|
2007-08-22 11:13:46 +00:00
|
|
|
|
2008-07-07 02:28:24 +00:00
|
|
|
gfxRect AppUnitsToGfxUnits(const nsRect& aAppRect) const
|
|
|
|
{ return gfxRect(AppUnitsToGfxUnits(aAppRect.x),
|
|
|
|
AppUnitsToGfxUnits(aAppRect.y),
|
|
|
|
AppUnitsToGfxUnits(aAppRect.width),
|
|
|
|
AppUnitsToGfxUnits(aAppRect.height)); }
|
|
|
|
|
2010-08-13 09:58:04 +00:00
|
|
|
static nscoord CSSTwipsToAppUnits(float aTwips)
|
2010-08-13 09:58:01 +00:00
|
|
|
{ return NSToCoordRoundWithClamp(
|
2013-09-23 11:52:25 +00:00
|
|
|
mozilla::AppUnitsPerCSSInch() * NS_TWIPS_TO_INCHES(aTwips)); }
|
2007-02-07 07:46:44 +00:00
|
|
|
|
2008-03-19 20:51:42 +00:00
|
|
|
// Margin-specific version, since they often need TwipsToAppUnits
|
2010-08-13 09:58:04 +00:00
|
|
|
static nsMargin CSSTwipsToAppUnits(const nsIntMargin &marginInTwips)
|
2013-03-06 08:05:55 +00:00
|
|
|
{ return nsMargin(CSSTwipsToAppUnits(float(marginInTwips.top)),
|
2010-08-20 12:45:07 +00:00
|
|
|
CSSTwipsToAppUnits(float(marginInTwips.right)),
|
2013-03-06 08:05:55 +00:00
|
|
|
CSSTwipsToAppUnits(float(marginInTwips.bottom)),
|
|
|
|
CSSTwipsToAppUnits(float(marginInTwips.left))); }
|
2010-08-13 09:58:04 +00:00
|
|
|
|
|
|
|
static nscoord CSSPointsToAppUnits(float aPoints)
|
2013-09-23 11:52:25 +00:00
|
|
|
{ return NSToCoordRound(aPoints * mozilla::AppUnitsPerCSSInch() /
|
2008-04-08 00:27:10 +00:00
|
|
|
POINTS_PER_INCH_FLOAT); }
|
2005-08-13 11:54:22 +00:00
|
|
|
|
2007-08-14 16:39:54 +00:00
|
|
|
nscoord RoundAppUnitsToNearestDevPixels(nscoord aAppUnits) const
|
|
|
|
{ return DevPixelsToAppUnits(AppUnitsToDevPixels(aAppUnits)); }
|
|
|
|
|
2015-09-30 00:48:41 +00:00
|
|
|
/**
|
|
|
|
* This checks the root element and the HTML BODY, if any, for an "overflow"
|
|
|
|
* property that should be applied to the viewport. If one is found then we
|
|
|
|
* return the element that we took the overflow from (which should then be
|
|
|
|
* treated as "overflow: visible"), and we store the overflow style here.
|
|
|
|
* If the document is in fullscreen, and the fullscreen element is not the
|
|
|
|
* root, the scrollbar of viewport will be suppressed.
|
|
|
|
* @return if scroll was propagated from some content node, the content node
|
|
|
|
* it was propagated from.
|
|
|
|
*/
|
|
|
|
nsIContent* UpdateViewportScrollbarStylesOverride();
|
2016-03-23 21:16:38 +00:00
|
|
|
const ScrollbarStyles& GetViewportScrollbarStylesOverride()
|
2004-04-13 02:56:03 +00:00
|
|
|
{
|
2014-09-15 19:30:00 +00:00
|
|
|
return mViewportStyleScrollbar;
|
2004-04-13 02:56:03 +00:00
|
|
|
}
|
|
|
|
|
2016-12-23 00:52:12 +00:00
|
|
|
/**
|
|
|
|
* Check whether the given element would propagate its scrollbar styles to the
|
|
|
|
* viewport in non-paginated mode. Must only be called if IsPaginated().
|
|
|
|
*/
|
|
|
|
bool ElementWouldPropagateScrollbarStyles(mozilla::dom::Element* aElement);
|
|
|
|
|
2001-12-14 02:25:48 +00:00
|
|
|
/**
|
2005-11-20 22:05:24 +00:00
|
|
|
* Set and get methods for controlling the background drawing
|
2001-12-14 02:25:48 +00:00
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool GetBackgroundImageDraw() const { return mDrawImageBackground; }
|
|
|
|
void SetBackgroundImageDraw(bool aCanDraw)
|
2004-02-20 17:49:01 +00:00
|
|
|
{
|
|
|
|
mDrawImageBackground = aCanDraw;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool GetBackgroundColorDraw() const { return mDrawColorBackground; }
|
|
|
|
void SetBackgroundColorDraw(bool aCanDraw)
|
2004-02-20 17:49:01 +00:00
|
|
|
{
|
|
|
|
mDrawColorBackground = aCanDraw;
|
|
|
|
}
|
2014-03-20 06:49:25 +00:00
|
|
|
|
2001-03-09 03:13:03 +00:00
|
|
|
/**
|
|
|
|
* Check if bidi enabled (set depending on the presence of RTL
|
|
|
|
* characters or when default directionality is RTL).
|
|
|
|
* If enabled, we should apply the Unicode Bidi Algorithm
|
|
|
|
*
|
|
|
|
* @lina 07/12/2000
|
|
|
|
*/
|
2013-03-16 04:31:38 +00:00
|
|
|
#ifdef MOZILLA_INTERNAL_API
|
2011-09-29 06:19:26 +00:00
|
|
|
bool BidiEnabled() const { return BidiEnabledInternal(); }
|
2004-07-29 19:41:39 +00:00
|
|
|
#else
|
2011-09-29 06:19:26 +00:00
|
|
|
bool BidiEnabled() const { return BidiEnabledExternal(); }
|
2004-07-29 19:41:39 +00:00
|
|
|
#endif
|
2012-07-30 04:29:41 +00:00
|
|
|
virtual bool BidiEnabledExternal() const;
|
|
|
|
bool BidiEnabledInternal() const;
|
2001-03-09 03:13:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set bidi enabled. This means we should apply the Unicode Bidi Algorithm
|
|
|
|
*
|
|
|
|
* @lina 07/12/2000
|
|
|
|
*/
|
2014-06-02 12:08:21 +00:00
|
|
|
void SetBidiEnabled() const;
|
2001-03-09 03:13:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set visual or implicit mode into the pres context.
|
|
|
|
*
|
|
|
|
* Visual directionality is a presentation method that displays text
|
|
|
|
* as if it were a uni-directional, according to the primary display
|
2014-03-20 06:49:25 +00:00
|
|
|
* direction only.
|
2001-03-09 03:13:03 +00:00
|
|
|
*
|
|
|
|
* Implicit directionality is a presentation method in which the
|
|
|
|
* direction is determined by the Bidi algorithm according to the
|
|
|
|
* category of the characters and the category of the adjacent
|
|
|
|
* characters, and according to their primary direction.
|
|
|
|
*
|
|
|
|
* @lina 05/02/2000
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
void SetVisualMode(bool aIsVisual)
|
2004-02-20 17:49:01 +00:00
|
|
|
{
|
|
|
|
mIsVisual = aIsVisual;
|
|
|
|
}
|
2001-03-09 03:13:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check whether the content should be treated as visual.
|
|
|
|
*
|
|
|
|
* @lina 05/02/2000
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsVisualMode() const { return mIsVisual; }
|
2001-03-09 03:13:03 +00:00
|
|
|
|
2016-11-09 01:39:28 +00:00
|
|
|
enum class InteractionType : uint32_t {
|
|
|
|
eClickInteraction,
|
|
|
|
eKeyInteraction,
|
|
|
|
eMouseMoveInteraction,
|
|
|
|
eScrollInteraction
|
|
|
|
};
|
|
|
|
|
|
|
|
void RecordInteractionTime(InteractionType aType);
|
|
|
|
|
|
|
|
void DisableInteractionTimeRecording()
|
|
|
|
{
|
|
|
|
mInteractionTimeEnabled = false;
|
|
|
|
}
|
|
|
|
|
2001-03-09 03:13:03 +00:00
|
|
|
//Mohamed
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the Bidi options for the presentation context
|
2014-03-20 06:49:25 +00:00
|
|
|
*/
|
2014-06-02 12:08:21 +00:00
|
|
|
void SetBidi(uint32_t aBidiOptions,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aForceRestyle = false);
|
2001-03-09 03:13:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the Bidi options for the presentation context
|
2005-11-08 22:45:49 +00:00
|
|
|
* Not inline so consumers of nsPresContext are not forced to
|
|
|
|
* include nsIDocument.
|
2012-07-30 04:29:41 +00:00
|
|
|
*/
|
2014-06-02 12:08:21 +00:00
|
|
|
uint32_t GetBidi() const;
|
2001-03-09 03:13:03 +00:00
|
|
|
|
2001-01-27 14:09:34 +00:00
|
|
|
/**
|
|
|
|
* Render only Selection
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
void SetIsRenderingOnlySelection(bool aResult)
|
2004-02-20 17:49:01 +00:00
|
|
|
{
|
|
|
|
mIsRenderingOnlySelection = aResult;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsRenderingOnlySelection() const { return mIsRenderingOnlySelection; }
|
2001-01-27 14:09:34 +00:00
|
|
|
|
2014-06-02 12:08:21 +00:00
|
|
|
bool IsTopLevelWindowInactive();
|
2010-03-17 17:10:57 +00:00
|
|
|
|
2001-12-17 22:51:39 +00:00
|
|
|
/*
|
|
|
|
* Obtain a native them for rendering our widgets (both form controls and html)
|
|
|
|
*/
|
2014-06-02 12:08:21 +00:00
|
|
|
nsITheme* GetTheme();
|
2001-12-17 22:51:39 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Notify the pres context that the theme has changed. An internal switch
|
|
|
|
* means it's one of our Mozilla themes that changed (e.g., Modern to Classic).
|
|
|
|
* Otherwise, the OS is telling us that the native theme for the platform
|
|
|
|
* has changed.
|
|
|
|
*/
|
2014-06-02 12:08:21 +00:00
|
|
|
void ThemeChanged();
|
2001-12-17 22:51:39 +00:00
|
|
|
|
2012-10-16 19:41:20 +00:00
|
|
|
/*
|
|
|
|
* Notify the pres context that the resolution of the user interface has
|
|
|
|
* changed. This happens if a window is moved between HiDPI and non-HiDPI
|
|
|
|
* displays, so that the ratio of points to device pixels changes.
|
2015-06-08 05:39:28 +00:00
|
|
|
* The notification happens asynchronously.
|
2012-10-16 19:41:20 +00:00
|
|
|
*/
|
2014-06-02 12:08:21 +00:00
|
|
|
void UIResolutionChanged();
|
2012-10-16 19:41:20 +00:00
|
|
|
|
2015-06-08 05:39:28 +00:00
|
|
|
/*
|
|
|
|
* Like UIResolutionChanged() but invalidates values immediately.
|
|
|
|
*/
|
|
|
|
void UIResolutionChangedSync();
|
|
|
|
|
2002-06-04 17:47:54 +00:00
|
|
|
/*
|
|
|
|
* Notify the pres context that a system color has changed
|
|
|
|
*/
|
2014-06-02 12:08:21 +00:00
|
|
|
void SysColorChanged();
|
2004-07-29 19:41:39 +00:00
|
|
|
|
|
|
|
/** Printing methods below should only be used for Medium() == print **/
|
2014-06-02 12:08:21 +00:00
|
|
|
void SetPrintSettings(nsIPrintSettings *aPrintSettings);
|
2004-07-29 19:41:39 +00:00
|
|
|
|
|
|
|
nsIPrintSettings* GetPrintSettings() { return mPrintSettings; }
|
2002-06-04 17:47:54 +00:00
|
|
|
|
2004-08-24 18:50:29 +00:00
|
|
|
/* Accessor for table of frame properties */
|
2010-03-29 01:46:55 +00:00
|
|
|
FramePropertyTable* PropertyTable() { return &mPropertyTable; }
|
2004-08-24 18:50:29 +00:00
|
|
|
|
2005-01-20 03:39:09 +00:00
|
|
|
/* Helper function that ensures that this prescontext is shown in its
|
|
|
|
docshell if it's the most recent prescontext for the docshell. Returns
|
|
|
|
whether the prescontext is now being shown.
|
|
|
|
*/
|
2014-06-02 12:08:21 +00:00
|
|
|
bool EnsureVisible();
|
2014-03-20 06:49:25 +00:00
|
|
|
|
2000-04-21 14:59:47 +00:00
|
|
|
#ifdef MOZ_REFLOW_PERF
|
2014-06-02 12:08:21 +00:00
|
|
|
void CountReflows(const char * aName,
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
nsIFrame * aFrame);
|
2000-04-21 14:59:47 +00:00
|
|
|
#endif
|
2003-06-19 18:16:53 +00:00
|
|
|
|
2016-05-09 18:26:35 +00:00
|
|
|
void RestyledElement() {
|
|
|
|
++mElementsRestyled;
|
|
|
|
}
|
2015-01-11 23:43:10 +00:00
|
|
|
void ConstructedFrame() {
|
|
|
|
++mFramesConstructed;
|
|
|
|
}
|
|
|
|
void ReflowedFrame() {
|
|
|
|
++mFramesReflowed;
|
|
|
|
}
|
|
|
|
|
2016-05-09 18:26:35 +00:00
|
|
|
uint64_t ElementsRestyledCount() {
|
|
|
|
return mElementsRestyled;
|
|
|
|
}
|
2015-01-11 23:43:10 +00:00
|
|
|
uint64_t FramesConstructedCount() {
|
|
|
|
return mFramesConstructed;
|
|
|
|
}
|
|
|
|
uint64_t FramesReflowedCount() {
|
|
|
|
return mFramesReflowed;
|
|
|
|
}
|
|
|
|
|
2016-11-16 09:11:00 +00:00
|
|
|
static nscoord GetBorderWidthForKeyword(unsigned int aBorderWidthKeyword)
|
|
|
|
{
|
|
|
|
// This table maps border-width enums 'thin', 'medium', 'thick'
|
|
|
|
// to actual nscoord values.
|
|
|
|
static const nscoord kBorderWidths[] = {
|
|
|
|
CSSPixelsToAppUnits(1),
|
|
|
|
CSSPixelsToAppUnits(3),
|
|
|
|
CSSPixelsToAppUnits(5)
|
|
|
|
};
|
|
|
|
MOZ_ASSERT(size_t(aBorderWidthKeyword) < mozilla::ArrayLength(kBorderWidths));
|
|
|
|
|
|
|
|
return kBorderWidths[aBorderWidthKeyword];
|
|
|
|
}
|
2004-11-26 18:40:58 +00:00
|
|
|
|
2013-11-25 04:59:56 +00:00
|
|
|
gfxTextPerfMetrics *GetTextPerfMetrics() { return mTextPerf; }
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsDynamic() { return (mType == eContext_PageLayout || mType == eContext_Galley); }
|
|
|
|
bool IsScreen() { return (mMedium == nsGkAtoms::screen ||
|
2006-04-01 01:19:28 +00:00
|
|
|
mType == eContext_PageLayout ||
|
2007-04-23 14:21:53 +00:00
|
|
|
mType == eContext_PrintPreview); }
|
2006-04-01 01:19:28 +00:00
|
|
|
|
2007-05-16 21:10:31 +00:00
|
|
|
// Is this presentation in a chrome docshell?
|
2014-02-07 03:08:49 +00:00
|
|
|
bool IsChrome() const { return mIsChrome; }
|
2014-03-07 04:02:59 +00:00
|
|
|
bool IsChromeOriginImage() const { return mIsChromeOriginImage; }
|
2014-02-07 03:08:49 +00:00
|
|
|
void UpdateIsChrome();
|
2007-05-16 21:10:31 +00:00
|
|
|
|
2007-10-08 23:11:01 +00:00
|
|
|
// Public API for native theme code to get style internals.
|
2016-08-25 22:14:44 +00:00
|
|
|
bool HasAuthorSpecifiedRules(const nsIFrame *aFrame,
|
|
|
|
uint32_t ruleTypeMask) const;
|
2007-10-08 23:11:01 +00:00
|
|
|
|
2007-11-16 03:46:42 +00:00
|
|
|
// Is it OK to let the page specify colors and backgrounds?
|
2011-09-29 06:19:26 +00:00
|
|
|
bool UseDocumentColors() const {
|
2014-11-27 19:06:14 +00:00
|
|
|
MOZ_ASSERT(mUseDocumentColors || !(IsChrome() || IsChromeOriginImage()),
|
|
|
|
"We should never have a chrome doc or image that can't use its colors.");
|
|
|
|
return mUseDocumentColors;
|
2007-11-16 03:46:42 +00:00
|
|
|
}
|
|
|
|
|
2013-07-22 15:51:38 +00:00
|
|
|
// Explicitly enable and disable paint flashing.
|
|
|
|
void SetPaintFlashing(bool aPaintFlashing) {
|
|
|
|
mPaintFlashing = aPaintFlashing;
|
|
|
|
mPaintFlashingInitialized = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This method should be used instead of directly accessing mPaintFlashing,
|
|
|
|
// as that value may be out of date when mPaintFlashingInitialized is false.
|
|
|
|
bool GetPaintFlashing() const;
|
|
|
|
|
2015-05-07 00:56:00 +00:00
|
|
|
bool SuppressingResizeReflow() const { return mSuppressResizeReflow; }
|
2014-03-20 06:49:25 +00:00
|
|
|
|
2015-06-27 01:39:54 +00:00
|
|
|
gfxUserFontSet* GetUserFontSet();
|
2008-01-29 04:10:59 +00:00
|
|
|
|
2008-12-08 16:08:05 +00:00
|
|
|
// Should be called whenever the set of fonts available in the user
|
|
|
|
// font set changes (e.g., because a new font loads, or because the
|
|
|
|
// user font set is changed and fonts become unavailable).
|
2015-03-06 08:44:23 +00:00
|
|
|
void UserFontSetUpdated(gfxUserFontEntry* aUpdatedFont = nullptr);
|
2008-12-08 16:08:05 +00:00
|
|
|
|
2014-12-22 16:35:54 +00:00
|
|
|
gfxMissingFontRecorder *MissingFontRecorder() { return mMissingFonts; }
|
|
|
|
void NotifyMissingFonts();
|
|
|
|
|
2014-06-12 01:12:00 +00:00
|
|
|
void FlushCounterStyles();
|
|
|
|
void RebuildCounterStyles(); // asynchronously
|
|
|
|
|
2009-12-31 15:56:33 +00:00
|
|
|
// Ensure that it is safe to hand out CSS rules outside the layout
|
|
|
|
// engine by ensuring that all CSS style sheets have unique inners
|
|
|
|
// and, if necessary, synchronously rebuilding all style data.
|
2013-11-11 08:00:33 +00:00
|
|
|
void EnsureSafeToHandOutCSSRules();
|
2009-12-31 15:56:33 +00:00
|
|
|
|
2012-08-29 05:48:44 +00:00
|
|
|
void NotifyInvalidation(uint32_t aFlags);
|
2012-08-22 15:56:38 +00:00
|
|
|
void NotifyInvalidation(const nsRect& aRect, uint32_t aFlags);
|
2012-08-29 05:47:18 +00:00
|
|
|
// aRect is in device pixels
|
|
|
|
void NotifyInvalidation(const nsIntRect& aRect, uint32_t aFlags);
|
2012-10-19 04:50:34 +00:00
|
|
|
// aFlags are nsIPresShell::PAINT_ flags
|
2016-04-13 20:59:15 +00:00
|
|
|
void NotifyDidPaintForSubtree(uint32_t aFlags, uint64_t aTransactionId = 0,
|
|
|
|
const mozilla::TimeStamp& aTimeStamp = mozilla::TimeStamp());
|
|
|
|
void FireDOMPaintEvent(nsInvalidateRequestList* aList, uint64_t aTransactionId);
|
2011-01-15 09:40:33 +00:00
|
|
|
|
2012-08-29 05:47:18 +00:00
|
|
|
// Callback for catching invalidations in ContainerLayers
|
|
|
|
// Passed to LayerProperties::ComputeDifference
|
|
|
|
static void NotifySubDocInvalidation(mozilla::layers::ContainerLayer* aContainer,
|
|
|
|
const nsIntRegion& aRegion);
|
2013-08-14 11:33:03 +00:00
|
|
|
void SetNotifySubDocInvalidationData(mozilla::layers::ContainerLayer* aContainer);
|
|
|
|
static void ClearNotifySubDocInvalidationData(mozilla::layers::ContainerLayer* aContainer);
|
2012-08-29 05:47:18 +00:00
|
|
|
bool IsDOMPaintEventPending();
|
2009-02-27 00:21:55 +00:00
|
|
|
void ClearMozAfterPaintEvents() {
|
2012-10-19 04:50:34 +00:00
|
|
|
mInvalidateRequestsSinceLastPaint.mRequests.Clear();
|
|
|
|
mUndeliveredInvalidateRequestsBeforeLastPaint.mRequests.Clear();
|
2016-09-23 10:20:33 +00:00
|
|
|
mAllInvalidated = false;
|
2009-02-27 00:21:55 +00:00
|
|
|
}
|
|
|
|
|
2015-09-17 02:08:20 +00:00
|
|
|
/**
|
|
|
|
* Returns the RestyleManager's restyle generation counter.
|
|
|
|
*/
|
|
|
|
uint64_t GetRestyleGeneration() const;
|
|
|
|
|
2014-10-02 02:32:09 +00:00
|
|
|
/**
|
|
|
|
* Returns whether there are any pending restyles or reflows.
|
|
|
|
*/
|
|
|
|
bool HasPendingRestyleOrReflow();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Informs the document's FontFaceSet that the refresh driver ticked,
|
|
|
|
* flushing style and layout.
|
|
|
|
*/
|
|
|
|
void NotifyFontFaceSetOnRefresh();
|
|
|
|
|
2009-04-21 23:53:52 +00:00
|
|
|
/**
|
|
|
|
* Notify the prescontext that the presshell is about to reflow a reflow root.
|
|
|
|
* The single argument indicates whether this reflow should be interruptible.
|
|
|
|
* If aInterruptible is false then CheckForInterrupt and HasPendingInterrupt
|
|
|
|
* will always return false. If aInterruptible is true then CheckForInterrupt
|
|
|
|
* will return true when a pending event is detected. This is for use by the
|
|
|
|
* presshell only. Reflow code wanting to prevent interrupts should use
|
|
|
|
* InterruptPreventer.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
void ReflowStarted(bool aInterruptible);
|
2009-04-21 23:53:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A class that can be used to temporarily disable reflow interruption.
|
|
|
|
*/
|
|
|
|
class InterruptPreventer;
|
|
|
|
friend class InterruptPreventer;
|
2013-04-12 03:20:45 +00:00
|
|
|
class MOZ_STACK_CLASS InterruptPreventer {
|
2009-04-21 23:53:52 +00:00
|
|
|
public:
|
2014-08-07 23:48:38 +00:00
|
|
|
explicit InterruptPreventer(nsPresContext* aCtx) :
|
2009-04-21 23:53:52 +00:00
|
|
|
mCtx(aCtx),
|
|
|
|
mInterruptsEnabled(aCtx->mInterruptsEnabled),
|
|
|
|
mHasPendingInterrupt(aCtx->mHasPendingInterrupt)
|
|
|
|
{
|
2011-10-17 14:59:28 +00:00
|
|
|
mCtx->mInterruptsEnabled = false;
|
|
|
|
mCtx->mHasPendingInterrupt = false;
|
2009-04-21 23:53:52 +00:00
|
|
|
}
|
|
|
|
~InterruptPreventer() {
|
|
|
|
mCtx->mInterruptsEnabled = mInterruptsEnabled;
|
|
|
|
mCtx->mHasPendingInterrupt = mHasPendingInterrupt;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsPresContext* mCtx;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mInterruptsEnabled;
|
|
|
|
bool mHasPendingInterrupt;
|
2009-04-21 23:53:52 +00:00
|
|
|
};
|
2014-03-20 06:49:25 +00:00
|
|
|
|
2009-04-21 23:53:52 +00:00
|
|
|
/**
|
|
|
|
* Check for interrupts. This may return true if a pending event is
|
2009-06-13 01:28:41 +00:00
|
|
|
* detected. Once it has returned true, it will keep returning true
|
|
|
|
* until ReflowStarted is called. In all cases where this returns true,
|
|
|
|
* the passed-in frame (which should be the frame whose reflow will be
|
|
|
|
* interrupted if true is returned) will be passed to
|
2009-04-21 23:53:52 +00:00
|
|
|
* nsIPresShell::FrameNeedsToContinueReflow.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool CheckForInterrupt(nsIFrame* aFrame);
|
2009-04-21 23:53:52 +00:00
|
|
|
/**
|
|
|
|
* Returns true if CheckForInterrupt has returned true since the last
|
2009-06-13 01:28:41 +00:00
|
|
|
* ReflowStarted call. Cannot itself trigger an interrupt check.
|
2009-04-21 23:53:52 +00:00
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool HasPendingInterrupt() { return mHasPendingInterrupt; }
|
2016-08-24 13:15:42 +00:00
|
|
|
/**
|
|
|
|
* Sets a flag that will trip a reflow interrupt. This only bypasses the
|
|
|
|
* interrupt timeout and the pending event check; other checks such as whether
|
|
|
|
* interrupts are enabled and the interrupt check skipping still take effect.
|
|
|
|
*/
|
|
|
|
void SetPendingInterruptFromTest() { mPendingInterruptFromTest = true; }
|
2009-04-21 23:53:52 +00:00
|
|
|
|
2009-12-24 21:20:05 +00:00
|
|
|
/**
|
|
|
|
* If we have a presshell, and if the given content's current
|
|
|
|
* document is the same as our presshell's document, return the
|
|
|
|
* content's primary frame. Otherwise, return null. Only use this
|
|
|
|
* if you care about which presshell the primary frame is in.
|
|
|
|
*/
|
2012-07-30 04:29:41 +00:00
|
|
|
nsIFrame* GetPrimaryFrameFor(nsIContent* aContent);
|
2009-12-24 21:20:05 +00:00
|
|
|
|
2010-07-15 21:08:08 +00:00
|
|
|
void NotifyDestroyingFrame(nsIFrame* aFrame)
|
|
|
|
{
|
|
|
|
PropertyTable()->DeleteAllFor(aFrame);
|
|
|
|
}
|
|
|
|
|
2013-06-23 12:03:39 +00:00
|
|
|
virtual size_t SizeOfExcludingThis(mozilla::MallocSizeOf aMallocSizeOf) const;
|
|
|
|
virtual size_t SizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf) const {
|
2012-01-25 08:52:51 +00:00
|
|
|
return aMallocSizeOf(this) + SizeOfExcludingThis(aMallocSizeOf);
|
2010-06-01 02:19:35 +00:00
|
|
|
}
|
|
|
|
|
2016-02-24 14:57:43 +00:00
|
|
|
bool IsRootContentDocument() const;
|
2010-09-11 18:24:50 +00:00
|
|
|
|
2016-11-10 21:00:45 +00:00
|
|
|
bool HadNonBlankPaint() const {
|
|
|
|
return mHadNonBlankPaint;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NotifyNonBlankPaint();
|
|
|
|
|
2012-09-06 04:58:44 +00:00
|
|
|
bool IsGlyph() const {
|
|
|
|
return mIsGlyph;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetIsGlyph(bool aValue) {
|
|
|
|
mIsGlyph = aValue;
|
|
|
|
}
|
|
|
|
|
2012-10-26 17:04:20 +00:00
|
|
|
bool UsesRootEMUnits() const {
|
|
|
|
return mUsesRootEMUnits;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetUsesRootEMUnits(bool aValue) {
|
|
|
|
mUsesRootEMUnits = aValue;
|
|
|
|
}
|
|
|
|
|
2015-03-06 08:44:14 +00:00
|
|
|
bool UsesExChUnits() const {
|
|
|
|
return mUsesExChUnits;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetUsesExChUnits(bool aValue) {
|
|
|
|
mUsesExChUnits = aValue;
|
|
|
|
}
|
|
|
|
|
2012-10-19 23:21:06 +00:00
|
|
|
bool UsesViewportUnits() const {
|
|
|
|
return mUsesViewportUnits;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetUsesViewportUnits(bool aValue) {
|
|
|
|
mUsesViewportUnits = aValue;
|
|
|
|
}
|
|
|
|
|
2012-12-11 21:12:43 +00:00
|
|
|
// true if there are OMTA transition updates for the current document which
|
|
|
|
// have been throttled, and therefore some style information may not be up
|
|
|
|
// to date
|
|
|
|
bool ExistThrottledUpdates() const {
|
|
|
|
return mExistThrottledUpdates;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetExistThrottledUpdates(bool aExistThrottledUpdates) {
|
|
|
|
mExistThrottledUpdates = aExistThrottledUpdates;
|
|
|
|
}
|
|
|
|
|
2013-11-07 13:40:23 +00:00
|
|
|
bool IsDeviceSizePageSize();
|
|
|
|
|
2014-03-10 22:41:17 +00:00
|
|
|
bool HasWarnedAboutPositionedTableParts() const {
|
|
|
|
return mHasWarnedAboutPositionedTableParts;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetHasWarnedAboutPositionedTableParts() {
|
|
|
|
mHasWarnedAboutPositionedTableParts = true;
|
|
|
|
}
|
|
|
|
|
2016-06-10 04:10:03 +00:00
|
|
|
bool HasWarnedAboutTooLargeDashedOrDottedRadius() const {
|
|
|
|
return mHasWarnedAboutTooLargeDashedOrDottedRadius;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetHasWarnedAboutTooLargeDashedOrDottedRadius() {
|
|
|
|
mHasWarnedAboutTooLargeDashedOrDottedRadius = true;
|
|
|
|
}
|
|
|
|
|
2003-06-19 18:16:53 +00:00
|
|
|
protected:
|
2006-09-12 04:36:03 +00:00
|
|
|
friend class nsRunnableMethod<nsPresContext>;
|
2014-06-02 12:08:21 +00:00
|
|
|
void ThemeChangedInternal();
|
|
|
|
void SysColorChangedInternal();
|
2016-04-07 09:01:30 +00:00
|
|
|
|
|
|
|
// update device context's resolution from the widget
|
2014-06-02 12:08:21 +00:00
|
|
|
void UIResolutionChangedInternal();
|
2012-10-16 19:41:20 +00:00
|
|
|
|
2016-04-07 09:01:30 +00:00
|
|
|
// if aScale > 0.0, use it as resolution scale factor to the device context
|
|
|
|
// (otherwise get it from the widget)
|
|
|
|
void UIResolutionChangedInternalScale(double aScale);
|
|
|
|
|
|
|
|
// aData here is a pointer to a double that holds the CSS to device-pixel
|
|
|
|
// scale factor from the parent, which will be applied to the subdocument's
|
|
|
|
// device context instead of retrieving a scale from the widget.
|
2014-06-02 12:08:21 +00:00
|
|
|
static bool
|
2012-10-16 19:41:20 +00:00
|
|
|
UIResolutionChangedSubdocumentCallback(nsIDocument* aDocument, void* aData);
|
2008-11-25 23:22:38 +00:00
|
|
|
|
2014-06-02 12:08:21 +00:00
|
|
|
void SetImgAnimations(nsIContent *aParent, uint16_t aMode);
|
|
|
|
void SetSMILAnimations(nsIDocument *aDoc, uint16_t aNewMode,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint16_t aOldMode);
|
2014-06-02 12:08:21 +00:00
|
|
|
void GetDocumentColorPreferences();
|
2005-08-23 23:52:16 +00:00
|
|
|
|
2014-06-02 12:08:21 +00:00
|
|
|
void PreferenceChanged(const char* aPrefName);
|
|
|
|
static void PrefChangedCallback(const char*, void*);
|
2004-07-29 19:41:39 +00:00
|
|
|
|
2014-06-02 12:08:21 +00:00
|
|
|
void UpdateAfterPreferencesChanged();
|
|
|
|
static void PrefChangedUpdateTimerCallback(nsITimer *aTimer, void *aClosure);
|
2005-08-23 23:52:16 +00:00
|
|
|
|
2014-06-02 12:08:21 +00:00
|
|
|
void GetUserPreferences();
|
2012-01-25 23:52:26 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Fetch the user's font preferences for the given aLanguage's
|
|
|
|
* langugage group.
|
|
|
|
*/
|
2016-03-31 19:47:20 +00:00
|
|
|
const LangGroupFontPrefs* GetFontPrefsForLang(nsIAtom *aLanguage) const
|
|
|
|
{
|
|
|
|
nsIAtom* lang = aLanguage ? aLanguage : mLanguage.get();
|
|
|
|
return StaticPresData::Get()->GetFontPrefsForLangHelper(lang, &mLangGroupFontPrefs);
|
2012-01-25 23:52:26 +00:00
|
|
|
}
|
2004-07-29 19:41:39 +00:00
|
|
|
|
2014-06-02 12:08:21 +00:00
|
|
|
void UpdateCharSet(const nsCString& aCharSet);
|
2004-07-29 19:41:39 +00:00
|
|
|
|
2012-01-11 20:58:44 +00:00
|
|
|
public:
|
|
|
|
void DoChangeCharSet(const nsCString& aCharSet);
|
|
|
|
|
2012-08-29 05:47:18 +00:00
|
|
|
/**
|
|
|
|
* Checks for MozAfterPaint listeners on the document
|
|
|
|
*/
|
|
|
|
bool MayHavePaintEventListener();
|
|
|
|
|
|
|
|
/**
|
2014-03-20 06:49:25 +00:00
|
|
|
* Checks for MozAfterPaint listeners on the document and
|
2012-08-29 05:47:18 +00:00
|
|
|
* any subdocuments, except for subdocuments that are non-top-level
|
|
|
|
* content documents.
|
|
|
|
*/
|
|
|
|
bool MayHavePaintEventListenerInSubDocument();
|
|
|
|
|
2014-09-25 05:45:36 +00:00
|
|
|
#ifdef RESTYLE_LOGGING
|
|
|
|
// Controls for whether debug information about restyling in this
|
|
|
|
// document should be output.
|
|
|
|
bool RestyleLoggingEnabled() const { return mRestyleLoggingEnabled; }
|
|
|
|
void StartRestyleLogging() { mRestyleLoggingEnabled = true; }
|
|
|
|
void StopRestyleLogging() { mRestyleLoggingEnabled = false; }
|
|
|
|
#endif
|
|
|
|
|
2015-01-09 08:55:18 +00:00
|
|
|
void InvalidatePaintedLayers();
|
|
|
|
|
2012-01-11 20:58:44 +00:00
|
|
|
protected:
|
2014-10-29 20:24:02 +00:00
|
|
|
// May be called multiple times (unlink, destructor)
|
|
|
|
void Destroy();
|
|
|
|
|
2011-04-11 20:57:29 +00:00
|
|
|
void AppUnitsPerDevPixelChanged();
|
|
|
|
|
2014-06-12 01:12:00 +00:00
|
|
|
void HandleRebuildCounterStyles() {
|
|
|
|
mPostedFlushCounterStyles = false;
|
|
|
|
FlushCounterStyles();
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool HavePendingInputEvent();
|
2009-04-21 23:53:52 +00:00
|
|
|
|
2008-12-29 15:07:36 +00:00
|
|
|
// Can't be inline because we can't include nsStyleSet.h.
|
2011-09-29 06:19:26 +00:00
|
|
|
bool HasCachedStyleData();
|
2008-12-29 15:07:36 +00:00
|
|
|
|
2015-08-04 00:13:07 +00:00
|
|
|
// Creates a one-shot timer with the given aCallback & aDelay.
|
|
|
|
// Returns a refcounted pointer to the timer (or nullptr on failure).
|
|
|
|
already_AddRefed<nsITimer> CreateTimer(nsTimerCallbackFunc aCallback,
|
|
|
|
uint32_t aDelay);
|
2015-07-30 21:24:51 +00:00
|
|
|
|
2003-06-19 18:16:53 +00:00
|
|
|
// IMPORTANT: The ownership implicit in the following member variables
|
|
|
|
// has been explicitly checked. If you add any members to this class,
|
|
|
|
// please make the ownership explicit (pinkerton, scc).
|
2012-07-30 04:29:33 +00:00
|
|
|
|
2004-07-29 19:41:39 +00:00
|
|
|
nsPresContextType mType;
|
2015-06-16 12:25:00 +00:00
|
|
|
// the nsPresShell owns a strong reference to the nsPresContext, and is responsible
|
|
|
|
// for nulling this pointer before it is destroyed
|
|
|
|
nsIPresShell* MOZ_NON_OWNING_REF mShell; // [WEAK]
|
2006-05-19 10:26:44 +00:00
|
|
|
nsCOMPtr<nsIDocument> mDocument;
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<nsDeviceContext> mDeviceContext; // [STRONG] could be weak, but
|
2012-07-30 04:36:32 +00:00
|
|
|
// better safe than sorry.
|
|
|
|
// Cannot reintroduce cycles
|
|
|
|
// since there is no dependency
|
|
|
|
// from gfx back to layout.
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<mozilla::EventStateManager> mEventManager;
|
|
|
|
RefPtr<nsRefreshDriver> mRefreshDriver;
|
2016-01-12 22:54:53 +00:00
|
|
|
RefPtr<mozilla::EffectCompositor> mEffectCompositor;
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<nsTransitionManager> mTransitionManager;
|
|
|
|
RefPtr<nsAnimationManager> mAnimationManager;
|
2016-02-24 07:01:12 +00:00
|
|
|
mozilla::RestyleManagerHandle::RefPtr mRestyleManager;
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<mozilla::CounterStyleManager> mCounterStyleManager;
|
2015-06-16 12:17:00 +00:00
|
|
|
nsIAtom* MOZ_UNSAFE_REF("always a static atom") mMedium; // initialized by subclass ctors
|
2013-07-17 15:39:19 +00:00
|
|
|
nsCOMPtr<nsIAtom> mMediaEmulated;
|
2003-06-19 18:16:53 +00:00
|
|
|
|
2015-06-16 12:30:00 +00:00
|
|
|
// This pointer is nulled out through SetLinkHandler() in the destructors of
|
|
|
|
// the classes which set it. (using SetLinkHandler() again).
|
|
|
|
nsILinkHandler* MOZ_NON_OWNING_REF mLinkHandler;
|
2010-02-24 17:57:44 +00:00
|
|
|
|
|
|
|
// Formerly mLangGroup; moving from charset-oriented langGroup to
|
|
|
|
// maintaining actual language settings everywhere (see bug 524107).
|
|
|
|
// This may in fact hold a langGroup such as x-western rather than
|
|
|
|
// a specific language, however (e.g, if it is inferred from the
|
|
|
|
// charset rather than explicitly specified as a lang attribute).
|
2012-07-30 04:29:23 +00:00
|
|
|
nsCOMPtr<nsIAtom> mLanguage;
|
2004-02-01 10:09:07 +00:00
|
|
|
|
2012-01-25 01:21:28 +00:00
|
|
|
public:
|
|
|
|
// The following are public member variables so that we can use them
|
|
|
|
// with mozilla::AutoToggle or mozilla::AutoRestore.
|
|
|
|
|
2012-05-21 05:18:27 +00:00
|
|
|
// Should we disable font size inflation because we're inside of
|
|
|
|
// shrink-wrapping calculations on an inflation container?
|
|
|
|
bool mInflationDisabledForShrinkWrap;
|
|
|
|
|
2012-01-25 01:21:28 +00:00
|
|
|
protected:
|
2012-04-07 17:36:49 +00:00
|
|
|
|
2013-11-20 19:18:25 +00:00
|
|
|
mozilla::WeakPtr<nsDocShell> mContainer;
|
2004-07-29 19:41:39 +00:00
|
|
|
|
2014-02-25 19:07:47 +00:00
|
|
|
// Base minimum font size, independent of the language-specific global preference. Defaults to 0
|
|
|
|
int32_t mBaseMinFontSize;
|
2005-08-13 11:54:22 +00:00
|
|
|
float mTextZoom; // Text zoom, defaults to 1.0
|
2007-08-07 20:38:35 +00:00
|
|
|
float mFullZoom; // Page zoom, defaults to 1.0
|
2016-08-25 11:15:19 +00:00
|
|
|
float mOverrideDPPX; // DPPX overrided, defaults to 0.0
|
2015-03-10 14:28:23 +00:00
|
|
|
gfxSize mLastFontInflationScreenSize;
|
2012-05-05 13:25:45 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t mCurAppUnitsPerDevPixel;
|
|
|
|
int32_t mAutoQualityMinFontSizePixelsPref;
|
2005-08-13 11:54:22 +00:00
|
|
|
|
2004-07-29 19:41:39 +00:00
|
|
|
nsCOMPtr<nsITheme> mTheme;
|
|
|
|
nsCOMPtr<nsILanguageAtomService> mLangService;
|
|
|
|
nsCOMPtr<nsIPrintSettings> mPrintSettings;
|
2005-08-23 23:52:16 +00:00
|
|
|
nsCOMPtr<nsITimer> mPrefChangedTimer;
|
2004-07-29 19:41:39 +00:00
|
|
|
|
2010-03-29 01:46:55 +00:00
|
|
|
FramePropertyTable mPropertyTable;
|
2004-08-24 18:50:29 +00:00
|
|
|
|
2012-10-19 04:50:34 +00:00
|
|
|
nsInvalidateRequestList mInvalidateRequestsSinceLastPaint;
|
|
|
|
nsInvalidateRequestList mUndeliveredInvalidateRequestsBeforeLastPaint;
|
2008-09-18 09:47:21 +00:00
|
|
|
|
2013-11-25 04:59:56 +00:00
|
|
|
// text performance metrics
|
|
|
|
nsAutoPtr<gfxTextPerfMetrics> mTextPerf;
|
|
|
|
|
2014-12-22 16:35:54 +00:00
|
|
|
nsAutoPtr<gfxMissingFontRecorder> mMissingFonts;
|
|
|
|
|
2004-02-01 10:09:07 +00:00
|
|
|
nsRect mVisibleArea;
|
2006-03-30 00:27:42 +00:00
|
|
|
nsSize mPageSize;
|
2007-02-07 07:46:44 +00:00
|
|
|
float mPageScale;
|
2007-02-13 22:36:59 +00:00
|
|
|
float mPPScale;
|
2004-02-01 10:09:07 +00:00
|
|
|
|
2004-01-31 22:41:40 +00:00
|
|
|
nscolor mDefaultColor;
|
|
|
|
nscolor mBackgroundColor;
|
|
|
|
|
|
|
|
nscolor mLinkColor;
|
|
|
|
nscolor mActiveLinkColor;
|
|
|
|
nscolor mVisitedLinkColor;
|
|
|
|
|
|
|
|
nscolor mFocusBackgroundColor;
|
|
|
|
nscolor mFocusTextColor;
|
|
|
|
|
2011-06-01 11:43:31 +00:00
|
|
|
nscolor mBodyTextColor;
|
|
|
|
|
2014-09-15 19:30:00 +00:00
|
|
|
ScrollbarStyles mViewportStyleScrollbar;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint8_t mFocusRingWidth;
|
2004-04-13 02:56:03 +00:00
|
|
|
|
2012-12-11 21:12:43 +00:00
|
|
|
bool mExistThrottledUpdates;
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint16_t mImageAnimationMode;
|
|
|
|
uint16_t mImageAnimationModePref;
|
2004-07-29 19:41:39 +00:00
|
|
|
|
2016-03-31 19:47:20 +00:00
|
|
|
// Most documents will only use one (or very few) language groups. Rather
|
|
|
|
// than have the overhead of a hash lookup, we simply look along what will
|
|
|
|
// typically be a very short (usually of length 1) linked list. There are 31
|
|
|
|
// language groups, so in the worst case scenario we'll need to traverse 31
|
|
|
|
// link items.
|
2012-01-25 23:52:26 +00:00
|
|
|
LangGroupFontPrefs mLangGroupFontPrefs;
|
2004-02-20 17:49:01 +00:00
|
|
|
|
2004-11-26 18:40:58 +00:00
|
|
|
nscoord mBorderWidthTable[3];
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t mInterruptChecksToSkip;
|
2009-04-21 23:53:52 +00:00
|
|
|
|
2015-01-11 23:43:10 +00:00
|
|
|
// Counters for tests and tools that want to detect frame construction
|
|
|
|
// or reflow.
|
2016-05-09 18:26:35 +00:00
|
|
|
uint64_t mElementsRestyled;
|
2015-01-11 23:43:10 +00:00
|
|
|
uint64_t mFramesConstructed;
|
|
|
|
uint64_t mFramesReflowed;
|
|
|
|
|
2009-10-02 18:05:32 +00:00
|
|
|
mozilla::TimeStamp mReflowStartTime;
|
|
|
|
|
2016-11-09 01:39:28 +00:00
|
|
|
// Time of various first interaction types, used to report time from
|
|
|
|
// first paint of the top level content pres shell to first interaction.
|
|
|
|
mozilla::TimeStamp mFirstPaintTime;
|
|
|
|
mozilla::TimeStamp mFirstClickTime;
|
|
|
|
mozilla::TimeStamp mFirstKeyTime;
|
|
|
|
mozilla::TimeStamp mFirstMouseMoveTime;
|
|
|
|
mozilla::TimeStamp mFirstScrollTime;
|
|
|
|
bool mInteractionTimeEnabled;
|
|
|
|
|
2012-12-11 21:12:43 +00:00
|
|
|
// last time we did a full style flush
|
|
|
|
mozilla::TimeStamp mLastStyleUpdateForAllAnimations;
|
|
|
|
|
2009-04-21 23:53:52 +00:00
|
|
|
unsigned mHasPendingInterrupt : 1;
|
2016-08-24 13:15:42 +00:00
|
|
|
unsigned mPendingInterruptFromTest : 1;
|
2009-04-21 23:53:52 +00:00
|
|
|
unsigned mInterruptsEnabled : 1;
|
2004-02-20 17:49:01 +00:00
|
|
|
unsigned mUseDocumentFonts : 1;
|
|
|
|
unsigned mUseDocumentColors : 1;
|
|
|
|
unsigned mUnderlineLinks : 1;
|
2011-01-25 00:23:08 +00:00
|
|
|
unsigned mSendAfterPaintToContent : 1;
|
2004-02-20 17:49:01 +00:00
|
|
|
unsigned mUseFocusColors : 1;
|
|
|
|
unsigned mFocusRingOnAnything : 1;
|
2008-10-08 23:28:31 +00:00
|
|
|
unsigned mFocusRingStyle : 1;
|
2004-02-20 17:49:01 +00:00
|
|
|
unsigned mDrawImageBackground : 1;
|
|
|
|
unsigned mDrawColorBackground : 1;
|
|
|
|
unsigned mNeverAnimate : 1;
|
|
|
|
unsigned mIsRenderingOnlySelection : 1;
|
2004-03-03 18:24:20 +00:00
|
|
|
unsigned mPaginated : 1;
|
|
|
|
unsigned mCanPaginatedScroll : 1;
|
2004-07-29 19:41:39 +00:00
|
|
|
unsigned mDoScaledTwips : 1;
|
2006-03-30 00:27:42 +00:00
|
|
|
unsigned mIsRootPaginatedDocument : 1;
|
2006-03-26 00:48:03 +00:00
|
|
|
unsigned mPrefBidiDirection : 1;
|
|
|
|
unsigned mPrefScrollbarSide : 2;
|
2006-09-12 04:36:03 +00:00
|
|
|
unsigned mPendingSysColorChanged : 1;
|
|
|
|
unsigned mPendingThemeChanged : 1;
|
2012-10-16 19:41:20 +00:00
|
|
|
unsigned mPendingUIResolutionChanged : 1;
|
2008-07-26 16:14:48 +00:00
|
|
|
unsigned mPendingMediaFeatureValuesChanged : 1;
|
2008-02-08 19:52:46 +00:00
|
|
|
unsigned mPrefChangePendingNeedsReflow : 1;
|
2013-07-17 15:39:19 +00:00
|
|
|
unsigned mIsEmulatingMedia : 1;
|
2016-09-23 10:20:33 +00:00
|
|
|
// True if the requests in mInvalidateRequestsSinceLastPaint cover the
|
|
|
|
// entire viewport
|
|
|
|
unsigned mAllInvalidated : 1;
|
2008-11-25 23:22:38 +00:00
|
|
|
|
2012-09-06 04:58:44 +00:00
|
|
|
// Are we currently drawing an SVG glyph?
|
|
|
|
unsigned mIsGlyph : 1;
|
|
|
|
|
2012-10-26 17:04:20 +00:00
|
|
|
// Does the associated document use root-em (rem) units?
|
|
|
|
unsigned mUsesRootEMUnits : 1;
|
2015-03-06 08:44:14 +00:00
|
|
|
// Does the associated document use ex or ch units?
|
|
|
|
unsigned mUsesExChUnits : 1;
|
2012-10-26 17:04:20 +00:00
|
|
|
// Does the associated document use viewport units (vw/vh/vmin/vmax)?
|
2012-10-19 23:21:06 +00:00
|
|
|
unsigned mUsesViewportUnits : 1;
|
|
|
|
|
|
|
|
// Has there been a change to the viewport's dimensions?
|
|
|
|
unsigned mPendingViewportChange : 1;
|
|
|
|
|
2014-06-12 01:12:00 +00:00
|
|
|
// Is the current mCounterStyleManager valid?
|
|
|
|
unsigned mCounterStylesDirty : 1;
|
|
|
|
// Do we currently have an event posted to call FlushCounterStyles?
|
|
|
|
unsigned mPostedFlushCounterStyles: 1;
|
|
|
|
|
2010-05-13 12:19:50 +00:00
|
|
|
// resize reflow is suppressed when the only change has been to zoom
|
2008-01-29 04:10:59 +00:00
|
|
|
// the document rather than to change the document's dimensions
|
2015-05-07 00:56:00 +00:00
|
|
|
unsigned mSuppressResizeReflow : 1;
|
2008-01-29 04:10:59 +00:00
|
|
|
|
2004-02-20 17:49:01 +00:00
|
|
|
unsigned mIsVisual : 1;
|
2004-07-29 19:41:39 +00:00
|
|
|
|
2011-01-15 09:40:33 +00:00
|
|
|
unsigned mFireAfterPaintEvents : 1;
|
2010-07-15 21:08:08 +00:00
|
|
|
|
2014-02-07 03:08:49 +00:00
|
|
|
unsigned mIsChrome : 1;
|
2014-03-07 04:02:59 +00:00
|
|
|
unsigned mIsChromeOriginImage : 1;
|
2010-04-10 18:03:40 +00:00
|
|
|
|
2013-07-22 15:51:38 +00:00
|
|
|
// Should we paint flash in this context? Do not use this variable directly.
|
|
|
|
// Use GetPaintFlashing() method instead.
|
|
|
|
mutable unsigned mPaintFlashing : 1;
|
|
|
|
mutable unsigned mPaintFlashingInitialized : 1;
|
|
|
|
|
2014-03-10 22:41:17 +00:00
|
|
|
unsigned mHasWarnedAboutPositionedTableParts : 1;
|
|
|
|
|
2016-06-10 04:10:03 +00:00
|
|
|
unsigned mHasWarnedAboutTooLargeDashedOrDottedRadius : 1;
|
|
|
|
|
2015-06-26 03:49:58 +00:00
|
|
|
// Have we added quirk.css to the style set?
|
|
|
|
unsigned mQuirkSheetAdded : 1;
|
|
|
|
|
2015-07-31 03:47:26 +00:00
|
|
|
// Is there a pref update to process once we have a container?
|
|
|
|
unsigned mNeedsPrefUpdate : 1;
|
|
|
|
|
2016-11-10 21:00:45 +00:00
|
|
|
// Has NotifyNonBlankPaint been called on this PresContext?
|
|
|
|
unsigned mHadNonBlankPaint : 1;
|
|
|
|
|
2014-09-25 05:45:36 +00:00
|
|
|
#ifdef RESTYLE_LOGGING
|
|
|
|
// Should we output debug information about restyling for this document?
|
|
|
|
bool mRestyleLoggingEnabled;
|
|
|
|
#endif
|
|
|
|
|
2004-07-29 19:41:39 +00:00
|
|
|
#ifdef DEBUG
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mInitialized;
|
2004-07-29 19:41:39 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2005-07-30 20:57:07 +00:00
|
|
|
protected:
|
2004-07-29 19:41:39 +00:00
|
|
|
|
2014-06-02 12:08:24 +00:00
|
|
|
virtual ~nsPresContext();
|
2004-07-29 19:41:39 +00:00
|
|
|
|
2012-06-06 07:36:38 +00:00
|
|
|
nscolor MakeColorPref(const nsString& aColor);
|
|
|
|
|
2013-07-09 17:30:58 +00:00
|
|
|
void LastRelease();
|
|
|
|
|
2006-04-18 05:44:02 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
private:
|
|
|
|
friend struct nsAutoLayoutPhase;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t mLayoutPhaseCount[eLayoutPhase_COUNT];
|
2006-04-18 05:44:02 +00:00
|
|
|
public:
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t LayoutPhaseCount(nsLayoutPhase aPhase) {
|
2006-04-18 05:44:02 +00:00
|
|
|
return mLayoutPhaseCount[aPhase];
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
};
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class nsRootPresContext final : public nsPresContext {
|
2009-07-22 00:44:54 +00:00
|
|
|
public:
|
2014-06-02 12:08:24 +00:00
|
|
|
nsRootPresContext(nsIDocument* aDocument, nsPresContextType aType);
|
2009-07-22 00:45:00 +00:00
|
|
|
virtual ~nsRootPresContext();
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual void Detach() override;
|
2009-07-22 00:45:00 +00:00
|
|
|
|
2011-01-15 09:40:33 +00:00
|
|
|
/**
|
|
|
|
* Ensure that NotifyDidPaintForSubtree is eventually called on this
|
|
|
|
* object after a timeout.
|
|
|
|
*/
|
|
|
|
void EnsureEventualDidPaintEvent();
|
|
|
|
|
|
|
|
void CancelDidPaintTimer()
|
|
|
|
{
|
|
|
|
if (mNotifyDidPaintTimer) {
|
|
|
|
mNotifyDidPaintTimer->Cancel();
|
2012-07-30 14:20:58 +00:00
|
|
|
mNotifyDidPaintTimer = nullptr;
|
2011-01-15 09:40:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-22 00:45:00 +00:00
|
|
|
/**
|
|
|
|
* Registers a plugin to receive geometry updates (position and clip
|
|
|
|
* region) so it can update its widget.
|
|
|
|
* Callers must call UnregisterPluginForGeometryUpdates before
|
|
|
|
* the aPlugin frame is destroyed.
|
|
|
|
*/
|
2012-08-14 04:06:42 +00:00
|
|
|
void RegisterPluginForGeometryUpdates(nsIContent* aPlugin);
|
2009-07-22 00:45:00 +00:00
|
|
|
/**
|
|
|
|
* Stops a plugin receiving geometry updates (position and clip
|
|
|
|
* region). If the plugin was not already registered, this does
|
|
|
|
* nothing.
|
|
|
|
*/
|
2012-08-14 04:06:42 +00:00
|
|
|
void UnregisterPluginForGeometryUpdates(nsIContent* aPlugin);
|
2009-07-22 00:45:00 +00:00
|
|
|
|
2012-10-06 13:03:23 +00:00
|
|
|
bool NeedToComputePluginGeometryUpdates()
|
|
|
|
{
|
|
|
|
return mRegisteredPlugins.Count() > 0;
|
|
|
|
}
|
2009-07-22 00:45:00 +00:00
|
|
|
/**
|
2012-10-06 13:03:23 +00:00
|
|
|
* Compute geometry updates for each plugin given that aList is the display
|
|
|
|
* list for aFrame. The updates are not yet applied;
|
|
|
|
* ApplyPluginGeometryUpdates is responsible for that. In the meantime they
|
2014-09-24 04:34:00 +00:00
|
|
|
* are stored on each nsPluginFrame.
|
2012-10-06 13:03:23 +00:00
|
|
|
* This needs to be called even when aFrame is a popup, since although
|
|
|
|
* windowed plugins aren't allowed in popups, windowless plugins are
|
|
|
|
* and ComputePluginGeometryUpdates needs to be called for them.
|
2009-07-22 00:45:00 +00:00
|
|
|
*/
|
2012-10-06 13:03:23 +00:00
|
|
|
void ComputePluginGeometryUpdates(nsIFrame* aFrame,
|
|
|
|
nsDisplayListBuilder* aBuilder,
|
|
|
|
nsDisplayList* aList);
|
2009-07-22 00:45:00 +00:00
|
|
|
|
2009-07-22 00:45:02 +00:00
|
|
|
/**
|
2012-10-06 13:03:23 +00:00
|
|
|
* Apply the stored plugin geometry updates. This should normally be called
|
|
|
|
* in DidPaint so the plugins are moved/clipped immediately after we've
|
|
|
|
* updated our window, so they look in sync with our window.
|
2009-07-22 00:45:02 +00:00
|
|
|
*/
|
2012-10-06 13:03:23 +00:00
|
|
|
void ApplyPluginGeometryUpdates();
|
2009-07-22 00:45:02 +00:00
|
|
|
|
2015-01-29 19:41:54 +00:00
|
|
|
/**
|
|
|
|
* Transfer stored plugin geometry updates to the compositor. Called during
|
|
|
|
* reflow, data is shipped over with layer updates. e10s specific.
|
|
|
|
*/
|
|
|
|
void CollectPluginGeometryUpdates(mozilla::layers::LayerManager* aLayerManager);
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual bool IsRoot() override { return true; }
|
2010-01-26 13:10:12 +00:00
|
|
|
|
2010-09-17 19:09:08 +00:00
|
|
|
/**
|
|
|
|
* Increment DOM-modification generation counter to indicate that
|
|
|
|
* the DOM has changed in a way that might lead to style changes/
|
|
|
|
* reflows/frame creation and destruction.
|
|
|
|
*/
|
|
|
|
void IncrementDOMGeneration() { mDOMGeneration++; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the current DOM generation counter.
|
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t GetDOMGeneration() { return mDOMGeneration; }
|
2010-09-17 19:09:08 +00:00
|
|
|
|
2011-10-26 04:14:31 +00:00
|
|
|
/**
|
|
|
|
* Add a runnable that will get called before the next paint. They will get
|
|
|
|
* run eventually even if painting doesn't happen. They might run well before
|
|
|
|
* painting happens.
|
|
|
|
*/
|
|
|
|
void AddWillPaintObserver(nsIRunnable* aRunnable);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Run all runnables that need to get called before the next paint.
|
|
|
|
*/
|
|
|
|
void FlushWillPaintObservers();
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual size_t SizeOfExcludingThis(mozilla::MallocSizeOf aMallocSizeOf) const override;
|
2011-12-09 05:01:52 +00:00
|
|
|
|
2011-10-26 04:14:31 +00:00
|
|
|
protected:
|
2012-10-06 13:03:23 +00:00
|
|
|
/**
|
|
|
|
* Start a timer to ensure we eventually run ApplyPluginGeometryUpdates.
|
|
|
|
*/
|
|
|
|
void InitApplyPluginGeometryTimer();
|
|
|
|
/**
|
|
|
|
* Cancel the timer that ensures we eventually run ApplyPluginGeometryUpdates.
|
|
|
|
*/
|
|
|
|
void CancelApplyPluginGeometryTimer();
|
|
|
|
|
2016-04-26 00:23:21 +00:00
|
|
|
class RunWillPaintObservers : public mozilla::Runnable {
|
2011-10-26 04:14:31 +00:00
|
|
|
public:
|
2014-08-07 23:48:38 +00:00
|
|
|
explicit RunWillPaintObservers(nsRootPresContext* aPresContext) : mPresContext(aPresContext) {}
|
2012-07-30 14:20:58 +00:00
|
|
|
void Revoke() { mPresContext = nullptr; }
|
2015-03-21 16:28:04 +00:00
|
|
|
NS_IMETHOD Run() override
|
2011-10-26 04:14:31 +00:00
|
|
|
{
|
|
|
|
if (mPresContext) {
|
|
|
|
mPresContext->FlushWillPaintObservers();
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2015-06-17 09:48:00 +00:00
|
|
|
// The lifetime of this reference is handled by an nsRevocableEventPtr
|
|
|
|
nsRootPresContext* MOZ_NON_OWNING_REF mPresContext;
|
2011-10-26 04:14:31 +00:00
|
|
|
};
|
|
|
|
|
2011-12-24 03:52:26 +00:00
|
|
|
friend class nsPresContext;
|
|
|
|
|
2011-01-15 09:40:33 +00:00
|
|
|
nsCOMPtr<nsITimer> mNotifyDidPaintTimer;
|
2012-10-06 13:03:23 +00:00
|
|
|
nsCOMPtr<nsITimer> mApplyPluginGeometryTimer;
|
2012-08-14 04:06:42 +00:00
|
|
|
nsTHashtable<nsRefPtrHashKey<nsIContent> > mRegisteredPlugins;
|
2011-10-26 04:14:31 +00:00
|
|
|
nsTArray<nsCOMPtr<nsIRunnable> > mWillPaintObservers;
|
|
|
|
nsRevocableEventPtr<RunWillPaintObservers> mWillPaintFallbackEvent;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t mDOMGeneration;
|
2009-07-22 00:44:54 +00:00
|
|
|
};
|
|
|
|
|
2000-04-21 14:59:47 +00:00
|
|
|
#ifdef MOZ_REFLOW_PERF
|
2001-03-13 01:47:22 +00:00
|
|
|
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
#define DO_GLOBAL_REFLOW_COUNT(_name) \
|
2014-03-20 06:49:25 +00:00
|
|
|
aPresContext->CountReflows((_name), (nsIFrame*)this);
|
2000-04-21 14:59:47 +00:00
|
|
|
#else
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
#define DO_GLOBAL_REFLOW_COUNT(_name)
|
2000-04-21 14:59:47 +00:00
|
|
|
#endif // MOZ_REFLOW_PERF
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
#endif /* nsPresContext_h___ */
|