2005-04-01 23:07:00 +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-30 05:56:38 +00:00
|
|
|
|
|
|
|
/* base class for nsCounterList and nsQuoteList */
|
|
|
|
|
2005-04-01 23:07:00 +00:00
|
|
|
#ifndef nsGenConList_h___
|
|
|
|
#define nsGenConList_h___
|
|
|
|
|
|
|
|
#include "nsIFrame.h"
|
|
|
|
#include "nsStyleStruct.h"
|
|
|
|
#include "prclist.h"
|
|
|
|
#include "nsIDOMCharacterData.h"
|
|
|
|
#include "nsCSSPseudoElements.h"
|
|
|
|
|
2008-08-18 01:16:42 +00:00
|
|
|
class nsGenConList;
|
|
|
|
|
2005-04-01 23:07:00 +00:00
|
|
|
struct nsGenConNode : public PRCList {
|
|
|
|
// The wrapper frame for all of the pseudo-element's content. This
|
|
|
|
// frame generally has useful style data and has the
|
|
|
|
// NS_FRAME_GENERATED_CONTENT bit set (so we use it to track removal),
|
|
|
|
// but does not necessarily for |nsCounterChangeNode|s.
|
2008-08-18 01:16:42 +00:00
|
|
|
nsIFrame* mPseudoFrame;
|
2005-04-01 23:07:00 +00:00
|
|
|
|
|
|
|
// Index within the list of things specified by the 'content' property,
|
|
|
|
// which is needed to do 'content: open-quote open-quote' correctly,
|
|
|
|
// and needed for similar cases for counters.
|
2012-08-22 15:56:38 +00:00
|
|
|
const int32_t mContentIndex;
|
2005-04-01 23:07:00 +00:00
|
|
|
|
|
|
|
// null for 'content:no-open-quote', 'content:no-close-quote' and for
|
|
|
|
// counter nodes for increments and resets (rather than uses)
|
|
|
|
nsCOMPtr<nsIDOMCharacterData> mText;
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
nsGenConNode(int32_t aContentIndex)
|
2012-07-30 14:20:58 +00:00
|
|
|
: mPseudoFrame(nullptr)
|
2005-04-01 23:07:00 +00:00
|
|
|
, mContentIndex(aContentIndex)
|
|
|
|
{
|
2008-08-18 01:16:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Finish initializing the generated content node once we know the
|
|
|
|
* relevant text frame. This must be called just after
|
|
|
|
* the textframe has been initialized. This need not be called at all
|
|
|
|
* for nodes that don't generate text. This will generally set the
|
|
|
|
* mPseudoFrame, insert the node into aList, and set aTextFrame up
|
|
|
|
* with the correct text.
|
|
|
|
* @param aList the list the node belongs to
|
|
|
|
* @param aPseudoFrame the :before or :after frame
|
|
|
|
* @param aTextFrame the textframe where the node contents will render
|
|
|
|
* @return true iff this marked the list dirty
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual bool InitTextFrame(nsGenConList* aList, nsIFrame* aPseudoFrame,
|
2008-08-18 01:16:42 +00:00
|
|
|
nsIFrame* aTextFrame)
|
|
|
|
{
|
|
|
|
mPseudoFrame = aPseudoFrame;
|
|
|
|
CheckFrameAssertions();
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2008-08-18 01:16:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~nsGenConNode() {} // XXX Avoid, perhaps?
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void CheckFrameAssertions() {
|
|
|
|
NS_ASSERTION(mContentIndex <
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t(mPseudoFrame->GetStyleContent()->ContentCount()),
|
2005-04-01 23:07:00 +00:00
|
|
|
"index out of range");
|
2008-08-18 01:16:42 +00:00
|
|
|
// We allow negative values of mContentIndex for 'counter-reset' and
|
|
|
|
// 'counter-increment'.
|
2005-04-01 23:07:00 +00:00
|
|
|
|
2008-08-18 01:16:42 +00:00
|
|
|
NS_ASSERTION(mContentIndex < 0 ||
|
2009-10-29 21:17:56 +00:00
|
|
|
mPseudoFrame->GetStyleContext()->GetPseudo() ==
|
2005-04-01 23:07:00 +00:00
|
|
|
nsCSSPseudoElements::before ||
|
2009-10-29 21:17:56 +00:00
|
|
|
mPseudoFrame->GetStyleContext()->GetPseudo() ==
|
2005-04-01 23:07:00 +00:00
|
|
|
nsCSSPseudoElements::after,
|
|
|
|
"not :before/:after generated content and not counter change");
|
2008-08-18 01:16:42 +00:00
|
|
|
NS_ASSERTION(mContentIndex < 0 ||
|
|
|
|
mPseudoFrame->GetStateBits() & NS_FRAME_GENERATED_CONTENT,
|
2005-04-01 23:07:00 +00:00
|
|
|
"not generated content and not counter change");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class nsGenConList {
|
|
|
|
protected:
|
|
|
|
nsGenConNode* mFirstNode;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t mSize;
|
2005-04-01 23:07:00 +00:00
|
|
|
public:
|
2012-07-30 14:20:58 +00:00
|
|
|
nsGenConList() : mFirstNode(nullptr), mSize(0) {}
|
2005-04-01 23:07:00 +00:00
|
|
|
~nsGenConList() { Clear(); }
|
|
|
|
void Clear();
|
|
|
|
static nsGenConNode* Next(nsGenConNode* aNode) {
|
2007-07-08 07:08:04 +00:00
|
|
|
return static_cast<nsGenConNode*>(PR_NEXT_LINK(aNode));
|
2005-04-01 23:07:00 +00:00
|
|
|
}
|
|
|
|
static nsGenConNode* Prev(nsGenConNode* aNode) {
|
2007-07-08 07:08:04 +00:00
|
|
|
return static_cast<nsGenConNode*>(PR_PREV_LINK(aNode));
|
2005-04-01 23:07:00 +00:00
|
|
|
}
|
|
|
|
void Insert(nsGenConNode* aNode);
|
|
|
|
// returns whether any nodes have been destroyed
|
2011-09-29 06:19:26 +00:00
|
|
|
bool DestroyNodesFor(nsIFrame* aFrame); //destroy all nodes with aFrame as parent
|
2005-04-01 23:07:00 +00:00
|
|
|
|
|
|
|
// Return true if |aNode1| is after |aNode2|.
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool NodeAfter(const nsGenConNode* aNode1,
|
2005-04-01 23:07:00 +00:00
|
|
|
const nsGenConNode* aNode2);
|
|
|
|
|
|
|
|
void Remove(nsGenConNode* aNode) { PR_REMOVE_LINK(aNode); mSize--; }
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsLast(nsGenConNode* aNode) { return (Next(aNode) == mFirstNode); }
|
2005-04-01 23:07:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsGenConList_h___ */
|