2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04: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/. */
|
1999-07-01 02:17:43 +04:00
|
|
|
|
2006-03-29 22:29:03 +04:00
|
|
|
/*
|
|
|
|
* interface for rendering objects that manually create subtrees of
|
|
|
|
* anonymous content
|
|
|
|
*/
|
1999-07-01 02:17:43 +04:00
|
|
|
|
|
|
|
#ifndef nsIAnonymousContentCreator_h___
|
|
|
|
#define nsIAnonymousContentCreator_h___
|
|
|
|
|
2009-01-12 22:20:59 +03:00
|
|
|
#include "nsQueryFrame.h"
|
2011-05-07 00:04:44 +04:00
|
|
|
#include "nsStyleContext.h"
|
2012-12-19 05:16:06 +04:00
|
|
|
#include "nsTArrayForwardDeclare.h"
|
1999-08-20 02:16:23 +04:00
|
|
|
|
2014-08-18 18:44:50 +04:00
|
|
|
class nsIContent;
|
2000-04-19 17:55:17 +04:00
|
|
|
class nsIFrame;
|
1999-07-01 02:17:43 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Any source for anonymous content can implement this interface to provide it.
|
2009-01-29 22:46:17 +03:00
|
|
|
* HTML frames like nsFileControlFrame currently use this.
|
2007-02-18 20:34:09 +03:00
|
|
|
*
|
|
|
|
* @see nsCSSFrameConstructor
|
1999-07-01 02:17:43 +04:00
|
|
|
*/
|
2009-01-12 22:20:59 +03:00
|
|
|
class nsIAnonymousContentCreator
|
|
|
|
{
|
1999-07-01 02:17:43 +04:00
|
|
|
public:
|
2009-09-12 20:49:24 +04:00
|
|
|
NS_DECL_QUERYFRAME_TARGET(nsIAnonymousContentCreator)
|
2007-02-18 20:34:09 +03:00
|
|
|
|
2011-05-07 00:04:44 +04:00
|
|
|
struct ContentInfo {
|
2014-09-01 07:36:37 +04:00
|
|
|
explicit ContentInfo(nsIContent* aContent) :
|
2011-05-07 00:04:44 +04:00
|
|
|
mContent(aContent)
|
|
|
|
{}
|
|
|
|
|
|
|
|
ContentInfo(nsIContent* aContent, nsStyleContext* aStyleContext) :
|
|
|
|
mContent(aContent), mStyleContext(aStyleContext)
|
|
|
|
{}
|
|
|
|
|
|
|
|
nsIContent* mContent;
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<nsStyleContext> mStyleContext;
|
2013-10-02 01:51:29 +04:00
|
|
|
nsTArray<ContentInfo> mChildren;
|
2011-05-07 00:04:44 +04:00
|
|
|
};
|
|
|
|
|
2007-02-18 20:34:09 +03:00
|
|
|
/**
|
|
|
|
* Creates "native" anonymous content and adds the created content to
|
2012-07-30 18:20:58 +04:00
|
|
|
* the aElements array. None of the returned elements can be nullptr.
|
2007-02-18 20:34:09 +03:00
|
|
|
*
|
2010-11-16 23:45:49 +03: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-02-18 20:34:09 +03: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).
|
2013-10-02 01:51:29 +04:00
|
|
|
*
|
|
|
|
* @note Implementations of this method that add items to mChildren must not
|
|
|
|
* hook them up to any parent since frame construction takes care of
|
|
|
|
* that.
|
2007-02-18 20:34:09 +03:00
|
|
|
*/
|
2011-05-07 00:04:44 +04:00
|
|
|
virtual nsresult CreateAnonymousContent(nsTArray<ContentInfo>& aElements)=0;
|
2000-04-19 17:55:17 +04:00
|
|
|
|
2010-02-11 20:34:01 +03:00
|
|
|
/**
|
2010-02-21 03:52:50 +03:00
|
|
|
* Appends "native" anonymous children created by CreateAnonymousContent()
|
2010-10-15 19:34:35 +04:00
|
|
|
* to the given content list depending on the filter.
|
|
|
|
*
|
|
|
|
* @see nsIContent::GetChildren for set of values used for filter.
|
2010-02-11 20:34:01 +03:00
|
|
|
*/
|
2014-07-16 22:41:57 +04:00
|
|
|
virtual void AppendAnonymousContentTo(nsTArray<nsIContent*>& aElements,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t aFilter) = 0;
|
2010-02-11 20:34:01 +03:00
|
|
|
|
2007-02-18 20:34:09 +03:00
|
|
|
/**
|
|
|
|
* Implementations can override this method to create special frames for the
|
|
|
|
* anonymous content returned from CreateAnonymousContent.
|
2012-07-30 18:20:58 +04:00
|
|
|
* By default this method returns nullptr, which means the default frame
|
2007-02-18 20:34:09 +03:00
|
|
|
* is created.
|
|
|
|
*/
|
2012-07-30 18:20:58 +04:00
|
|
|
virtual nsIFrame* CreateFrameFor(nsIContent* aContent) { return nullptr; }
|
1999-07-01 02:17:43 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|