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-29 18:29:03 +00:00
|
|
|
|
1999-01-15 01:28:07 +00:00
|
|
|
#include "nsFrameList.h"
|
2009-07-28 12:51:08 +00:00
|
|
|
#include "nsIFrame.h"
|
2005-03-23 03:35:08 +00:00
|
|
|
#include "nsLayoutUtils.h"
|
1999-01-15 01:28:07 +00:00
|
|
|
|
2001-03-21 01:16:22 +00:00
|
|
|
#ifdef IBMBIDI
|
|
|
|
#include "nsCOMPtr.h"
|
2007-01-30 00:06:41 +00:00
|
|
|
#include "nsGkAtoms.h"
|
2001-03-21 01:16:22 +00:00
|
|
|
#include "nsILineIterator.h"
|
2006-03-12 09:49:48 +00:00
|
|
|
#include "nsBidiPresUtils.h"
|
2001-03-21 01:16:22 +00:00
|
|
|
#endif // IBMBIDI
|
|
|
|
|
2009-07-28 12:51:09 +00:00
|
|
|
const nsFrameList* nsFrameList::sEmptyList;
|
|
|
|
|
|
|
|
/* static */
|
2011-05-02 06:32:59 +00:00
|
|
|
void
|
2009-07-28 12:51:09 +00:00
|
|
|
nsFrameList::Init()
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(!sEmptyList, "Shouldn't be allocated");
|
2009-09-18 11:09:36 +00:00
|
|
|
|
2009-07-28 12:51:09 +00:00
|
|
|
sEmptyList = new nsFrameList();
|
|
|
|
}
|
|
|
|
|
2007-07-26 04:03:29 +00:00
|
|
|
void
|
|
|
|
nsFrameList::Destroy()
|
|
|
|
{
|
2009-09-18 11:09:36 +00:00
|
|
|
NS_PRECONDITION(this != sEmptyList, "Shouldn't Destroy() sEmptyList");
|
|
|
|
|
2007-07-26 04:03:29 +00:00
|
|
|
DestroyFrames();
|
|
|
|
delete this;
|
|
|
|
}
|
|
|
|
|
2009-12-24 05:21:15 +00:00
|
|
|
void
|
|
|
|
nsFrameList::DestroyFrom(nsIFrame* aDestructRoot)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(this != sEmptyList, "Shouldn't Destroy() sEmptyList");
|
|
|
|
|
|
|
|
DestroyFramesFrom(aDestructRoot);
|
|
|
|
delete this;
|
|
|
|
}
|
|
|
|
|
1999-01-15 01:28:07 +00:00
|
|
|
void
|
2006-04-10 00:16:29 +00:00
|
|
|
nsFrameList::DestroyFrames()
|
1999-01-15 01:28:07 +00:00
|
|
|
{
|
2009-12-24 05:20:41 +00:00
|
|
|
while (nsIFrame* frame = RemoveFirstChild()) {
|
2006-04-10 00:16:29 +00:00
|
|
|
frame->Destroy();
|
1999-01-15 01:28:07 +00:00
|
|
|
}
|
2012-07-30 14:20:58 +00:00
|
|
|
mLastChild = nullptr;
|
2009-12-24 05:21:15 +00:00
|
|
|
}
|
2009-09-18 11:09:36 +00:00
|
|
|
|
2009-12-24 05:21:15 +00:00
|
|
|
void
|
|
|
|
nsFrameList::DestroyFramesFrom(nsIFrame* aDestructRoot)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aDestructRoot, "Missing destruct root");
|
|
|
|
|
|
|
|
while (nsIFrame* frame = RemoveFirstChild()) {
|
|
|
|
frame->DestroyFrom(aDestructRoot);
|
|
|
|
}
|
2012-07-30 14:20:58 +00:00
|
|
|
mLastChild = nullptr;
|
2009-09-18 11:09:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsFrameList::SetFrames(nsIFrame* aFrameList)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(!mFirstChild, "Losing frames");
|
|
|
|
|
|
|
|
mFirstChild = aFrameList;
|
|
|
|
mLastChild = nsLayoutUtils::GetLastSibling(mFirstChild);
|
1999-01-15 01:28:07 +00:00
|
|
|
}
|
|
|
|
|
2009-09-18 11:09:36 +00:00
|
|
|
void
|
2009-10-02 16:27:37 +00:00
|
|
|
nsFrameList::RemoveFrame(nsIFrame* aFrame)
|
1999-01-15 01:28:07 +00:00
|
|
|
{
|
2009-09-18 11:09:36 +00:00
|
|
|
NS_PRECONDITION(aFrame, "null ptr");
|
2009-11-03 18:39:41 +00:00
|
|
|
#ifdef DEBUG_FRAME_LIST
|
|
|
|
// ContainsFrame is O(N)
|
2009-09-18 11:09:36 +00:00
|
|
|
NS_PRECONDITION(ContainsFrame(aFrame), "wrong list");
|
2009-11-03 18:39:41 +00:00
|
|
|
#endif
|
2009-09-18 11:09:36 +00:00
|
|
|
|
|
|
|
nsIFrame* nextFrame = aFrame->GetNextSibling();
|
|
|
|
if (aFrame == mFirstChild) {
|
|
|
|
mFirstChild = nextFrame;
|
2012-07-30 14:20:58 +00:00
|
|
|
aFrame->SetNextSibling(nullptr);
|
2009-09-18 11:09:36 +00:00
|
|
|
if (!nextFrame) {
|
2012-07-30 14:20:58 +00:00
|
|
|
mLastChild = nullptr;
|
1999-01-15 01:28:07 +00:00
|
|
|
}
|
2009-09-18 11:09:36 +00:00
|
|
|
}
|
|
|
|
else {
|
2009-10-02 16:27:37 +00:00
|
|
|
nsIFrame* prevSibling = aFrame->GetPrevSibling();
|
|
|
|
NS_ASSERTION(prevSibling && prevSibling->GetNextSibling() == aFrame,
|
|
|
|
"Broken frame linkage");
|
|
|
|
prevSibling->SetNextSibling(nextFrame);
|
2012-07-30 14:20:58 +00:00
|
|
|
aFrame->SetNextSibling(nullptr);
|
2009-10-02 16:27:37 +00:00
|
|
|
if (!nextFrame) {
|
|
|
|
mLastChild = prevSibling;
|
1999-01-15 01:28:07 +00:00
|
|
|
}
|
|
|
|
}
|
2009-09-18 11:09:36 +00:00
|
|
|
}
|
2009-09-18 11:09:36 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2009-09-18 11:09:36 +00:00
|
|
|
nsFrameList::RemoveFrameIfPresent(nsIFrame* aFrame)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aFrame, "null ptr");
|
|
|
|
|
2009-10-02 16:27:37 +00:00
|
|
|
for (Enumerator e(*this); !e.AtEnd(); e.Next()) {
|
|
|
|
if (e.get() == aFrame) {
|
|
|
|
RemoveFrame(aFrame);
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
2009-09-18 11:09:36 +00:00
|
|
|
}
|
|
|
|
}
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
1999-01-15 01:28:07 +00:00
|
|
|
}
|
|
|
|
|
2009-09-18 11:09:35 +00:00
|
|
|
nsFrameList
|
|
|
|
nsFrameList::RemoveFramesAfter(nsIFrame* aAfterFrame)
|
|
|
|
{
|
2010-08-06 04:59:19 +00:00
|
|
|
if (!aAfterFrame) {
|
|
|
|
nsFrameList result;
|
2012-07-30 14:20:58 +00:00
|
|
|
result.InsertFrames(nullptr, nullptr, *this);
|
2010-08-06 04:59:19 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2009-09-18 11:09:35 +00:00
|
|
|
NS_PRECONDITION(NotEmpty(), "illegal operation on empty list");
|
2009-11-03 18:39:41 +00:00
|
|
|
#ifdef DEBUG_FRAME_LIST
|
2009-09-18 11:09:36 +00:00
|
|
|
NS_PRECONDITION(ContainsFrame(aAfterFrame), "wrong list");
|
2009-11-03 18:39:41 +00:00
|
|
|
#endif
|
2009-09-18 11:09:35 +00:00
|
|
|
|
|
|
|
nsIFrame* tail = aAfterFrame->GetNextSibling();
|
2009-09-18 11:09:36 +00:00
|
|
|
// if (!tail) return EmptyList(); -- worth optimizing this case?
|
|
|
|
nsIFrame* oldLastChild = mLastChild;
|
|
|
|
mLastChild = aAfterFrame;
|
2012-07-30 14:20:58 +00:00
|
|
|
aAfterFrame->SetNextSibling(nullptr);
|
|
|
|
return nsFrameList(tail, tail ? oldLastChild : nullptr);
|
2009-09-18 11:09:35 +00:00
|
|
|
}
|
|
|
|
|
2009-12-24 05:20:41 +00:00
|
|
|
nsIFrame*
|
1999-01-15 22:53:39 +00:00
|
|
|
nsFrameList::RemoveFirstChild()
|
|
|
|
{
|
2003-07-02 10:30:00 +00:00
|
|
|
if (mFirstChild) {
|
2009-12-24 05:20:41 +00:00
|
|
|
nsIFrame* firstChild = mFirstChild;
|
|
|
|
RemoveFrame(firstChild);
|
|
|
|
return firstChild;
|
1999-01-15 22:53:39 +00:00
|
|
|
}
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
1999-01-15 22:53:39 +00:00
|
|
|
}
|
|
|
|
|
2009-09-18 11:09:36 +00:00
|
|
|
void
|
2009-10-02 16:27:37 +00:00
|
|
|
nsFrameList::DestroyFrame(nsIFrame* aFrame)
|
1999-01-15 01:28:07 +00:00
|
|
|
{
|
2009-09-18 11:09:36 +00:00
|
|
|
NS_PRECONDITION(aFrame, "null ptr");
|
2009-10-02 16:27:37 +00:00
|
|
|
RemoveFrame(aFrame);
|
2009-09-18 11:09:36 +00:00
|
|
|
aFrame->Destroy();
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2009-09-18 11:09:36 +00:00
|
|
|
nsFrameList::DestroyFrameIfPresent(nsIFrame* aFrame)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aFrame, "null ptr");
|
|
|
|
|
|
|
|
if (RemoveFrameIfPresent(aFrame)) {
|
2006-04-10 00:16:29 +00:00
|
|
|
aFrame->Destroy();
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
1999-01-15 01:28:07 +00:00
|
|
|
}
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
1999-01-15 01:28:07 +00:00
|
|
|
}
|
|
|
|
|
2009-09-18 11:09:36 +00:00
|
|
|
nsFrameList::Slice
|
|
|
|
nsFrameList::InsertFrames(nsIFrame* aParent, nsIFrame* aPrevSibling,
|
|
|
|
nsFrameList& aFrameList)
|
1999-01-15 01:28:07 +00:00
|
|
|
{
|
2009-09-18 11:09:36 +00:00
|
|
|
NS_PRECONDITION(aFrameList.NotEmpty(), "Unexpected empty list");
|
1999-01-15 01:28:07 +00:00
|
|
|
|
2009-09-18 11:09:36 +00:00
|
|
|
if (aParent) {
|
|
|
|
aFrameList.ApplySetParent(aParent);
|
|
|
|
}
|
2000-03-12 03:07:52 +00:00
|
|
|
|
2009-09-18 11:09:36 +00:00
|
|
|
NS_ASSERTION(IsEmpty() ||
|
|
|
|
FirstChild()->GetParent() == aFrameList.FirstChild()->GetParent(),
|
|
|
|
"frame to add has different parent");
|
|
|
|
NS_ASSERTION(!aPrevSibling ||
|
|
|
|
aPrevSibling->GetParent() == aFrameList.FirstChild()->GetParent(),
|
|
|
|
"prev sibling has different parent");
|
2009-11-03 18:39:41 +00:00
|
|
|
#ifdef DEBUG_FRAME_LIST
|
|
|
|
// ContainsFrame is O(N)
|
2009-09-18 11:09:36 +00:00
|
|
|
NS_ASSERTION(!aPrevSibling || ContainsFrame(aPrevSibling),
|
|
|
|
"prev sibling is not on this list");
|
2009-11-03 18:39:41 +00:00
|
|
|
#endif
|
2009-09-18 11:09:36 +00:00
|
|
|
|
|
|
|
nsIFrame* firstNewFrame = aFrameList.FirstChild();
|
|
|
|
nsIFrame* nextSibling;
|
|
|
|
if (aPrevSibling) {
|
|
|
|
nextSibling = aPrevSibling->GetNextSibling();
|
|
|
|
aPrevSibling->SetNextSibling(firstNewFrame);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
nextSibling = mFirstChild;
|
|
|
|
mFirstChild = firstNewFrame;
|
1999-01-15 01:28:07 +00:00
|
|
|
}
|
2009-09-18 11:09:36 +00:00
|
|
|
|
|
|
|
nsIFrame* lastNewFrame = aFrameList.LastChild();
|
|
|
|
lastNewFrame->SetNextSibling(nextSibling);
|
|
|
|
if (!nextSibling) {
|
|
|
|
mLastChild = lastNewFrame;
|
|
|
|
}
|
|
|
|
|
|
|
|
VerifyList();
|
|
|
|
|
|
|
|
aFrameList.Clear();
|
|
|
|
return Slice(*this, firstNewFrame, nextSibling);
|
1999-01-15 01:28:07 +00:00
|
|
|
}
|
|
|
|
|
2009-07-28 12:53:19 +00:00
|
|
|
nsFrameList
|
|
|
|
nsFrameList::ExtractHead(FrameLinkEnumerator& aLink)
|
1999-01-15 01:28:07 +00:00
|
|
|
{
|
2009-07-28 12:53:19 +00:00
|
|
|
NS_PRECONDITION(&aLink.List() == this, "Unexpected list");
|
|
|
|
NS_PRECONDITION(!aLink.PrevFrame() ||
|
|
|
|
aLink.PrevFrame()->GetNextSibling() ==
|
|
|
|
aLink.NextFrame(),
|
|
|
|
"Unexpected PrevFrame()");
|
2009-07-28 12:53:19 +00:00
|
|
|
NS_PRECONDITION(aLink.PrevFrame() ||
|
|
|
|
aLink.NextFrame() == FirstChild(),
|
|
|
|
"Unexpected NextFrame()");
|
|
|
|
NS_PRECONDITION(!aLink.PrevFrame() ||
|
|
|
|
aLink.NextFrame() != FirstChild(),
|
|
|
|
"Unexpected NextFrame()");
|
2012-07-30 14:20:58 +00:00
|
|
|
NS_PRECONDITION(aLink.mEnd == nullptr,
|
2009-07-28 12:53:19 +00:00
|
|
|
"Unexpected mEnd for frame link enumerator");
|
1999-01-15 01:28:07 +00:00
|
|
|
|
2009-07-28 12:53:19 +00:00
|
|
|
nsIFrame* prev = aLink.PrevFrame();
|
2012-07-30 14:20:58 +00:00
|
|
|
nsIFrame* newFirstFrame = nullptr;
|
2009-07-28 12:53:19 +00:00
|
|
|
if (prev) {
|
|
|
|
// Truncate the list after |prev| and hand the first part to our new list.
|
2012-07-30 14:20:58 +00:00
|
|
|
prev->SetNextSibling(nullptr);
|
2009-07-28 12:53:19 +00:00
|
|
|
newFirstFrame = mFirstChild;
|
|
|
|
mFirstChild = aLink.NextFrame();
|
2009-09-18 11:09:36 +00:00
|
|
|
if (!mFirstChild) { // we handed over the whole list
|
2012-07-30 14:20:58 +00:00
|
|
|
mLastChild = nullptr;
|
2009-09-18 11:09:36 +00:00
|
|
|
}
|
2009-07-28 12:53:19 +00:00
|
|
|
|
|
|
|
// Now make sure aLink doesn't point to a frame we no longer have.
|
2012-07-30 14:20:58 +00:00
|
|
|
aLink.mPrev = nullptr;
|
1999-01-15 01:28:07 +00:00
|
|
|
}
|
2009-07-28 12:53:19 +00:00
|
|
|
// else aLink is pointing to before our first frame. Nothing to do.
|
|
|
|
|
2009-09-18 11:09:36 +00:00
|
|
|
return nsFrameList(newFirstFrame, prev);
|
1999-01-15 01:28:07 +00:00
|
|
|
}
|
|
|
|
|
2009-07-28 12:53:19 +00:00
|
|
|
nsFrameList
|
|
|
|
nsFrameList::ExtractTail(FrameLinkEnumerator& aLink)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(&aLink.List() == this, "Unexpected list");
|
|
|
|
NS_PRECONDITION(!aLink.PrevFrame() ||
|
|
|
|
aLink.PrevFrame()->GetNextSibling() ==
|
|
|
|
aLink.NextFrame(),
|
|
|
|
"Unexpected PrevFrame()");
|
|
|
|
NS_PRECONDITION(aLink.PrevFrame() ||
|
|
|
|
aLink.NextFrame() == FirstChild(),
|
|
|
|
"Unexpected NextFrame()");
|
|
|
|
NS_PRECONDITION(!aLink.PrevFrame() ||
|
|
|
|
aLink.NextFrame() != FirstChild(),
|
|
|
|
"Unexpected NextFrame()");
|
2012-07-30 14:20:58 +00:00
|
|
|
NS_PRECONDITION(aLink.mEnd == nullptr,
|
2009-07-28 12:53:19 +00:00
|
|
|
"Unexpected mEnd for frame link enumerator");
|
|
|
|
|
|
|
|
nsIFrame* prev = aLink.PrevFrame();
|
|
|
|
nsIFrame* newFirstFrame;
|
2009-09-18 11:09:36 +00:00
|
|
|
nsIFrame* newLastFrame;
|
2009-07-28 12:53:19 +00:00
|
|
|
if (prev) {
|
|
|
|
// Truncate the list after |prev| and hand the second part to our new list
|
2012-07-30 14:20:58 +00:00
|
|
|
prev->SetNextSibling(nullptr);
|
2009-07-28 12:53:19 +00:00
|
|
|
newFirstFrame = aLink.NextFrame();
|
2012-07-30 14:20:58 +00:00
|
|
|
newLastFrame = newFirstFrame ? mLastChild : nullptr;
|
2009-09-18 11:09:36 +00:00
|
|
|
mLastChild = prev;
|
2009-07-28 12:53:19 +00:00
|
|
|
} else {
|
|
|
|
// Hand the whole list over to our new list
|
|
|
|
newFirstFrame = mFirstChild;
|
2009-09-18 11:09:36 +00:00
|
|
|
newLastFrame = mLastChild;
|
|
|
|
Clear();
|
2009-07-28 12:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Now make sure aLink doesn't point to a frame we no longer have.
|
2012-07-30 14:20:58 +00:00
|
|
|
aLink.mFrame = nullptr;
|
2009-07-28 12:53:19 +00:00
|
|
|
|
|
|
|
NS_POSTCONDITION(aLink.AtEnd(), "What's going on here?");
|
|
|
|
|
2009-09-18 11:09:36 +00:00
|
|
|
return nsFrameList(newFirstFrame, newLastFrame);
|
1999-01-15 01:28:07 +00:00
|
|
|
}
|
|
|
|
|
1999-01-15 22:53:39 +00:00
|
|
|
nsIFrame*
|
2012-08-22 15:56:38 +00:00
|
|
|
nsFrameList::FrameAt(int32_t aIndex) const
|
1999-01-15 22:53:39 +00:00
|
|
|
{
|
|
|
|
NS_PRECONDITION(aIndex >= 0, "invalid arg");
|
2012-07-30 14:20:58 +00:00
|
|
|
if (aIndex < 0) return nullptr;
|
1999-01-15 22:53:39 +00:00
|
|
|
nsIFrame* frame = mFirstChild;
|
2003-07-02 10:30:00 +00:00
|
|
|
while ((aIndex-- > 0) && frame) {
|
|
|
|
frame = frame->GetNextSibling();
|
1999-01-15 22:53:39 +00:00
|
|
|
}
|
|
|
|
return frame;
|
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t
|
2009-04-25 08:33:32 +00:00
|
|
|
nsFrameList::IndexOf(nsIFrame* aFrame) const
|
|
|
|
{
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t count = 0;
|
2009-04-25 08:33:32 +00:00
|
|
|
for (nsIFrame* f = mFirstChild; f; f = f->GetNextSibling()) {
|
|
|
|
if (f == aFrame)
|
|
|
|
return count;
|
|
|
|
++count;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
1999-01-15 22:53:39 +00:00
|
|
|
nsFrameList::ContainsFrame(const nsIFrame* aFrame) const
|
1999-01-15 01:28:07 +00:00
|
|
|
{
|
2009-09-18 11:09:36 +00:00
|
|
|
NS_PRECONDITION(aFrame, "null ptr");
|
|
|
|
|
1999-01-15 01:28:07 +00:00
|
|
|
nsIFrame* frame = mFirstChild;
|
2003-07-02 10:30:00 +00:00
|
|
|
while (frame) {
|
1999-01-15 01:28:07 +00:00
|
|
|
if (frame == aFrame) {
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
1999-01-15 01:28:07 +00:00
|
|
|
}
|
2003-07-02 10:30:00 +00:00
|
|
|
frame = frame->GetNextSibling();
|
1999-01-15 01:28:07 +00:00
|
|
|
}
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
1999-01-15 01:28:07 +00:00
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t
|
1999-01-15 01:28:07 +00:00
|
|
|
nsFrameList::GetLength() const
|
|
|
|
{
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t count = 0;
|
1999-01-15 01:28:07 +00:00
|
|
|
nsIFrame* frame = mFirstChild;
|
2003-07-02 10:30:00 +00:00
|
|
|
while (frame) {
|
1999-01-15 01:28:07 +00:00
|
|
|
count++;
|
2003-07-02 10:30:00 +00:00
|
|
|
frame = frame->GetNextSibling();
|
1999-01-15 01:28:07 +00:00
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2009-09-18 11:09:36 +00:00
|
|
|
void
|
|
|
|
nsFrameList::ApplySetParent(nsIFrame* aParent) const
|
|
|
|
{
|
|
|
|
NS_ASSERTION(aParent, "null ptr");
|
|
|
|
|
|
|
|
for (nsIFrame* f = FirstChild(); f; f = f->GetNextSibling()) {
|
|
|
|
f->SetParent(aParent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-28 12:51:08 +00:00
|
|
|
#ifdef DEBUG
|
1999-02-03 19:10:26 +00:00
|
|
|
void
|
2005-09-06 21:34:50 +00:00
|
|
|
nsFrameList::List(FILE* out) const
|
1999-02-03 19:10:26 +00:00
|
|
|
{
|
|
|
|
fputs("<\n", out);
|
2003-07-02 10:30:00 +00:00
|
|
|
for (nsIFrame* frame = mFirstChild; frame;
|
|
|
|
frame = frame->GetNextSibling()) {
|
2009-08-20 21:52:48 +00:00
|
|
|
frame->List(out, 1);
|
1999-02-03 19:10:26 +00:00
|
|
|
}
|
1999-03-24 15:40:44 +00:00
|
|
|
fputs(">\n", out);
|
1999-02-03 19:10:26 +00:00
|
|
|
}
|
1999-11-01 22:12:45 +00:00
|
|
|
#endif
|
2001-03-21 01:16:22 +00:00
|
|
|
|
|
|
|
#ifdef IBMBIDI
|
|
|
|
nsIFrame*
|
|
|
|
nsFrameList::GetPrevVisualFor(nsIFrame* aFrame) const
|
|
|
|
{
|
2006-03-14 09:16:40 +00:00
|
|
|
if (!mFirstChild)
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2006-03-14 09:16:40 +00:00
|
|
|
|
|
|
|
nsIFrame* parent = mFirstChild->GetParent();
|
|
|
|
if (!parent)
|
2009-10-02 16:27:37 +00:00
|
|
|
return aFrame ? aFrame->GetPrevSibling() : LastChild();
|
2005-10-21 20:08:50 +00:00
|
|
|
|
2007-01-13 18:20:28 +00:00
|
|
|
nsBidiLevel baseLevel = nsBidiPresUtils::GetFrameBaseLevel(mFirstChild);
|
|
|
|
|
2008-10-30 19:17:59 +00:00
|
|
|
nsAutoLineIterator iter = parent->GetLineIterator();
|
|
|
|
if (!iter) {
|
2007-01-13 18:20:28 +00:00
|
|
|
// Parent is not a block Frame
|
|
|
|
if (parent->GetType() == nsGkAtoms::lineFrame) {
|
|
|
|
// Line frames are not bidi-splittable, so need to consider bidi reordering
|
|
|
|
if (baseLevel == NSBIDI_LTR) {
|
2011-04-13 09:23:49 +00:00
|
|
|
return nsBidiPresUtils::GetFrameToLeftOf(aFrame, mFirstChild, -1);
|
2007-01-13 18:20:28 +00:00
|
|
|
} else { // RTL
|
2011-04-13 09:23:49 +00:00
|
|
|
return nsBidiPresUtils::GetFrameToRightOf(aFrame, mFirstChild, -1);
|
2007-01-13 18:20:28 +00:00
|
|
|
}
|
2006-03-12 09:49:48 +00:00
|
|
|
} else {
|
2007-01-13 18:20:28 +00:00
|
|
|
// Just get the next or prev sibling, depending on block and frame direction.
|
|
|
|
nsBidiLevel frameEmbeddingLevel = nsBidiPresUtils::GetFrameEmbeddingLevel(mFirstChild);
|
|
|
|
if ((frameEmbeddingLevel & 1) == (baseLevel & 1)) {
|
2009-10-02 16:27:37 +00:00
|
|
|
return aFrame ? aFrame->GetPrevSibling() : LastChild();
|
2007-01-13 18:20:28 +00:00
|
|
|
} else {
|
|
|
|
return aFrame ? aFrame->GetNextSibling() : mFirstChild;
|
|
|
|
}
|
|
|
|
}
|
2001-03-21 01:16:22 +00:00
|
|
|
}
|
|
|
|
|
2007-01-13 18:20:28 +00:00
|
|
|
// Parent is a block frame, so use the LineIterator to find the previous visual
|
|
|
|
// sibling on this line, or the last one on the previous line.
|
2001-03-21 01:16:22 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t thisLine;
|
2006-03-14 09:16:40 +00:00
|
|
|
if (aFrame) {
|
2008-10-30 19:17:59 +00:00
|
|
|
thisLine = iter->FindLineContaining(aFrame);
|
|
|
|
if (thisLine < 0)
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2006-03-14 09:16:40 +00:00
|
|
|
} else {
|
2008-10-30 19:17:59 +00:00
|
|
|
thisLine = iter->GetNumLines();
|
2006-03-14 09:16:40 +00:00
|
|
|
}
|
2007-01-13 18:20:28 +00:00
|
|
|
|
2012-07-30 14:20:58 +00:00
|
|
|
nsIFrame* frame = nullptr;
|
2006-03-12 09:49:48 +00:00
|
|
|
nsIFrame* firstFrameOnLine;
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t numFramesOnLine;
|
2006-03-12 09:49:48 +00:00
|
|
|
nsRect lineBounds;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t lineFlags;
|
2006-03-12 09:49:48 +00:00
|
|
|
|
2006-03-14 09:16:40 +00:00
|
|
|
if (aFrame) {
|
|
|
|
iter->GetLine(thisLine, &firstFrameOnLine, &numFramesOnLine, lineBounds, &lineFlags);
|
|
|
|
|
|
|
|
if (baseLevel == NSBIDI_LTR) {
|
2011-04-13 09:23:49 +00:00
|
|
|
frame = nsBidiPresUtils::GetFrameToLeftOf(aFrame, firstFrameOnLine, numFramesOnLine);
|
2006-03-14 09:16:40 +00:00
|
|
|
} else { // RTL
|
2011-04-13 09:23:49 +00:00
|
|
|
frame = nsBidiPresUtils::GetFrameToRightOf(aFrame, firstFrameOnLine, numFramesOnLine);
|
2006-03-14 09:16:40 +00:00
|
|
|
}
|
2006-03-12 09:49:48 +00:00
|
|
|
}
|
2001-03-21 01:16:22 +00:00
|
|
|
|
2006-03-12 09:49:48 +00:00
|
|
|
if (!frame && thisLine > 0) {
|
|
|
|
// Get the last frame of the previous line
|
|
|
|
iter->GetLine(thisLine - 1, &firstFrameOnLine, &numFramesOnLine, lineBounds, &lineFlags);
|
|
|
|
|
|
|
|
if (baseLevel == NSBIDI_LTR) {
|
2012-07-30 14:20:58 +00:00
|
|
|
frame = nsBidiPresUtils::GetFrameToLeftOf(nullptr, firstFrameOnLine, numFramesOnLine);
|
2006-03-12 09:49:48 +00:00
|
|
|
} else { // RTL
|
2012-07-30 14:20:58 +00:00
|
|
|
frame = nsBidiPresUtils::GetFrameToRightOf(nullptr, firstFrameOnLine, numFramesOnLine);
|
2001-03-21 01:16:22 +00:00
|
|
|
}
|
|
|
|
}
|
2006-03-12 09:49:48 +00:00
|
|
|
return frame;
|
2001-03-21 01:16:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame*
|
|
|
|
nsFrameList::GetNextVisualFor(nsIFrame* aFrame) const
|
|
|
|
{
|
2006-03-14 09:16:40 +00:00
|
|
|
if (!mFirstChild)
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2006-03-14 09:16:40 +00:00
|
|
|
|
|
|
|
nsIFrame* parent = mFirstChild->GetParent();
|
|
|
|
if (!parent)
|
2009-10-02 16:27:37 +00:00
|
|
|
return aFrame ? aFrame->GetPrevSibling() : mFirstChild;
|
2005-10-21 20:08:50 +00:00
|
|
|
|
2006-03-14 09:16:40 +00:00
|
|
|
nsBidiLevel baseLevel = nsBidiPresUtils::GetFrameBaseLevel(mFirstChild);
|
2005-10-21 20:08:50 +00:00
|
|
|
|
2008-10-30 19:17:59 +00:00
|
|
|
nsAutoLineIterator iter = parent->GetLineIterator();
|
|
|
|
if (!iter) {
|
2007-01-13 18:20:28 +00:00
|
|
|
// Parent is not a block Frame
|
|
|
|
if (parent->GetType() == nsGkAtoms::lineFrame) {
|
|
|
|
// Line frames are not bidi-splittable, so need to consider bidi reordering
|
|
|
|
if (baseLevel == NSBIDI_LTR) {
|
2011-04-13 09:23:49 +00:00
|
|
|
return nsBidiPresUtils::GetFrameToRightOf(aFrame, mFirstChild, -1);
|
2007-01-13 18:20:28 +00:00
|
|
|
} else { // RTL
|
2011-04-13 09:23:49 +00:00
|
|
|
return nsBidiPresUtils::GetFrameToLeftOf(aFrame, mFirstChild, -1);
|
2007-01-13 18:20:28 +00:00
|
|
|
}
|
2006-03-12 09:49:48 +00:00
|
|
|
} else {
|
2007-01-13 18:20:28 +00:00
|
|
|
// Just get the next or prev sibling, depending on block and frame direction.
|
|
|
|
nsBidiLevel frameEmbeddingLevel = nsBidiPresUtils::GetFrameEmbeddingLevel(mFirstChild);
|
|
|
|
if ((frameEmbeddingLevel & 1) == (baseLevel & 1)) {
|
|
|
|
return aFrame ? aFrame->GetNextSibling() : mFirstChild;
|
|
|
|
} else {
|
2009-10-02 16:27:37 +00:00
|
|
|
return aFrame ? aFrame->GetPrevSibling() : LastChild();
|
2007-01-13 18:20:28 +00:00
|
|
|
}
|
|
|
|
}
|
2006-03-12 09:49:48 +00:00
|
|
|
}
|
|
|
|
|
2007-01-13 18:20:28 +00:00
|
|
|
// Parent is a block frame, so use the LineIterator to find the next visual
|
|
|
|
// sibling on this line, or the first one on the next line.
|
2006-03-12 09:49:48 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t thisLine;
|
2006-03-14 09:16:40 +00:00
|
|
|
if (aFrame) {
|
2008-10-30 19:17:59 +00:00
|
|
|
thisLine = iter->FindLineContaining(aFrame);
|
|
|
|
if (thisLine < 0)
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2006-03-14 09:16:40 +00:00
|
|
|
} else {
|
|
|
|
thisLine = -1;
|
|
|
|
}
|
2007-01-13 18:20:28 +00:00
|
|
|
|
2012-07-30 14:20:58 +00:00
|
|
|
nsIFrame* frame = nullptr;
|
2006-03-12 09:49:48 +00:00
|
|
|
nsIFrame* firstFrameOnLine;
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t numFramesOnLine;
|
2006-03-12 09:49:48 +00:00
|
|
|
nsRect lineBounds;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t lineFlags;
|
2006-03-14 09:16:40 +00:00
|
|
|
|
|
|
|
if (aFrame) {
|
|
|
|
iter->GetLine(thisLine, &firstFrameOnLine, &numFramesOnLine, lineBounds, &lineFlags);
|
|
|
|
|
|
|
|
if (baseLevel == NSBIDI_LTR) {
|
2011-04-13 09:23:49 +00:00
|
|
|
frame = nsBidiPresUtils::GetFrameToRightOf(aFrame, firstFrameOnLine, numFramesOnLine);
|
2006-03-14 09:16:40 +00:00
|
|
|
} else { // RTL
|
2011-04-13 09:23:49 +00:00
|
|
|
frame = nsBidiPresUtils::GetFrameToLeftOf(aFrame, firstFrameOnLine, numFramesOnLine);
|
2006-03-14 09:16:40 +00:00
|
|
|
}
|
2006-03-12 09:49:48 +00:00
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t numLines = iter->GetNumLines();
|
2006-03-12 09:49:48 +00:00
|
|
|
if (!frame && thisLine < numLines - 1) {
|
|
|
|
// Get the first frame of the next line
|
|
|
|
iter->GetLine(thisLine + 1, &firstFrameOnLine, &numFramesOnLine, lineBounds, &lineFlags);
|
|
|
|
|
|
|
|
if (baseLevel == NSBIDI_LTR) {
|
2012-07-30 14:20:58 +00:00
|
|
|
frame = nsBidiPresUtils::GetFrameToRightOf(nullptr, firstFrameOnLine, numFramesOnLine);
|
2006-03-12 09:49:48 +00:00
|
|
|
} else { // RTL
|
2012-07-30 14:20:58 +00:00
|
|
|
frame = nsBidiPresUtils::GetFrameToLeftOf(nullptr, firstFrameOnLine, numFramesOnLine);
|
2001-03-21 01:16:22 +00:00
|
|
|
}
|
|
|
|
}
|
2006-03-12 09:49:48 +00:00
|
|
|
return frame;
|
2001-03-21 01:16:22 +00:00
|
|
|
}
|
|
|
|
#endif
|
2004-10-30 18:35:53 +00:00
|
|
|
|
2009-11-03 18:39:41 +00:00
|
|
|
#ifdef DEBUG_FRAME_LIST
|
2004-10-30 18:35:53 +00:00
|
|
|
void
|
2009-09-18 11:09:36 +00:00
|
|
|
nsFrameList::VerifyList() const
|
2004-10-30 18:35:53 +00:00
|
|
|
{
|
2012-07-30 14:20:58 +00:00
|
|
|
NS_ASSERTION((mFirstChild == nullptr) == (mLastChild == nullptr),
|
2009-09-18 11:09:36 +00:00
|
|
|
"bad list state");
|
|
|
|
|
|
|
|
if (IsEmpty()) {
|
2004-10-30 18:35:53 +00:00
|
|
|
return;
|
|
|
|
}
|
2009-09-18 11:09:36 +00:00
|
|
|
|
2004-10-30 18:35:53 +00:00
|
|
|
// Simple algorithm to find a loop in a linked list -- advance pointers
|
|
|
|
// through it at speeds of 1 and 2, and if they ever get to be equal bail
|
2010-08-06 04:59:20 +00:00
|
|
|
NS_ASSERTION(!mFirstChild->GetPrevSibling(), "bad prev sibling pointer");
|
2004-10-30 18:35:53 +00:00
|
|
|
nsIFrame *first = mFirstChild, *second = mFirstChild;
|
2010-08-06 04:59:20 +00:00
|
|
|
for (;;) {
|
2004-10-30 18:35:53 +00:00
|
|
|
first = first->GetNextSibling();
|
|
|
|
second = second->GetNextSibling();
|
|
|
|
if (!second) {
|
|
|
|
break;
|
|
|
|
}
|
2010-08-06 04:59:20 +00:00
|
|
|
NS_ASSERTION(second->GetPrevSibling()->GetNextSibling() == second,
|
|
|
|
"bad prev sibling pointer");
|
2004-10-30 18:35:53 +00:00
|
|
|
second = second->GetNextSibling();
|
|
|
|
if (first == second) {
|
|
|
|
// Loop detected! Since second advances faster, they can't both be null;
|
|
|
|
// we would have broken out of the loop long ago.
|
|
|
|
NS_ERROR("loop in frame list. This will probably hang soon.");
|
2009-09-18 11:09:36 +00:00
|
|
|
return;
|
2004-10-30 18:35:53 +00:00
|
|
|
}
|
2010-08-06 04:59:20 +00:00
|
|
|
if (!second) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
NS_ASSERTION(second->GetPrevSibling()->GetNextSibling() == second,
|
|
|
|
"bad prev sibling pointer");
|
|
|
|
}
|
2009-09-18 11:09:36 +00:00
|
|
|
|
|
|
|
NS_ASSERTION(mLastChild == nsLayoutUtils::GetLastSibling(mFirstChild),
|
|
|
|
"bogus mLastChild");
|
|
|
|
// XXX we should also assert that all GetParent() are either null or
|
|
|
|
// the same non-null value, but nsCSSFrameConstructor::nsFrameItems
|
|
|
|
// prevents that, e.g. table captions.
|
2004-10-30 18:35:53 +00:00
|
|
|
}
|
|
|
|
#endif
|