diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /layout/base/nsFrameTraversal.cpp | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/base/nsFrameTraversal.cpp')
-rw-r--r-- | layout/base/nsFrameTraversal.cpp | 541 |
1 files changed, 541 insertions, 0 deletions
diff --git a/layout/base/nsFrameTraversal.cpp b/layout/base/nsFrameTraversal.cpp new file mode 100644 index 000000000..40fb5ff30 --- /dev/null +++ b/layout/base/nsFrameTraversal.cpp @@ -0,0 +1,541 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* 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/. */ +#include "nsCOMPtr.h" +#include "nsGkAtoms.h" + +#include "nsFrameTraversal.h" +#include "nsFrameList.h" +#include "nsPlaceholderFrame.h" +#include "nsContainerFrame.h" + + +class nsFrameIterator : public nsIFrameEnumerator +{ +public: + typedef nsIFrame::ChildListID ChildListID; + + NS_DECL_ISUPPORTS + + virtual void First() override; + virtual void Next() override; + virtual nsIFrame* CurrentItem() override; + virtual bool IsDone() override; + + virtual void Last() override; + virtual void Prev() override; + + nsFrameIterator(nsPresContext* aPresContext, nsIFrame *aStart, + nsIteratorType aType, bool aLockScroll, bool aFollowOOFs, + bool aSkipPopupChecks); + +protected: + virtual ~nsFrameIterator() {} + + void setCurrent(nsIFrame *aFrame){mCurrent = aFrame;} + nsIFrame *getCurrent(){return mCurrent;} + nsIFrame *getStart(){return mStart;} + nsIFrame *getLast(){return mLast;} + void setLast(nsIFrame *aFrame){mLast = aFrame;} + int8_t getOffEdge(){return mOffEdge;} + void setOffEdge(int8_t aOffEdge){mOffEdge = aOffEdge;} + + /* + Our own versions of the standard frame tree navigation + methods, which, if the iterator is following out-of-flows, + apply the following rules for placeholder frames: + + - If a frame HAS a placeholder frame, getting its parent + gets the placeholder's parent. + + - If a frame's first child or next/prev sibling IS a + placeholder frame, then we instead return the real frame. + + - If a frame HAS a placeholder frame, getting its next/prev + sibling gets the placeholder frame's next/prev sibling. + + These are all applied recursively to support multiple levels of + placeholders. + */ + + nsIFrame* GetParentFrame(nsIFrame* aFrame); + // like GetParentFrame but returns null once a popup frame is reached + nsIFrame* GetParentFrameNotPopup(nsIFrame* aFrame); + + nsIFrame* GetFirstChild(nsIFrame* aFrame); + nsIFrame* GetLastChild(nsIFrame* aFrame); + + nsIFrame* GetNextSibling(nsIFrame* aFrame); + nsIFrame* GetPrevSibling(nsIFrame* aFrame); + + /* + These methods are overridden by the bidi visual iterator to have the + semantics of "get first child in visual order", "get last child in visual + order", "get next sibling in visual order" and "get previous sibling in visual + order". + */ + + virtual nsIFrame* GetFirstChildInner(nsIFrame* aFrame); + virtual nsIFrame* GetLastChildInner(nsIFrame* aFrame); + + virtual nsIFrame* GetNextSiblingInner(nsIFrame* aFrame); + virtual nsIFrame* GetPrevSiblingInner(nsIFrame* aFrame); + + nsIFrame* GetPlaceholderFrame(nsIFrame* aFrame); + bool IsPopupFrame(nsIFrame* aFrame); + + nsPresContext* const mPresContext; + const bool mLockScroll; + const bool mFollowOOFs; + const bool mSkipPopupChecks; + const nsIteratorType mType; + +private: + nsIFrame* const mStart; + nsIFrame* mCurrent; + nsIFrame* mLast; //the last one that was in current; + int8_t mOffEdge; //0= no -1 to far prev, 1 to far next; +}; + + + +// Bidi visual iterator +class nsVisualIterator: public nsFrameIterator +{ +public: + nsVisualIterator(nsPresContext* aPresContext, nsIFrame *aStart, + nsIteratorType aType, bool aLockScroll, + bool aFollowOOFs, bool aSkipPopupChecks) : + nsFrameIterator(aPresContext, aStart, aType, aLockScroll, aFollowOOFs, aSkipPopupChecks) {} + +protected: + nsIFrame* GetFirstChildInner(nsIFrame* aFrame) override; + nsIFrame* GetLastChildInner(nsIFrame* aFrame) override; + + nsIFrame* GetNextSiblingInner(nsIFrame* aFrame) override; + nsIFrame* GetPrevSiblingInner(nsIFrame* aFrame) override; +}; + +/************IMPLEMENTATIONS**************/ + +nsresult +NS_CreateFrameTraversal(nsIFrameTraversal** aResult) +{ + NS_ENSURE_ARG_POINTER(aResult); + + nsCOMPtr<nsIFrameTraversal> t = new nsFrameTraversal(); + t.forget(aResult); + + return NS_OK; +} + +nsresult +NS_NewFrameTraversal(nsIFrameEnumerator **aEnumerator, + nsPresContext* aPresContext, + nsIFrame *aStart, + nsIteratorType aType, + bool aVisual, + bool aLockInScrollView, + bool aFollowOOFs, + bool aSkipPopupChecks) +{ + if (!aEnumerator || !aStart) + return NS_ERROR_NULL_POINTER; + + if (aFollowOOFs) { + aStart = nsPlaceholderFrame::GetRealFrameFor(aStart); + } + + nsCOMPtr<nsIFrameEnumerator> trav; + if (aVisual) { + trav = new nsVisualIterator(aPresContext, aStart, aType, + aLockInScrollView, aFollowOOFs, aSkipPopupChecks); + } else { + trav = new nsFrameIterator(aPresContext, aStart, aType, + aLockInScrollView, aFollowOOFs, aSkipPopupChecks); + } + trav.forget(aEnumerator); + return NS_OK; +} + + +nsFrameTraversal::nsFrameTraversal() +{ +} + +nsFrameTraversal::~nsFrameTraversal() +{ +} + +NS_IMPL_ISUPPORTS(nsFrameTraversal,nsIFrameTraversal) + +NS_IMETHODIMP + nsFrameTraversal::NewFrameTraversal(nsIFrameEnumerator **aEnumerator, + nsPresContext* aPresContext, + nsIFrame *aStart, + int32_t aType, + bool aVisual, + bool aLockInScrollView, + bool aFollowOOFs, + bool aSkipPopupChecks) +{ + return NS_NewFrameTraversal(aEnumerator, aPresContext, aStart, + static_cast<nsIteratorType>(aType), + aVisual, aLockInScrollView, aFollowOOFs, aSkipPopupChecks); +} + +// nsFrameIterator implementation + +NS_IMPL_ISUPPORTS(nsFrameIterator, nsIFrameEnumerator) + +nsFrameIterator::nsFrameIterator(nsPresContext* aPresContext, nsIFrame *aStart, + nsIteratorType aType, bool aLockInScrollView, + bool aFollowOOFs, bool aSkipPopupChecks) +: mPresContext(aPresContext), + mLockScroll(aLockInScrollView), + mFollowOOFs(aFollowOOFs), + mSkipPopupChecks(aSkipPopupChecks), + mType(aType), + mStart(aStart), + mCurrent(aStart), + mLast(aStart), + mOffEdge(0) +{ + MOZ_ASSERT(!aFollowOOFs || aStart->GetType() != nsGkAtoms::placeholderFrame, + "Caller should have resolved placeholder frame"); +} + + + +nsIFrame* +nsFrameIterator::CurrentItem() +{ + if (mOffEdge) + return nullptr; + + return mCurrent; +} + + + +bool +nsFrameIterator::IsDone() +{ + return mOffEdge != 0; +} + +void +nsFrameIterator::First() +{ + mCurrent = mStart; +} + +static bool +IsRootFrame(nsIFrame* aFrame) +{ + nsIAtom* atom = aFrame->GetType(); + return (atom == nsGkAtoms::canvasFrame) || + (atom == nsGkAtoms::rootFrame); +} + +void +nsFrameIterator::Last() +{ + nsIFrame* result; + nsIFrame* parent = getCurrent(); + // If the current frame is a popup, don't move farther up the tree. + // Otherwise, get the nearest root frame or popup. + if (mSkipPopupChecks || parent->GetType() != nsGkAtoms::menuPopupFrame) { + while (!IsRootFrame(parent) && (result = GetParentFrameNotPopup(parent))) + parent = result; + } + + while ((result = GetLastChild(parent))) { + parent = result; + } + + setCurrent(parent); + if (!parent) + setOffEdge(1); +} + +void +nsFrameIterator::Next() +{ + // recursive-oid method to get next frame + nsIFrame *result = nullptr; + nsIFrame *parent = getCurrent(); + if (!parent) + parent = getLast(); + + if (mType == eLeaf) { + // Drill down to first leaf + while ((result = GetFirstChild(parent))) { + parent = result; + } + } else if (mType == ePreOrder) { + result = GetFirstChild(parent); + if (result) + parent = result; + } + + if (parent != getCurrent()) { + result = parent; + } else { + while (parent) { + result = GetNextSibling(parent); + if (result) { + if (mType != ePreOrder) { + parent = result; + while ((result = GetFirstChild(parent))) { + parent = result; + } + result = parent; + } + break; + } + else { + result = GetParentFrameNotPopup(parent); + if (!result || IsRootFrame(result) || + (mLockScroll && result->GetType() == nsGkAtoms::scrollFrame)) { + result = nullptr; + break; + } + if (mType == ePostOrder) + break; + parent = result; + } + } + } + + setCurrent(result); + if (!result) { + setOffEdge(1); + setLast(parent); + } +} + +void +nsFrameIterator::Prev() +{ + // recursive-oid method to get prev frame + nsIFrame *result = nullptr; + nsIFrame *parent = getCurrent(); + if (!parent) + parent = getLast(); + + if (mType == eLeaf) { + // Drill down to last leaf + while ((result = GetLastChild(parent))) { + parent = result; + } + } else if (mType == ePostOrder) { + result = GetLastChild(parent); + if (result) + parent = result; + } + + if (parent != getCurrent()) { + result = parent; + } else { + while (parent) { + result = GetPrevSibling(parent); + if (result) { + if (mType != ePostOrder) { + parent = result; + while ((result = GetLastChild(parent))) { + parent = result; + } + result = parent; + } + break; + } else { + result = GetParentFrameNotPopup(parent); + if (!result || IsRootFrame(result) || + (mLockScroll && result->GetType() == nsGkAtoms::scrollFrame)) { + result = nullptr; + break; + } + if (mType == ePreOrder) + break; + parent = result; + } + } + } + + setCurrent(result); + if (!result) { + setOffEdge(-1); + setLast(parent); + } +} + +nsIFrame* +nsFrameIterator::GetParentFrame(nsIFrame* aFrame) +{ + if (mFollowOOFs) + aFrame = GetPlaceholderFrame(aFrame); + if (aFrame) + return aFrame->GetParent(); + + return nullptr; +} + +nsIFrame* +nsFrameIterator::GetParentFrameNotPopup(nsIFrame* aFrame) +{ + if (mFollowOOFs) + aFrame = GetPlaceholderFrame(aFrame); + if (aFrame) { + nsIFrame* parent = aFrame->GetParent(); + if (!IsPopupFrame(parent)) + return parent; + } + + return nullptr; +} + +nsIFrame* +nsFrameIterator::GetFirstChild(nsIFrame* aFrame) +{ + nsIFrame* result = GetFirstChildInner(aFrame); + if (mLockScroll && result && result->GetType() == nsGkAtoms::scrollFrame) + return nullptr; + if (result && mFollowOOFs) { + result = nsPlaceholderFrame::GetRealFrameFor(result); + + if (IsPopupFrame(result)) + result = GetNextSibling(result); + } + return result; +} + +nsIFrame* +nsFrameIterator::GetLastChild(nsIFrame* aFrame) +{ + nsIFrame* result = GetLastChildInner(aFrame); + if (mLockScroll && result && result->GetType() == nsGkAtoms::scrollFrame) + return nullptr; + if (result && mFollowOOFs) { + result = nsPlaceholderFrame::GetRealFrameFor(result); + + if (IsPopupFrame(result)) + result = GetPrevSibling(result); + } + return result; +} + +nsIFrame* +nsFrameIterator::GetNextSibling(nsIFrame* aFrame) +{ + nsIFrame* result = nullptr; + if (mFollowOOFs) + aFrame = GetPlaceholderFrame(aFrame); + if (aFrame) { + result = GetNextSiblingInner(aFrame); + if (result && mFollowOOFs) + result = nsPlaceholderFrame::GetRealFrameFor(result); + } + + if (mFollowOOFs && IsPopupFrame(result)) + result = GetNextSibling(result); + + return result; +} + +nsIFrame* +nsFrameIterator::GetPrevSibling(nsIFrame* aFrame) +{ + nsIFrame* result = nullptr; + if (mFollowOOFs) + aFrame = GetPlaceholderFrame(aFrame); + if (aFrame) { + result = GetPrevSiblingInner(aFrame); + if (result && mFollowOOFs) + result = nsPlaceholderFrame::GetRealFrameFor(result); + } + + if (mFollowOOFs && IsPopupFrame(result)) + result = GetPrevSibling(result); + + return result; +} + +nsIFrame* +nsFrameIterator::GetFirstChildInner(nsIFrame* aFrame) { + return aFrame->PrincipalChildList().FirstChild(); +} + +nsIFrame* +nsFrameIterator::GetLastChildInner(nsIFrame* aFrame) { + return aFrame->PrincipalChildList().LastChild(); +} + +nsIFrame* +nsFrameIterator::GetNextSiblingInner(nsIFrame* aFrame) { + return aFrame->GetNextSibling(); +} + +nsIFrame* +nsFrameIterator::GetPrevSiblingInner(nsIFrame* aFrame) { + return aFrame->GetPrevSibling(); +} + + +nsIFrame* +nsFrameIterator::GetPlaceholderFrame(nsIFrame* aFrame) +{ + nsIFrame* result = aFrame; + nsIPresShell *presShell = mPresContext->GetPresShell(); + if (presShell) { + nsIFrame* placeholder = presShell->GetPlaceholderFrameFor(aFrame); + if (placeholder) + result = placeholder; + } + + if (result != aFrame) + result = GetPlaceholderFrame(result); + + return result; +} + +bool +nsFrameIterator::IsPopupFrame(nsIFrame* aFrame) +{ + // If skipping popup checks, pretend this isn't one. + if (mSkipPopupChecks) { + return false; + } + + return (aFrame && + aFrame->StyleDisplay()->mDisplay == StyleDisplay::Popup); +} + +// nsVisualIterator implementation + +nsIFrame* +nsVisualIterator::GetFirstChildInner(nsIFrame* aFrame) { + return aFrame->PrincipalChildList().GetNextVisualFor(nullptr); +} + +nsIFrame* +nsVisualIterator::GetLastChildInner(nsIFrame* aFrame) { + return aFrame->PrincipalChildList().GetPrevVisualFor(nullptr); +} + +nsIFrame* +nsVisualIterator::GetNextSiblingInner(nsIFrame* aFrame) { + nsIFrame* parent = GetParentFrame(aFrame); + if (!parent) + return nullptr; + return parent->PrincipalChildList().GetNextVisualFor(aFrame); +} + +nsIFrame* +nsVisualIterator::GetPrevSiblingInner(nsIFrame* aFrame) { + nsIFrame* parent = GetParentFrame(aFrame); + if (!parent) + return nullptr; + return parent->PrincipalChildList().GetPrevVisualFor(aFrame); +} |