2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsGkAtoms.h"
|
|
|
|
|
|
|
|
#include "nsFrameTraversal.h"
|
|
|
|
#include "nsFrameList.h"
|
|
|
|
#include "nsPlaceholderFrame.h"
|
|
|
|
|
|
|
|
|
2008-10-30 10:15:22 -07:00
|
|
|
class nsFrameIterator : public nsIFrameEnumerator
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
2008-10-30 10:15:22 -07:00
|
|
|
virtual void First();
|
|
|
|
virtual void Next();
|
|
|
|
virtual nsIFrame* CurrentItem();
|
|
|
|
virtual PRBool IsDone();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-10-30 10:15:22 -07:00
|
|
|
virtual void Last();
|
|
|
|
virtual void Prev();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsFrameIterator(nsPresContext* aPresContext, nsIFrame *aStart,
|
|
|
|
nsIteratorType aType, PRBool aLockScroll, PRBool aFollowOOFs);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void setCurrent(nsIFrame *aFrame){mCurrent = aFrame;}
|
|
|
|
nsIFrame *getCurrent(){return mCurrent;}
|
|
|
|
void setStart(nsIFrame *aFrame){mStart = aFrame;}
|
|
|
|
nsIFrame *getStart(){return mStart;}
|
|
|
|
nsIFrame *getLast(){return mLast;}
|
|
|
|
void setLast(nsIFrame *aFrame){mLast = aFrame;}
|
|
|
|
PRInt8 getOffEdge(){return mOffEdge;}
|
|
|
|
void setOffEdge(PRInt8 aOffEdge){mOffEdge = aOffEdge;}
|
|
|
|
void SetLockInScrollView(PRBool aLockScroll){mLockScroll = aLockScroll;}
|
|
|
|
|
|
|
|
/*
|
|
|
|
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);
|
2007-08-15 18:09:58 -07:00
|
|
|
// like GetParentFrame but returns null once a popup frame is reached
|
|
|
|
nsIFrame* GetParentFrameNotPopup(nsIFrame* aFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
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);
|
|
|
|
PRBool IsPopupFrame(nsIFrame* aFrame);
|
|
|
|
|
|
|
|
nsPresContext* mPresContext;
|
|
|
|
PRPackedBool mLockScroll;
|
|
|
|
PRPackedBool mFollowOOFs;
|
|
|
|
nsIteratorType mType;
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsIFrame *mStart;
|
|
|
|
nsIFrame *mCurrent;
|
|
|
|
nsIFrame *mLast; //the last one that was in current;
|
|
|
|
PRInt8 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, PRBool aLockScroll, PRBool aFollowOOFs) :
|
2007-04-23 07:21:53 -07:00
|
|
|
nsFrameIterator(aPresContext, aStart, aType, aLockScroll, aFollowOOFs) {}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
protected:
|
|
|
|
nsIFrame* GetFirstChildInner(nsIFrame* aFrame);
|
|
|
|
nsIFrame* GetLastChildInner(nsIFrame* aFrame);
|
|
|
|
|
|
|
|
nsIFrame* GetNextSiblingInner(nsIFrame* aFrame);
|
|
|
|
nsIFrame* GetPrevSiblingInner(nsIFrame* aFrame);
|
|
|
|
};
|
|
|
|
|
|
|
|
/************IMPLEMENTATIONS**************/
|
|
|
|
|
|
|
|
nsresult NS_CreateFrameTraversal(nsIFrameTraversal** aResult)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aResult);
|
|
|
|
*aResult = nsnull;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIFrameTraversal> t(new nsFrameTraversal());
|
|
|
|
if (!t)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
*aResult = t;
|
|
|
|
NS_ADDREF(*aResult);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2008-10-30 10:15:22 -07:00
|
|
|
NS_NewFrameTraversal(nsIFrameEnumerator **aEnumerator,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsPresContext* aPresContext,
|
|
|
|
nsIFrame *aStart,
|
|
|
|
nsIteratorType aType,
|
|
|
|
PRBool aVisual,
|
|
|
|
PRBool aLockInScrollView,
|
|
|
|
PRBool aFollowOOFs)
|
|
|
|
{
|
|
|
|
if (!aEnumerator || !aStart)
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
2008-10-30 10:15:22 -07:00
|
|
|
nsCOMPtr<nsIFrameEnumerator> trav;
|
2007-03-22 10:30:00 -07:00
|
|
|
if (aVisual) {
|
|
|
|
trav = new nsVisualIterator(aPresContext, aStart, aType,
|
|
|
|
aLockInScrollView, aFollowOOFs);
|
|
|
|
} else {
|
|
|
|
trav = new nsFrameIterator(aPresContext, aStart, aType,
|
|
|
|
aLockInScrollView, aFollowOOFs);
|
|
|
|
}
|
|
|
|
if (!trav)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2008-10-30 10:15:22 -07:00
|
|
|
*aEnumerator = trav;
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ADDREF(trav);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsFrameTraversal::nsFrameTraversal()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsFrameTraversal::~nsFrameTraversal()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS1(nsFrameTraversal,nsIFrameTraversal)
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2008-10-30 10:15:22 -07:00
|
|
|
nsFrameTraversal::NewFrameTraversal(nsIFrameEnumerator **aEnumerator,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsPresContext* aPresContext,
|
|
|
|
nsIFrame *aStart,
|
|
|
|
PRInt32 aType,
|
|
|
|
PRBool aVisual,
|
|
|
|
PRBool aLockInScrollView,
|
|
|
|
PRBool aFollowOOFs)
|
|
|
|
{
|
|
|
|
return NS_NewFrameTraversal(aEnumerator, aPresContext, aStart,
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsIteratorType>(aType),
|
2007-03-22 10:30:00 -07:00
|
|
|
aVisual, aLockInScrollView, aFollowOOFs);
|
|
|
|
}
|
|
|
|
|
|
|
|
// nsFrameIterator implementation
|
|
|
|
|
2008-10-30 10:15:22 -07:00
|
|
|
NS_IMPL_ISUPPORTS1(nsFrameIterator, nsIFrameEnumerator)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsFrameIterator::nsFrameIterator(nsPresContext* aPresContext, nsIFrame *aStart,
|
|
|
|
nsIteratorType aType, PRBool aLockInScrollView,
|
|
|
|
PRBool aFollowOOFs)
|
|
|
|
{
|
2007-04-22 21:14:25 -07:00
|
|
|
mOffEdge = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
mPresContext = aPresContext;
|
|
|
|
if (aFollowOOFs && aStart)
|
|
|
|
aStart = nsPlaceholderFrame::GetRealFrameFor(aStart);
|
|
|
|
setStart(aStart);
|
|
|
|
setCurrent(aStart);
|
|
|
|
setLast(aStart);
|
|
|
|
mType = aType;
|
|
|
|
SetLockInScrollView(aLockInScrollView);
|
|
|
|
mFollowOOFs = aFollowOOFs;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-10-30 10:15:22 -07:00
|
|
|
nsIFrame*
|
|
|
|
nsFrameIterator::CurrentItem()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (mOffEdge)
|
2008-10-30 10:15:22 -07:00
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
return mCurrent;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-10-30 10:15:22 -07:00
|
|
|
PRBool
|
|
|
|
nsFrameIterator::IsDone()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-10-30 10:15:22 -07:00
|
|
|
return mOffEdge != 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-10-30 10:15:22 -07:00
|
|
|
void
|
2007-03-22 10:30:00 -07:00
|
|
|
nsFrameIterator::First()
|
|
|
|
{
|
|
|
|
mCurrent = mStart;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PRBool
|
|
|
|
IsRootFrame(nsIFrame* aFrame)
|
|
|
|
{
|
|
|
|
nsIAtom* atom = aFrame->GetType();
|
|
|
|
return (atom == nsGkAtoms::canvasFrame) ||
|
|
|
|
(atom == nsGkAtoms::rootFrame);
|
|
|
|
}
|
|
|
|
|
2008-10-30 10:15:22 -07:00
|
|
|
void
|
2007-03-22 10:30:00 -07:00
|
|
|
nsFrameIterator::Last()
|
|
|
|
{
|
|
|
|
nsIFrame* result;
|
|
|
|
nsIFrame* parent = getCurrent();
|
2007-08-15 18:09:58 -07: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;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
while ((result = GetLastChild(parent))) {
|
|
|
|
parent = result;
|
|
|
|
}
|
|
|
|
|
|
|
|
setCurrent(parent);
|
|
|
|
if (!parent)
|
|
|
|
setOffEdge(1);
|
|
|
|
}
|
|
|
|
|
2008-10-30 10:15:22 -07:00
|
|
|
void
|
2007-03-22 10:30:00 -07:00
|
|
|
nsFrameIterator::Next()
|
|
|
|
{
|
|
|
|
// recursive-oid method to get next frame
|
|
|
|
nsIFrame *result = nsnull;
|
|
|
|
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 {
|
2007-08-15 18:09:58 -07:00
|
|
|
result = GetParentFrameNotPopup(parent);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!result || IsRootFrame(result) ||
|
|
|
|
(mLockScroll && result->GetType() == nsGkAtoms::scrollFrame)) {
|
|
|
|
result = nsnull;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (mType == ePostOrder)
|
|
|
|
break;
|
|
|
|
parent = result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
setCurrent(result);
|
|
|
|
if (!result) {
|
|
|
|
setOffEdge(1);
|
|
|
|
setLast(parent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-30 10:15:22 -07:00
|
|
|
void
|
2007-03-22 10:30:00 -07:00
|
|
|
nsFrameIterator::Prev()
|
|
|
|
{
|
|
|
|
// recursive-oid method to get prev frame
|
|
|
|
nsIFrame *result = nsnull;
|
|
|
|
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 {
|
2007-08-15 18:09:58 -07:00
|
|
|
result = GetParentFrameNotPopup(parent);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!result || IsRootFrame(result) ||
|
|
|
|
(mLockScroll && result->GetType() == nsGkAtoms::scrollFrame)) {
|
|
|
|
result = nsnull;
|
|
|
|
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 nsnull;
|
|
|
|
}
|
|
|
|
|
2007-08-15 18:09:58 -07:00
|
|
|
nsIFrame*
|
|
|
|
nsFrameIterator::GetParentFrameNotPopup(nsIFrame* aFrame)
|
|
|
|
{
|
|
|
|
if (mFollowOOFs)
|
|
|
|
aFrame = GetPlaceholderFrame(aFrame);
|
|
|
|
if (aFrame) {
|
|
|
|
nsIFrame* parent = aFrame->GetParent();
|
|
|
|
if (!IsPopupFrame(parent))
|
|
|
|
return parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIFrame*
|
|
|
|
nsFrameIterator::GetFirstChild(nsIFrame* aFrame)
|
|
|
|
{
|
|
|
|
nsIFrame* result = GetFirstChildInner(aFrame);
|
2008-12-02 17:24:07 -08:00
|
|
|
if (mLockScroll && result && result->GetType() == nsGkAtoms::scrollFrame)
|
|
|
|
return nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
if (result && mFollowOOFs) {
|
|
|
|
result = nsPlaceholderFrame::GetRealFrameFor(result);
|
|
|
|
|
2007-08-15 18:09:58 -07:00
|
|
|
if (IsPopupFrame(result))
|
2007-03-22 10:30:00 -07:00
|
|
|
result = GetNextSibling(result);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame*
|
|
|
|
nsFrameIterator::GetLastChild(nsIFrame* aFrame)
|
|
|
|
{
|
|
|
|
nsIFrame* result = GetLastChildInner(aFrame);
|
2008-12-02 17:24:07 -08:00
|
|
|
if (mLockScroll && result && result->GetType() == nsGkAtoms::scrollFrame)
|
|
|
|
return nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
if (result && mFollowOOFs) {
|
|
|
|
result = nsPlaceholderFrame::GetRealFrameFor(result);
|
|
|
|
|
2007-08-15 18:09:58 -07:00
|
|
|
if (IsPopupFrame(result))
|
2007-07-12 06:54:42 -07:00
|
|
|
result = GetPrevSibling(result);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame*
|
|
|
|
nsFrameIterator::GetNextSibling(nsIFrame* aFrame)
|
|
|
|
{
|
|
|
|
nsIFrame* result = nsnull;
|
|
|
|
if (mFollowOOFs)
|
|
|
|
aFrame = GetPlaceholderFrame(aFrame);
|
|
|
|
if (aFrame) {
|
|
|
|
result = GetNextSiblingInner(aFrame);
|
|
|
|
if (result && mFollowOOFs)
|
|
|
|
result = nsPlaceholderFrame::GetRealFrameFor(result);
|
|
|
|
}
|
|
|
|
|
2007-08-15 18:09:58 -07:00
|
|
|
if (mFollowOOFs && IsPopupFrame(result))
|
2007-03-22 10:30:00 -07:00
|
|
|
result = GetNextSibling(result);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame*
|
|
|
|
nsFrameIterator::GetPrevSibling(nsIFrame* aFrame)
|
|
|
|
{
|
|
|
|
nsIFrame* result = nsnull;
|
|
|
|
if (mFollowOOFs)
|
|
|
|
aFrame = GetPlaceholderFrame(aFrame);
|
|
|
|
if (aFrame) {
|
|
|
|
result = GetPrevSiblingInner(aFrame);
|
|
|
|
if (result && mFollowOOFs)
|
|
|
|
result = nsPlaceholderFrame::GetRealFrameFor(result);
|
|
|
|
}
|
|
|
|
|
2007-08-15 18:09:58 -07:00
|
|
|
if (mFollowOOFs && IsPopupFrame(result))
|
2007-03-22 10:30:00 -07:00
|
|
|
result = GetPrevSibling(result);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame*
|
|
|
|
nsFrameIterator::GetFirstChildInner(nsIFrame* aFrame) {
|
|
|
|
return aFrame->GetFirstChild(nsnull);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame*
|
|
|
|
nsFrameIterator::GetLastChildInner(nsIFrame* aFrame) {
|
2009-09-18 04:09:36 -07:00
|
|
|
return aFrame->GetChildList(nsnull).LastChild();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame*
|
|
|
|
nsFrameIterator::GetNextSiblingInner(nsIFrame* aFrame) {
|
|
|
|
return aFrame->GetNextSibling();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame*
|
|
|
|
nsFrameIterator::GetPrevSiblingInner(nsIFrame* aFrame) {
|
2009-10-02 09:27:37 -07:00
|
|
|
return aFrame->GetPrevSibling();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsIFrame*
|
|
|
|
nsFrameIterator::GetPlaceholderFrame(nsIFrame* aFrame)
|
|
|
|
{
|
|
|
|
nsIFrame* result = aFrame;
|
|
|
|
nsIPresShell *presShell = mPresContext->GetPresShell();
|
|
|
|
if (presShell) {
|
2010-03-20 14:54:19 -07:00
|
|
|
nsIFrame* placeholder = presShell->GetPlaceholderFrameFor(aFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (placeholder)
|
|
|
|
result = placeholder;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (result != aFrame)
|
|
|
|
result = GetPlaceholderFrame(result);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsFrameIterator::IsPopupFrame(nsIFrame* aFrame)
|
|
|
|
{
|
2007-08-15 18:09:58 -07:00
|
|
|
return (aFrame &&
|
|
|
|
aFrame->GetStyleDisplay()->mDisplay == NS_STYLE_DISPLAY_POPUP);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// nsVisualIterator implementation
|
|
|
|
|
|
|
|
nsIFrame*
|
|
|
|
nsVisualIterator::GetFirstChildInner(nsIFrame* aFrame) {
|
2009-09-18 04:09:36 -07:00
|
|
|
return aFrame->GetChildList(nsnull).GetNextVisualFor(nsnull);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame*
|
|
|
|
nsVisualIterator::GetLastChildInner(nsIFrame* aFrame) {
|
2009-09-18 04:09:36 -07:00
|
|
|
return aFrame->GetChildList(nsnull).GetPrevVisualFor(nsnull);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame*
|
|
|
|
nsVisualIterator::GetNextSiblingInner(nsIFrame* aFrame) {
|
|
|
|
nsIFrame* parent = GetParentFrame(aFrame);
|
|
|
|
if (!parent)
|
|
|
|
return nsnull;
|
2009-09-18 04:09:36 -07:00
|
|
|
return parent->GetChildList(nsnull).GetNextVisualFor(aFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame*
|
|
|
|
nsVisualIterator::GetPrevSiblingInner(nsIFrame* aFrame) {
|
|
|
|
nsIFrame* parent = GetParentFrame(aFrame);
|
|
|
|
if (!parent)
|
|
|
|
return nsnull;
|
2009-09-18 04:09:36 -07:00
|
|
|
return parent->GetChildList(nsnull).GetPrevVisualFor(aFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|