2004-02-23 21:29:06 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* vim:cindent:ts=2:et:sw=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/.
|
2004-02-23 21:29:06 +00:00
|
|
|
*
|
|
|
|
* This Original Code has been modified by IBM Corporation. Modifications made
|
|
|
|
* by IBM described herein are Copyright (c) International Business Machines
|
|
|
|
* Corporation, 2000. Modifications to Mozilla code or documentation identified
|
|
|
|
* per MPL Section 3.3
|
|
|
|
*
|
|
|
|
* Date Modified by Description of modification
|
|
|
|
* 04/20/2000 IBM Corp. OS/2 VisualAge build.
|
|
|
|
*/
|
|
|
|
|
2006-03-30 05:56:38 +00:00
|
|
|
/* storage of the frame tree and information about it */
|
|
|
|
|
2004-02-23 21:29:06 +00:00
|
|
|
#ifndef _nsFrameManager_h_
|
|
|
|
#define _nsFrameManager_h_
|
|
|
|
|
|
|
|
#include "nsIFrame.h"
|
2004-03-06 04:46:11 +00:00
|
|
|
#include "nsFrameManagerBase.h"
|
2004-02-24 00:36:35 +00:00
|
|
|
|
2010-06-18 16:23:05 +00:00
|
|
|
namespace mozilla {
|
2013-07-20 19:14:25 +00:00
|
|
|
/**
|
|
|
|
* Node in a linked list, containing the style for an element that
|
|
|
|
* does not have a frame but whose parent does have a frame.
|
|
|
|
*/
|
|
|
|
struct UndisplayedNode {
|
|
|
|
UndisplayedNode(nsIContent* aContent, nsStyleContext* aStyle)
|
|
|
|
: mContent(aContent),
|
|
|
|
mStyle(aStyle),
|
|
|
|
mNext(nullptr)
|
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(mozilla::UndisplayedNode);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_HIDDEN ~UndisplayedNode()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(mozilla::UndisplayedNode);
|
|
|
|
|
|
|
|
// Delete mNext iteratively to avoid blowing up the stack (bug 460461).
|
|
|
|
UndisplayedNode* cur = mNext;
|
|
|
|
while (cur) {
|
|
|
|
UndisplayedNode* next = cur->mNext;
|
|
|
|
cur->mNext = nullptr;
|
|
|
|
delete cur;
|
|
|
|
cur = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIContent> mContent;
|
|
|
|
nsRefPtr<nsStyleContext> mStyle;
|
|
|
|
UndisplayedNode* mNext;
|
|
|
|
};
|
|
|
|
|
2010-06-18 16:23:05 +00:00
|
|
|
} // namespace mozilla
|
|
|
|
|
2004-02-23 21:29:06 +00:00
|
|
|
/**
|
|
|
|
* Frame manager interface. The frame manager serves two purposes:
|
|
|
|
* <li>provides a service for mapping from content to frame and from
|
|
|
|
* out-of-flow frame to placeholder frame.
|
|
|
|
* <li>handles structural modifications to the frame model. If the frame model
|
|
|
|
* lock can be acquired, then the changes are processed immediately; otherwise,
|
|
|
|
* they're queued and processed later.
|
2004-03-06 04:53:30 +00:00
|
|
|
*
|
|
|
|
* Do not add virtual methods to this class, or bryner will punish you.
|
2004-02-23 21:29:06 +00:00
|
|
|
*/
|
|
|
|
|
2004-03-06 04:46:11 +00:00
|
|
|
class nsFrameManager : public nsFrameManagerBase
|
2004-02-23 21:29:06 +00:00
|
|
|
{
|
2011-08-24 20:54:30 +00:00
|
|
|
typedef nsIFrame::ChildListID ChildListID;
|
2010-06-18 16:23:05 +00:00
|
|
|
|
2004-02-23 21:29:06 +00:00
|
|
|
public:
|
2013-03-31 22:43:04 +00:00
|
|
|
nsFrameManager(nsIPresShell *aPresShell, nsStyleSet* aStyleSet) NS_HIDDEN {
|
2012-02-02 10:06:46 +00:00
|
|
|
mPresShell = aPresShell;
|
2013-03-31 22:43:04 +00:00
|
|
|
mStyleSet = aStyleSet;
|
|
|
|
MOZ_ASSERT(mPresShell, "need a pres shell");
|
|
|
|
MOZ_ASSERT(mStyleSet, "need a style set");
|
2004-03-06 04:46:11 +00:00
|
|
|
}
|
2012-02-02 10:06:46 +00:00
|
|
|
~nsFrameManager() NS_HIDDEN;
|
2004-03-06 04:46:11 +00:00
|
|
|
|
2004-02-23 21:29:06 +00:00
|
|
|
/*
|
|
|
|
* After Destroy is called, it is an error to call any FrameManager methods.
|
|
|
|
* Destroy should be called when the frame tree managed by the frame
|
|
|
|
* manager is no longer being displayed.
|
|
|
|
*/
|
|
|
|
NS_HIDDEN_(void) Destroy();
|
|
|
|
|
|
|
|
// Placeholder frame functions
|
2012-02-15 09:28:21 +00:00
|
|
|
NS_HIDDEN_(nsPlaceholderFrame*) GetPlaceholderFrameFor(const nsIFrame* aFrame);
|
2004-02-23 21:29:06 +00:00
|
|
|
NS_HIDDEN_(nsresult)
|
|
|
|
RegisterPlaceholderFrame(nsPlaceholderFrame* aPlaceholderFrame);
|
|
|
|
|
|
|
|
NS_HIDDEN_(void)
|
|
|
|
UnregisterPlaceholderFrame(nsPlaceholderFrame* aPlaceholderFrame);
|
|
|
|
|
|
|
|
NS_HIDDEN_(void) ClearPlaceholderFrameMap();
|
|
|
|
|
|
|
|
// Mapping undisplayed content
|
|
|
|
NS_HIDDEN_(nsStyleContext*) GetUndisplayedContent(nsIContent* aContent);
|
2013-07-20 19:14:25 +00:00
|
|
|
NS_HIDDEN_(mozilla::UndisplayedNode*)
|
|
|
|
GetAllUndisplayedContentIn(nsIContent* aParentContent);
|
2004-02-23 21:29:06 +00:00
|
|
|
NS_HIDDEN_(void) SetUndisplayedContent(nsIContent* aContent,
|
|
|
|
nsStyleContext* aStyleContext);
|
|
|
|
NS_HIDDEN_(void) ChangeUndisplayedContent(nsIContent* aContent,
|
|
|
|
nsStyleContext* aStyleContext);
|
|
|
|
NS_HIDDEN_(void) ClearUndisplayedContentIn(nsIContent* aContent,
|
|
|
|
nsIContent* aParentContent);
|
|
|
|
NS_HIDDEN_(void) ClearAllUndisplayedContentIn(nsIContent* aParentContent);
|
|
|
|
|
|
|
|
// Functions for manipulating the frame model
|
|
|
|
NS_HIDDEN_(nsresult) AppendFrames(nsIFrame* aParentFrame,
|
2011-08-24 20:54:30 +00:00
|
|
|
ChildListID aListID,
|
2011-04-29 23:02:33 +00:00
|
|
|
nsFrameList& aFrameList);
|
2004-02-23 21:29:06 +00:00
|
|
|
|
|
|
|
NS_HIDDEN_(nsresult) InsertFrames(nsIFrame* aParentFrame,
|
2011-08-24 20:54:30 +00:00
|
|
|
ChildListID aListID,
|
2004-02-23 21:29:06 +00:00
|
|
|
nsIFrame* aPrevFrame,
|
2009-07-30 17:23:32 +00:00
|
|
|
nsFrameList& aFrameList);
|
2004-02-23 21:29:06 +00:00
|
|
|
|
2011-08-24 20:54:30 +00:00
|
|
|
NS_HIDDEN_(nsresult) RemoveFrame(ChildListID aListID,
|
2012-08-29 05:39:31 +00:00
|
|
|
nsIFrame* aOldFrame);
|
2004-02-23 21:29:06 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Notification that a frame is about to be destroyed. This allows any
|
|
|
|
* outstanding references to the frame to be cleaned up.
|
|
|
|
*/
|
|
|
|
NS_HIDDEN_(void) NotifyDestroyingFrame(nsIFrame* aFrame);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Capture/restore frame state for the frame subtree rooted at aFrame.
|
|
|
|
* aState is the document state storage object onto which each frame
|
2012-05-10 01:27:47 +00:00
|
|
|
* stores its state. Callers of CaptureFrameState are responsible for
|
|
|
|
* traversing next continuations of special siblings of aFrame as
|
|
|
|
* needed; this method will only work with actual frametree descendants
|
|
|
|
* of aFrame.
|
2004-02-23 21:29:06 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
NS_HIDDEN_(void) CaptureFrameState(nsIFrame* aFrame,
|
|
|
|
nsILayoutHistoryState* aState);
|
|
|
|
|
|
|
|
NS_HIDDEN_(void) RestoreFrameState(nsIFrame* aFrame,
|
|
|
|
nsILayoutHistoryState* aState);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add/restore state for one frame
|
|
|
|
*/
|
|
|
|
NS_HIDDEN_(void) CaptureFrameStateFor(nsIFrame* aFrame,
|
2012-11-15 06:40:17 +00:00
|
|
|
nsILayoutHistoryState* aState);
|
2004-02-23 21:29:06 +00:00
|
|
|
|
|
|
|
NS_HIDDEN_(void) RestoreFrameStateFor(nsIFrame* aFrame,
|
2012-11-15 06:40:17 +00:00
|
|
|
nsILayoutHistoryState* aState);
|
2004-02-23 21:29:06 +00:00
|
|
|
|
|
|
|
NS_HIDDEN_(nsIPresShell*) GetPresShell() const { return mPresShell; }
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_HIDDEN_(nsPresContext*) GetPresContext() const {
|
2004-02-23 21:29:06 +00:00
|
|
|
return mPresShell->GetPresContext();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|