2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* interface for rendering objects that manually create subtrees of
|
|
|
|
* anonymous content
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef nsIAnonymousContentCreator_h___
|
|
|
|
#define nsIAnonymousContentCreator_h___
|
|
|
|
|
2009-01-12 11:20:59 -08:00
|
|
|
#include "nsQueryFrame.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIContent.h"
|
2011-05-06 13:04:44 -07:00
|
|
|
#include "nsStyleContext.h"
|
2012-12-18 17:16:06 -08:00
|
|
|
#include "nsTArrayForwardDeclare.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-08-11 06:29:50 -07:00
|
|
|
class nsBaseContentList;
|
2007-03-22 10:30:00 -07:00
|
|
|
class nsIFrame;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Any source for anonymous content can implement this interface to provide it.
|
2009-01-29 11:46:17 -08:00
|
|
|
* HTML frames like nsFileControlFrame currently use this.
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* @see nsCSSFrameConstructor
|
|
|
|
*/
|
2009-01-12 11:20:59 -08:00
|
|
|
class nsIAnonymousContentCreator
|
|
|
|
{
|
2007-03-22 10:30:00 -07:00
|
|
|
public:
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_DECL_QUERYFRAME_TARGET(nsIAnonymousContentCreator)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-05-06 13:04:44 -07:00
|
|
|
struct ContentInfo {
|
|
|
|
ContentInfo(nsIContent* aContent) :
|
|
|
|
mContent(aContent)
|
|
|
|
{}
|
|
|
|
|
|
|
|
ContentInfo(nsIContent* aContent, nsStyleContext* aStyleContext) :
|
|
|
|
mContent(aContent), mStyleContext(aStyleContext)
|
|
|
|
{}
|
|
|
|
|
|
|
|
nsIContent* mContent;
|
|
|
|
nsRefPtr<nsStyleContext> mStyleContext;
|
|
|
|
};
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
|
|
|
* Creates "native" anonymous content and adds the created content to
|
2012-07-30 07:20:58 -07:00
|
|
|
* the aElements array. None of the returned elements can be nullptr.
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
2010-11-16 12:45:49 -08:00
|
|
|
* If the anonymous content creator sets the editable flag on some
|
|
|
|
* of the elements that it creates, the flag will be applied to the node
|
|
|
|
* upon being bound to the document.
|
|
|
|
*
|
2007-03-22 10:30:00 -07:00
|
|
|
* @note The returned elements are owned by this object. This object is
|
|
|
|
* responsible for calling UnbindFromTree on the elements it returned
|
|
|
|
* from CreateAnonymousContent when appropriate (i.e. before releasing
|
|
|
|
* them).
|
|
|
|
*/
|
2011-05-06 13:04:44 -07:00
|
|
|
virtual nsresult CreateAnonymousContent(nsTArray<ContentInfo>& aElements)=0;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-02-11 09:34:01 -08:00
|
|
|
/**
|
2010-02-20 16:52:50 -08:00
|
|
|
* Appends "native" anonymous children created by CreateAnonymousContent()
|
2010-10-15 08:34:35 -07:00
|
|
|
* to the given content list depending on the filter.
|
|
|
|
*
|
|
|
|
* @see nsIContent::GetChildren for set of values used for filter.
|
2010-02-11 09:34:01 -08:00
|
|
|
*/
|
2010-10-15 08:34:35 -07:00
|
|
|
virtual void AppendAnonymousContentTo(nsBaseContentList& aElements,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t aFilter) = 0;
|
2010-02-11 09:34:01 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
|
|
|
* Implementations can override this method to create special frames for the
|
|
|
|
* anonymous content returned from CreateAnonymousContent.
|
2012-07-30 07:20:58 -07:00
|
|
|
* By default this method returns nullptr, which means the default frame
|
2007-03-22 10:30:00 -07:00
|
|
|
* is created.
|
|
|
|
*/
|
2012-07-30 07:20:58 -07:00
|
|
|
virtual nsIFrame* CreateFrameFor(nsIContent* aContent) { return nullptr; }
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|