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/. */
|
2012-10-15 18:35:50 +00:00
|
|
|
#include "nsCOMPtr.h"
|
2012-08-06 03:00:55 +00:00
|
|
|
#include "nsGkAtoms.h"
|
2012-10-15 18:35:50 +00:00
|
|
|
|
|
|
|
#include "nsFrameTraversal.h"
|
|
|
|
#include "nsFrameList.h"
|
2001-09-05 22:52:18 +00:00
|
|
|
#include "nsPlaceholderFrame.h"
|
2014-05-24 22:20:39 +00:00
|
|
|
#include "nsContainerFrame.h"
|
1999-02-10 18:55:25 +00:00
|
|
|
|
2012-10-15 18:35:50 +00:00
|
|
|
|
|
|
|
class nsFrameIterator : public nsIFrameEnumerator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef nsIFrame::ChildListID ChildListID;
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
virtual ~nsFrameIterator() {}
|
|
|
|
|
2014-02-24 14:41:56 +00:00
|
|
|
virtual void First() MOZ_OVERRIDE;
|
|
|
|
virtual void Next() MOZ_OVERRIDE;
|
|
|
|
virtual nsIFrame* CurrentItem() MOZ_OVERRIDE;
|
|
|
|
virtual bool IsDone() MOZ_OVERRIDE;
|
2012-10-15 18:35:50 +00:00
|
|
|
|
2014-02-24 14:41:56 +00:00
|
|
|
virtual void Last() MOZ_OVERRIDE;
|
|
|
|
virtual void Prev() MOZ_OVERRIDE;
|
2012-10-15 18:35:50 +00:00
|
|
|
|
|
|
|
nsFrameIterator(nsPresContext* aPresContext, nsIFrame *aStart,
|
|
|
|
nsIteratorType aType, bool aLockScroll, bool aFollowOOFs);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void setCurrent(nsIFrame *aFrame){mCurrent = aFrame;}
|
|
|
|
nsIFrame *getCurrent(){return mCurrent;}
|
|
|
|
nsIFrame *getStart(){return mStart;}
|
|
|
|
nsIFrame *getLast(){return mLast;}
|
|
|
|
void setLast(nsIFrame *aFrame){mLast = aFrame;}
|
2012-10-25 18:44:37 +00:00
|
|
|
int8_t getOffEdge(){return mOffEdge;}
|
|
|
|
void setOffEdge(int8_t aOffEdge){mOffEdge = aOffEdge;}
|
2012-10-15 18:35:50 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
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);
|
|
|
|
|
2013-02-18 16:59:55 +00:00
|
|
|
nsPresContext* const mPresContext;
|
|
|
|
const bool mLockScroll;
|
|
|
|
const bool mFollowOOFs;
|
|
|
|
const nsIteratorType mType;
|
2012-10-15 18:35:50 +00:00
|
|
|
|
|
|
|
private:
|
2013-02-18 16:59:55 +00:00
|
|
|
nsIFrame* const mStart;
|
|
|
|
nsIFrame* mCurrent;
|
|
|
|
nsIFrame* mLast; //the last one that was in current;
|
2012-10-25 18:44:37 +00:00
|
|
|
int8_t mOffEdge; //0= no -1 to far prev, 1 to far next;
|
2012-10-15 18:35:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Bidi visual iterator
|
|
|
|
class nsVisualIterator: public nsFrameIterator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsVisualIterator(nsPresContext* aPresContext, nsIFrame *aStart,
|
|
|
|
nsIteratorType aType, bool aLockScroll, bool aFollowOOFs) :
|
|
|
|
nsFrameIterator(aPresContext, aStart, aType, aLockScroll, aFollowOOFs) {}
|
|
|
|
|
|
|
|
protected:
|
2014-02-24 14:41:56 +00:00
|
|
|
nsIFrame* GetFirstChildInner(nsIFrame* aFrame) MOZ_OVERRIDE;
|
|
|
|
nsIFrame* GetLastChildInner(nsIFrame* aFrame) MOZ_OVERRIDE;
|
2012-10-15 18:35:50 +00:00
|
|
|
|
2014-02-24 14:41:56 +00:00
|
|
|
nsIFrame* GetNextSiblingInner(nsIFrame* aFrame) MOZ_OVERRIDE;
|
|
|
|
nsIFrame* GetPrevSiblingInner(nsIFrame* aFrame) MOZ_OVERRIDE;
|
2012-10-15 18:35:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/************IMPLEMENTATIONS**************/
|
|
|
|
|
|
|
|
nsresult NS_CreateFrameTraversal(nsIFrameTraversal** aResult)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aResult);
|
|
|
|
*aResult = nullptr;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIFrameTraversal> t(new nsFrameTraversal());
|
|
|
|
|
|
|
|
*aResult = t;
|
|
|
|
NS_ADDREF(*aResult);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
NS_NewFrameTraversal(nsIFrameEnumerator **aEnumerator,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
nsIFrame *aStart,
|
|
|
|
nsIteratorType aType,
|
|
|
|
bool aVisual,
|
|
|
|
bool aLockInScrollView,
|
|
|
|
bool aFollowOOFs)
|
|
|
|
{
|
|
|
|
if (!aEnumerator || !aStart)
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
2013-02-18 16:59:55 +00:00
|
|
|
|
|
|
|
if (aFollowOOFs) {
|
|
|
|
aStart = nsPlaceholderFrame::GetRealFrameFor(aStart);
|
|
|
|
}
|
|
|
|
|
2012-10-15 18:35:50 +00:00
|
|
|
nsCOMPtr<nsIFrameEnumerator> trav;
|
|
|
|
if (aVisual) {
|
|
|
|
trav = new nsVisualIterator(aPresContext, aStart, aType,
|
|
|
|
aLockInScrollView, aFollowOOFs);
|
|
|
|
} else {
|
|
|
|
trav = new nsFrameIterator(aPresContext, aStart, aType,
|
|
|
|
aLockInScrollView, aFollowOOFs);
|
|
|
|
}
|
|
|
|
trav.forget(aEnumerator);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsFrameTraversal::nsFrameTraversal()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsFrameTraversal::~nsFrameTraversal()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-04-27 07:06:00 +00:00
|
|
|
NS_IMPL_ISUPPORTS(nsFrameTraversal,nsIFrameTraversal)
|
2012-10-15 18:35:50 +00:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFrameTraversal::NewFrameTraversal(nsIFrameEnumerator **aEnumerator,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
nsIFrame *aStart,
|
2012-10-25 18:44:37 +00:00
|
|
|
int32_t aType,
|
2012-10-15 18:35:50 +00:00
|
|
|
bool aVisual,
|
|
|
|
bool aLockInScrollView,
|
|
|
|
bool aFollowOOFs)
|
|
|
|
{
|
|
|
|
return NS_NewFrameTraversal(aEnumerator, aPresContext, aStart,
|
|
|
|
static_cast<nsIteratorType>(aType),
|
|
|
|
aVisual, aLockInScrollView, aFollowOOFs);
|
|
|
|
}
|
|
|
|
|
|
|
|
// nsFrameIterator implementation
|
|
|
|
|
2014-04-27 07:06:00 +00:00
|
|
|
NS_IMPL_ISUPPORTS(nsFrameIterator, nsIFrameEnumerator)
|
2012-10-15 18:35:50 +00:00
|
|
|
|
2006-08-30 13:38:16 +00:00
|
|
|
nsFrameIterator::nsFrameIterator(nsPresContext* aPresContext, nsIFrame *aStart,
|
2012-10-15 18:35:50 +00:00
|
|
|
nsIteratorType aType, bool aLockInScrollView,
|
|
|
|
bool aFollowOOFs)
|
2013-02-18 16:59:55 +00:00
|
|
|
: mPresContext(aPresContext),
|
|
|
|
mLockScroll(aLockInScrollView),
|
|
|
|
mFollowOOFs(aFollowOOFs),
|
|
|
|
mType(aType),
|
|
|
|
mStart(aStart),
|
|
|
|
mCurrent(aStart),
|
|
|
|
mLast(aStart),
|
|
|
|
mOffEdge(0)
|
1999-02-10 18:55:25 +00:00
|
|
|
{
|
2013-02-18 16:59:55 +00:00
|
|
|
MOZ_ASSERT(!aFollowOOFs || aStart->GetType() != nsGkAtoms::placeholderFrame,
|
|
|
|
"Caller should have resolved placeholder frame");
|
1999-02-10 18:55:25 +00:00
|
|
|
}
|
|
|
|
|
2012-10-15 18:35:50 +00:00
|
|
|
|
|
|
|
|
2008-10-30 17:15:22 +00:00
|
|
|
nsIFrame*
|
|
|
|
nsFrameIterator::CurrentItem()
|
1999-02-10 18:55:25 +00:00
|
|
|
{
|
2012-10-15 18:35:50 +00:00
|
|
|
if (mOffEdge)
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
return mCurrent;
|
1999-02-10 18:55:25 +00:00
|
|
|
}
|
|
|
|
|
2012-10-15 18:35:50 +00:00
|
|
|
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2008-10-30 17:15:22 +00:00
|
|
|
nsFrameIterator::IsDone()
|
1999-02-10 18:55:25 +00:00
|
|
|
{
|
2008-10-30 17:15:22 +00:00
|
|
|
return mOffEdge != 0;
|
1999-02-10 18:55:25 +00:00
|
|
|
}
|
|
|
|
|
2008-10-30 17:15:22 +00:00
|
|
|
void
|
1999-02-10 18:55:25 +00:00
|
|
|
nsFrameIterator::First()
|
|
|
|
{
|
|
|
|
mCurrent = mStart;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool
|
2000-04-19 02:13:43 +00:00
|
|
|
IsRootFrame(nsIFrame* aFrame)
|
|
|
|
{
|
2003-10-31 20:19:18 +00:00
|
|
|
nsIAtom* atom = aFrame->GetType();
|
2006-12-26 17:47:52 +00:00
|
|
|
return (atom == nsGkAtoms::canvasFrame) ||
|
|
|
|
(atom == nsGkAtoms::rootFrame);
|
2000-04-19 02:13:43 +00:00
|
|
|
}
|
1999-02-10 18:55:25 +00:00
|
|
|
|
2008-10-30 17:15:22 +00:00
|
|
|
void
|
2006-08-30 13:38:16 +00:00
|
|
|
nsFrameIterator::Last()
|
|
|
|
{
|
|
|
|
nsIFrame* result;
|
|
|
|
nsIFrame* parent = getCurrent();
|
2007-08-16 01:09:58 +00:00
|
|
|
// If the current frame is a popup, don't move farther up the tree.
|
|
|
|
// Otherwise, get the nearest root frame or popup.
|
|
|
|
if (parent->GetType() != nsGkAtoms::menuPopupFrame) {
|
|
|
|
while (!IsRootFrame(parent) && (result = GetParentFrameNotPopup(parent)))
|
|
|
|
parent = result;
|
|
|
|
}
|
|
|
|
|
2006-08-30 13:38:16 +00:00
|
|
|
while ((result = GetLastChild(parent))) {
|
|
|
|
parent = result;
|
|
|
|
}
|
2012-10-15 18:35:50 +00:00
|
|
|
|
2006-08-30 13:38:16 +00:00
|
|
|
setCurrent(parent);
|
|
|
|
if (!parent)
|
|
|
|
setOffEdge(1);
|
|
|
|
}
|
|
|
|
|
2008-10-30 17:15:22 +00:00
|
|
|
void
|
2006-08-30 13:38:16 +00:00
|
|
|
nsFrameIterator::Next()
|
1999-02-10 18:55:25 +00:00
|
|
|
{
|
2006-08-30 13:38:16 +00:00
|
|
|
// recursive-oid method to get next frame
|
2012-07-30 14:20:58 +00:00
|
|
|
nsIFrame *result = nullptr;
|
1999-02-10 18:55:25 +00:00
|
|
|
nsIFrame *parent = getCurrent();
|
|
|
|
if (!parent)
|
|
|
|
parent = getLast();
|
2006-08-30 13:38:16 +00:00
|
|
|
|
|
|
|
if (mType == eLeaf) {
|
|
|
|
// Drill down to first leaf
|
|
|
|
while ((result = GetFirstChild(parent))) {
|
2000-04-04 23:55:31 +00:00
|
|
|
parent = result;
|
|
|
|
}
|
2006-08-30 13:38:16 +00:00
|
|
|
} else if (mType == ePreOrder) {
|
|
|
|
result = GetFirstChild(parent);
|
|
|
|
if (result)
|
|
|
|
parent = result;
|
1999-02-10 18:55:25 +00:00
|
|
|
}
|
2006-08-30 13:38:16 +00:00
|
|
|
|
|
|
|
if (parent != getCurrent()) {
|
1999-02-10 18:55:25 +00:00
|
|
|
result = parent;
|
2006-08-30 13:38:16 +00:00
|
|
|
} else {
|
|
|
|
while (parent) {
|
|
|
|
result = GetNextSibling(parent);
|
2003-07-02 10:30:00 +00:00
|
|
|
if (result) {
|
2006-08-30 13:38:16 +00:00
|
|
|
if (mType != ePreOrder) {
|
|
|
|
parent = result;
|
|
|
|
while ((result = GetFirstChild(parent))) {
|
2003-07-02 10:30:00 +00:00
|
|
|
parent = result;
|
|
|
|
}
|
2006-08-30 13:38:16 +00:00
|
|
|
result = parent;
|
|
|
|
}
|
1999-02-10 18:55:25 +00:00
|
|
|
break;
|
|
|
|
}
|
2006-08-30 13:38:16 +00:00
|
|
|
else {
|
2007-08-16 01:09:58 +00:00
|
|
|
result = GetParentFrameNotPopup(parent);
|
2006-08-30 13:38:16 +00:00
|
|
|
if (!result || IsRootFrame(result) ||
|
2006-12-26 17:47:52 +00:00
|
|
|
(mLockScroll && result->GetType() == nsGkAtoms::scrollFrame)) {
|
2012-07-30 14:20:58 +00:00
|
|
|
result = nullptr;
|
1999-02-10 18:55:25 +00:00
|
|
|
break;
|
|
|
|
}
|
2006-08-30 13:38:16 +00:00
|
|
|
if (mType == ePostOrder)
|
|
|
|
break;
|
|
|
|
parent = result;
|
2000-04-19 02:13:43 +00:00
|
|
|
}
|
1999-02-10 18:55:25 +00:00
|
|
|
}
|
|
|
|
}
|
2006-08-30 13:38:16 +00:00
|
|
|
|
1999-02-10 18:55:25 +00:00
|
|
|
setCurrent(result);
|
2006-08-30 13:38:16 +00:00
|
|
|
if (!result) {
|
1999-02-10 18:55:25 +00:00
|
|
|
setOffEdge(1);
|
2006-08-30 13:38:16 +00:00
|
|
|
setLast(parent);
|
|
|
|
}
|
1999-02-10 18:55:25 +00:00
|
|
|
}
|
|
|
|
|
2008-10-30 17:15:22 +00:00
|
|
|
void
|
2006-08-30 13:38:16 +00:00
|
|
|
nsFrameIterator::Prev()
|
1999-02-10 18:55:25 +00:00
|
|
|
{
|
2006-08-30 13:38:16 +00:00
|
|
|
// recursive-oid method to get prev frame
|
2012-07-30 14:20:58 +00:00
|
|
|
nsIFrame *result = nullptr;
|
1999-02-10 18:55:25 +00:00
|
|
|
nsIFrame *parent = getCurrent();
|
|
|
|
if (!parent)
|
1999-03-03 01:51:21 +00:00
|
|
|
parent = getLast();
|
2002-04-16 02:42:09 +00:00
|
|
|
|
2006-08-30 13:38:16 +00:00
|
|
|
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;
|
|
|
|
}
|
2012-10-15 18:35:50 +00:00
|
|
|
|
2006-08-30 13:38:16 +00:00
|
|
|
if (parent != getCurrent()) {
|
|
|
|
result = parent;
|
|
|
|
} else {
|
|
|
|
while (parent) {
|
|
|
|
result = GetPrevSibling(parent);
|
|
|
|
if (result) {
|
|
|
|
if (mType != ePostOrder) {
|
1999-03-03 01:51:21 +00:00
|
|
|
parent = result;
|
2006-08-30 13:38:16 +00:00
|
|
|
while ((result = GetLastChild(parent))) {
|
1999-03-03 01:51:21 +00:00
|
|
|
parent = result;
|
|
|
|
}
|
2006-08-30 13:38:16 +00:00
|
|
|
result = parent;
|
1999-03-03 01:51:21 +00:00
|
|
|
}
|
2004-01-09 14:20:53 +00:00
|
|
|
break;
|
2006-08-30 13:38:16 +00:00
|
|
|
} else {
|
2007-08-16 01:09:58 +00:00
|
|
|
result = GetParentFrameNotPopup(parent);
|
2006-08-30 13:38:16 +00:00
|
|
|
if (!result || IsRootFrame(result) ||
|
2006-12-26 17:47:52 +00:00
|
|
|
(mLockScroll && result->GetType() == nsGkAtoms::scrollFrame)) {
|
2012-07-30 14:20:58 +00:00
|
|
|
result = nullptr;
|
1999-03-03 01:51:21 +00:00
|
|
|
break;
|
2006-08-30 13:38:16 +00:00
|
|
|
}
|
|
|
|
if (mType == ePreOrder)
|
|
|
|
break;
|
|
|
|
parent = result;
|
2000-04-04 23:55:31 +00:00
|
|
|
}
|
1999-03-03 01:51:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-02-10 18:55:25 +00:00
|
|
|
setCurrent(result);
|
2006-08-30 13:38:16 +00:00
|
|
|
if (!result) {
|
1999-02-10 18:55:25 +00:00
|
|
|
setOffEdge(-1);
|
2006-08-30 13:38:16 +00:00
|
|
|
setLast(parent);
|
|
|
|
}
|
1999-02-10 18:55:25 +00:00
|
|
|
}
|
2001-03-21 01:16:22 +00:00
|
|
|
|
2006-08-30 13:38:16 +00:00
|
|
|
nsIFrame*
|
|
|
|
nsFrameIterator::GetParentFrame(nsIFrame* aFrame)
|
2001-09-05 22:52:18 +00:00
|
|
|
{
|
2006-08-30 13:38:16 +00:00
|
|
|
if (mFollowOOFs)
|
|
|
|
aFrame = GetPlaceholderFrame(aFrame);
|
|
|
|
if (aFrame)
|
|
|
|
return aFrame->GetParent();
|
2012-10-15 18:35:50 +00:00
|
|
|
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2001-09-05 22:52:18 +00:00
|
|
|
}
|
|
|
|
|
2007-08-16 01:09:58 +00:00
|
|
|
nsIFrame*
|
|
|
|
nsFrameIterator::GetParentFrameNotPopup(nsIFrame* aFrame)
|
|
|
|
{
|
|
|
|
if (mFollowOOFs)
|
|
|
|
aFrame = GetPlaceholderFrame(aFrame);
|
|
|
|
if (aFrame) {
|
|
|
|
nsIFrame* parent = aFrame->GetParent();
|
|
|
|
if (!IsPopupFrame(parent))
|
|
|
|
return parent;
|
|
|
|
}
|
2012-10-15 18:35:50 +00:00
|
|
|
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2007-08-16 01:09:58 +00:00
|
|
|
}
|
|
|
|
|
2001-09-05 22:52:18 +00:00
|
|
|
nsIFrame*
|
2006-08-30 13:38:16 +00:00
|
|
|
nsFrameIterator::GetFirstChild(nsIFrame* aFrame)
|
2001-09-05 22:52:18 +00:00
|
|
|
{
|
2006-08-30 13:38:16 +00:00
|
|
|
nsIFrame* result = GetFirstChildInner(aFrame);
|
2008-12-03 01:24:07 +00:00
|
|
|
if (mLockScroll && result && result->GetType() == nsGkAtoms::scrollFrame)
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2006-08-30 13:38:16 +00:00
|
|
|
if (result && mFollowOOFs) {
|
|
|
|
result = nsPlaceholderFrame::GetRealFrameFor(result);
|
2012-10-15 18:35:50 +00:00
|
|
|
|
2007-08-16 01:09:58 +00:00
|
|
|
if (IsPopupFrame(result))
|
2006-08-30 13:38:16 +00:00
|
|
|
result = GetNextSibling(result);
|
2001-09-05 22:52:18 +00:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame*
|
2006-08-30 13:38:16 +00:00
|
|
|
nsFrameIterator::GetLastChild(nsIFrame* aFrame)
|
2001-09-05 22:52:18 +00:00
|
|
|
{
|
2006-08-30 13:38:16 +00:00
|
|
|
nsIFrame* result = GetLastChildInner(aFrame);
|
2008-12-03 01:24:07 +00:00
|
|
|
if (mLockScroll && result && result->GetType() == nsGkAtoms::scrollFrame)
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2006-08-30 13:38:16 +00:00
|
|
|
if (result && mFollowOOFs) {
|
2005-04-14 15:30:35 +00:00
|
|
|
result = nsPlaceholderFrame::GetRealFrameFor(result);
|
2012-10-15 18:35:50 +00:00
|
|
|
|
2007-08-16 01:09:58 +00:00
|
|
|
if (IsPopupFrame(result))
|
2007-07-12 13:54:42 +00:00
|
|
|
result = GetPrevSibling(result);
|
2006-08-30 13:38:16 +00:00
|
|
|
}
|
2001-09-05 22:52:18 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame*
|
2006-08-30 13:38:16 +00:00
|
|
|
nsFrameIterator::GetNextSibling(nsIFrame* aFrame)
|
2001-09-05 22:52:18 +00:00
|
|
|
{
|
2012-07-30 14:20:58 +00:00
|
|
|
nsIFrame* result = nullptr;
|
2006-08-30 13:38:16 +00:00
|
|
|
if (mFollowOOFs)
|
|
|
|
aFrame = GetPlaceholderFrame(aFrame);
|
|
|
|
if (aFrame) {
|
|
|
|
result = GetNextSiblingInner(aFrame);
|
|
|
|
if (result && mFollowOOFs)
|
2005-04-14 15:30:35 +00:00
|
|
|
result = nsPlaceholderFrame::GetRealFrameFor(result);
|
2001-09-05 22:52:18 +00:00
|
|
|
}
|
|
|
|
|
2007-08-16 01:09:58 +00:00
|
|
|
if (mFollowOOFs && IsPopupFrame(result))
|
2001-09-18 02:25:07 +00:00
|
|
|
result = GetNextSibling(result);
|
|
|
|
|
2001-09-05 22:52:18 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame*
|
2006-08-30 13:38:16 +00:00
|
|
|
nsFrameIterator::GetPrevSibling(nsIFrame* aFrame)
|
2001-09-05 22:52:18 +00:00
|
|
|
{
|
2012-07-30 14:20:58 +00:00
|
|
|
nsIFrame* result = nullptr;
|
2006-08-30 13:38:16 +00:00
|
|
|
if (mFollowOOFs)
|
|
|
|
aFrame = GetPlaceholderFrame(aFrame);
|
|
|
|
if (aFrame) {
|
|
|
|
result = GetPrevSiblingInner(aFrame);
|
|
|
|
if (result && mFollowOOFs)
|
|
|
|
result = nsPlaceholderFrame::GetRealFrameFor(result);
|
2001-09-05 22:52:18 +00:00
|
|
|
}
|
|
|
|
|
2007-08-16 01:09:58 +00:00
|
|
|
if (mFollowOOFs && IsPopupFrame(result))
|
2001-09-18 02:25:07 +00:00
|
|
|
result = GetPrevSibling(result);
|
|
|
|
|
2001-09-05 22:52:18 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2006-08-30 13:38:16 +00:00
|
|
|
nsIFrame*
|
|
|
|
nsFrameIterator::GetFirstChildInner(nsIFrame* aFrame) {
|
2011-08-24 20:54:30 +00:00
|
|
|
return aFrame->GetFirstPrincipalChild();
|
2006-08-30 13:38:16 +00:00
|
|
|
}
|
2001-09-05 22:52:18 +00:00
|
|
|
|
2006-08-30 13:38:16 +00:00
|
|
|
nsIFrame*
|
|
|
|
nsFrameIterator::GetLastChildInner(nsIFrame* aFrame) {
|
2011-08-24 20:54:30 +00:00
|
|
|
return aFrame->PrincipalChildList().LastChild();
|
2006-08-30 13:38:16 +00:00
|
|
|
}
|
2001-09-05 22:52:18 +00:00
|
|
|
|
2006-08-30 13:38:16 +00:00
|
|
|
nsIFrame*
|
|
|
|
nsFrameIterator::GetNextSiblingInner(nsIFrame* aFrame) {
|
|
|
|
return aFrame->GetNextSibling();
|
|
|
|
}
|
2001-09-05 22:52:18 +00:00
|
|
|
|
2006-08-30 13:38:16 +00:00
|
|
|
nsIFrame*
|
|
|
|
nsFrameIterator::GetPrevSiblingInner(nsIFrame* aFrame) {
|
2009-10-02 16:27:37 +00:00
|
|
|
return aFrame->GetPrevSibling();
|
2001-09-05 22:52:18 +00:00
|
|
|
}
|
|
|
|
|
2012-10-15 18:35:50 +00:00
|
|
|
|
2006-08-30 13:38:16 +00:00
|
|
|
nsIFrame*
|
|
|
|
nsFrameIterator::GetPlaceholderFrame(nsIFrame* aFrame)
|
2001-09-05 22:52:18 +00:00
|
|
|
{
|
2006-08-30 13:38:16 +00:00
|
|
|
nsIFrame* result = aFrame;
|
|
|
|
nsIPresShell *presShell = mPresContext->GetPresShell();
|
|
|
|
if (presShell) {
|
2010-03-20 21:54:19 +00:00
|
|
|
nsIFrame* placeholder = presShell->GetPlaceholderFrameFor(aFrame);
|
2006-08-30 13:38:16 +00:00
|
|
|
if (placeholder)
|
|
|
|
result = placeholder;
|
2001-09-05 22:52:18 +00:00
|
|
|
}
|
|
|
|
|
2006-08-30 13:38:16 +00:00
|
|
|
if (result != aFrame)
|
|
|
|
result = GetPlaceholderFrame(result);
|
|
|
|
|
|
|
|
return result;
|
2001-09-05 22:52:18 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2006-08-30 13:38:16 +00:00
|
|
|
nsFrameIterator::IsPopupFrame(nsIFrame* aFrame)
|
2001-09-05 22:52:18 +00:00
|
|
|
{
|
2007-08-16 01:09:58 +00:00
|
|
|
return (aFrame &&
|
2013-02-16 21:51:02 +00:00
|
|
|
aFrame->StyleDisplay()->mDisplay == NS_STYLE_DISPLAY_POPUP);
|
2001-09-05 22:52:18 +00:00
|
|
|
}
|
|
|
|
|
2012-10-15 18:35:50 +00:00
|
|
|
// 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);
|
|
|
|
}
|