2017-10-27 20:33:53 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
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/. */
|
2006-03-29 22:29:03 +04:00
|
|
|
|
|
|
|
/* rendering object that goes directly inside the document's scrollbars */
|
|
|
|
|
2009-10-08 10:18:18 +04:00
|
|
|
#include "nsCanvasFrame.h"
|
2014-10-19 16:22:22 +04:00
|
|
|
|
2015-11-16 13:16:43 +03:00
|
|
|
#include "AccessibleCaretEventHub.h"
|
2017-06-09 22:14:53 +03:00
|
|
|
#include "gfxContext.h"
|
2014-10-19 16:22:22 +04:00
|
|
|
#include "gfxUtils.h"
|
2011-12-28 00:18:48 +04:00
|
|
|
#include "nsContainerFrame.h"
|
1998-09-26 03:39:06 +04:00
|
|
|
#include "nsCSSRendering.h"
|
2004-08-01 03:15:21 +04:00
|
|
|
#include "nsPresContext.h"
|
2007-01-30 03:06:41 +03:00
|
|
|
#include "nsGkAtoms.h"
|
2017-03-07 03:11:44 +03:00
|
|
|
#include "nsIFrameInlines.h"
|
1999-07-27 18:15:42 +04:00
|
|
|
#include "nsIPresShell.h"
|
2006-01-26 05:29:17 +03:00
|
|
|
#include "nsDisplayList.h"
|
2009-09-18 15:09:35 +04:00
|
|
|
#include "nsCSSFrameConstructor.h"
|
2009-09-03 08:10:13 +04:00
|
|
|
#include "nsFrameManager.h"
|
2013-08-27 06:08:05 +04:00
|
|
|
#include "gfxPlatform.h"
|
2014-06-04 00:21:39 +04:00
|
|
|
#include "nsPrintfCString.h"
|
2018-03-22 21:20:41 +03:00
|
|
|
#include "mozilla/ComputedStyle.h"
|
2014-10-28 13:15:25 +03:00
|
|
|
#include "mozilla/dom/AnonymousContent.h"
|
2017-05-03 15:48:08 +03:00
|
|
|
#include "mozilla/layers/StackingContextHelper.h"
|
2017-10-03 23:31:08 +03:00
|
|
|
#include "mozilla/layers/WebRenderLayerManager.h"
|
2016-11-30 06:14:28 +03:00
|
|
|
#include "mozilla/PresShell.h"
|
2001-05-23 03:52:17 +04:00
|
|
|
// for focus
|
|
|
|
#include "nsIScrollableFrame.h"
|
2013-08-22 22:32:52 +04:00
|
|
|
#ifdef DEBUG_CANVAS_FOCUS
|
2001-05-23 03:52:17 +04:00
|
|
|
#include "nsIDocShell.h"
|
2013-08-22 22:32:52 +04:00
|
|
|
#endif
|
2001-05-23 03:52:17 +04:00
|
|
|
|
|
|
|
//#define DEBUG_CANVAS_FOCUS
|
1998-10-19 04:44:28 +04:00
|
|
|
|
2013-10-02 07:46:04 +04:00
|
|
|
using namespace mozilla;
|
2014-10-28 13:15:25 +03:00
|
|
|
using namespace mozilla::dom;
|
2013-04-01 19:26:02 +04:00
|
|
|
using namespace mozilla::layout;
|
2013-10-02 13:12:34 +04:00
|
|
|
using namespace mozilla::gfx;
|
2016-11-24 08:11:29 +03:00
|
|
|
using namespace mozilla::layers;
|
1998-09-09 02:34:40 +04:00
|
|
|
|
2014-05-25 02:20:40 +04:00
|
|
|
nsCanvasFrame*
|
2018-03-22 21:20:41 +03:00
|
|
|
NS_NewCanvasFrame(nsIPresShell* aPresShell, ComputedStyle* aStyle)
|
1998-09-09 02:34:40 +04:00
|
|
|
{
|
2018-03-22 21:20:41 +03:00
|
|
|
return new (aPresShell) nsCanvasFrame(aStyle);
|
1998-09-09 02:34:40 +04:00
|
|
|
}
|
|
|
|
|
2009-10-08 10:18:18 +04:00
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsCanvasFrame)
|
2009-09-12 20:49:24 +04:00
|
|
|
|
2009-10-08 10:18:18 +04:00
|
|
|
NS_QUERYFRAME_HEAD(nsCanvasFrame)
|
|
|
|
NS_QUERYFRAME_ENTRY(nsCanvasFrame)
|
2014-06-03 11:08:25 +04:00
|
|
|
NS_QUERYFRAME_ENTRY(nsIAnonymousContentCreator)
|
2011-12-28 00:18:48 +04:00
|
|
|
NS_QUERYFRAME_TAIL_INHERITING(nsContainerFrame)
|
2001-05-23 03:52:17 +04:00
|
|
|
|
2015-01-20 21:20:04 +03:00
|
|
|
void
|
|
|
|
nsCanvasFrame::ShowCustomContentContainer()
|
|
|
|
{
|
|
|
|
if (mCustomContentContainer) {
|
|
|
|
mCustomContentContainer->UnsetAttr(kNameSpaceID_None, nsGkAtoms::hidden, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsCanvasFrame::HideCustomContentContainer()
|
|
|
|
{
|
|
|
|
if (mCustomContentContainer) {
|
|
|
|
mCustomContentContainer->SetAttr(kNameSpaceID_None, nsGkAtoms::hidden,
|
|
|
|
NS_LITERAL_STRING("true"),
|
|
|
|
true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-03 11:08:25 +04:00
|
|
|
nsresult
|
|
|
|
nsCanvasFrame::CreateAnonymousContent(nsTArray<ContentInfo>& aElements)
|
|
|
|
{
|
2014-06-05 00:58:00 +04:00
|
|
|
if (!mContent) {
|
2014-06-03 11:08:25 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDocument> doc = mContent->OwnerDoc();
|
2014-06-05 00:58:00 +04:00
|
|
|
nsresult rv = NS_OK;
|
2014-06-03 11:08:25 +04:00
|
|
|
|
2014-10-28 13:15:25 +03:00
|
|
|
// Create the custom content container.
|
|
|
|
mCustomContentContainer = doc->CreateHTMLElement(nsGkAtoms::div);
|
2015-07-23 18:51:09 +03:00
|
|
|
#ifdef DEBUG
|
|
|
|
// We restyle our mCustomContentContainer, even though it's root anonymous
|
|
|
|
// content. Normally that's not OK because the frame constructor doesn't know
|
|
|
|
// how to order the frame tree in such cases, but we make this work for this
|
|
|
|
// particular case, so it's OK.
|
|
|
|
mCustomContentContainer->SetProperty(nsGkAtoms::restylableAnonymousNode,
|
|
|
|
reinterpret_cast<void*>(true));
|
|
|
|
#endif // DEBUG
|
|
|
|
|
Bug 1440258: Flag doc level anonymous content instead of guessing. r=bholley
Poking at the frame tree has problems: If we poke in negative (using
eSkipNativeAnonymousContent), as we were doing, we mess up the case where we're
actually _not_ doc-level, and _not_ ::before or ::after. This can't happen for
content documents, but can happen for chrome (since nsDocElementBoxFrame
implements nsIAnonymousContentCreator).
If we poke in positive, as we used to, you get that right, but mess up the
root scrollbar case.
Instead, use a node property to mark doc level anon content. This is a case rare
enough that it seems worth to not steal a node bit.
To recap the failure:
* The initial value of -moz-control-character-visiblity is different on beta
and nightly.
* XUL has a global rule setting -moz-control-character-visibility on the root,
to a value so that it's the initial one on nightly, but the non-initial one
on beta.
* Changes to this property cause a reframe.
* Reframes of a nsIAnonymousContentCreator anon content reframe the container.
* We were failing to inherit correctly for the nsIAnonymousContentCreator
content for the root XUL element on the initial styling, inheriting from the
default computed values instead, since we failed to reach the root element's
primary frame from GetFlattenedTreeParentForDocumentElementNAC ->
AppendDocumentLevelNativeAnonymousContentTo, since the primary frame is set
_after_ processing children.
This seems somewhat risky to change, and inconsistent with any other stuff
the frame constructor does, see bug 973390.
* Given that, the next restyle of the root element, in this case caused due to
the customizable UI, we _found_ the actual correct parent, recomputed the
style, saw that -moz-control-character-visiblity had changed, and reframed.
But we were reframing the whole window, not just the NAC, because of the
fourth bullet point. Reframing the whole window caused us to lose the popup
state (that's bug 1440506).
Worse than that is the fact that given we reframe and reconstruct the
anonymous countent again, we go back to the initial bogus state, just
awaiting for the next restyle to reframe the whole window.
I wish there was a bullet-proof way to test it that isn't just counting reframes
and relying on which properties reframe or not, but due to the nature of
nsIAnonymousContentCreator's NAC, it's not possible in any easy way I can think
of.
MozReview-Commit-ID: IPYB5trsN8R
2018-02-23 04:30:00 +03:00
|
|
|
mCustomContentContainer->SetProperty(nsGkAtoms::docLevelNativeAnonymousContent,
|
|
|
|
reinterpret_cast<void*>(true));
|
|
|
|
|
2014-10-28 13:15:25 +03:00
|
|
|
aElements.AppendElement(mCustomContentContainer);
|
|
|
|
|
2018-01-08 23:00:33 +03:00
|
|
|
// Do not create an accessible object for the container.
|
|
|
|
mCustomContentContainer->SetAttr(kNameSpaceID_None, nsGkAtoms::role,
|
|
|
|
NS_LITERAL_STRING("presentation"), false);
|
|
|
|
|
2014-10-28 13:15:25 +03:00
|
|
|
// XXX add :moz-native-anonymous or will that be automatically set?
|
|
|
|
rv = mCustomContentContainer->SetAttr(kNameSpaceID_None, nsGkAtoms::_class,
|
|
|
|
NS_LITERAL_STRING("moz-custom-content-container"),
|
|
|
|
true);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
// Append all existing AnonymousContent nodes stored at document level if any.
|
2015-01-13 17:44:33 +03:00
|
|
|
size_t len = doc->GetAnonymousContents().Length();
|
|
|
|
for (size_t i = 0; i < len; ++i) {
|
2014-10-28 13:15:25 +03:00
|
|
|
nsCOMPtr<Element> node = doc->GetAnonymousContents()[i]->GetContentNode();
|
|
|
|
mCustomContentContainer->AppendChildTo(node->AsContent(), true);
|
|
|
|
}
|
|
|
|
|
2015-01-20 21:20:04 +03:00
|
|
|
// Only create a frame for mCustomContentContainer if it has some children.
|
|
|
|
if (len == 0) {
|
|
|
|
HideCustomContentContainer();
|
|
|
|
}
|
|
|
|
|
2015-11-16 13:16:43 +03:00
|
|
|
RefPtr<AccessibleCaretEventHub> eventHub =
|
|
|
|
PresContext()->GetPresShell()->GetAccessibleCaretEventHub();
|
|
|
|
if (eventHub) {
|
|
|
|
// AccessibleCaret will insert anonymous caret elements.
|
|
|
|
eventHub->Init();
|
|
|
|
}
|
|
|
|
|
2014-06-03 11:08:25 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-07-16 22:41:57 +04:00
|
|
|
nsCanvasFrame::AppendAnonymousContentTo(nsTArray<nsIContent*>& aElements, uint32_t aFilter)
|
2014-06-03 11:08:25 +04:00
|
|
|
{
|
2017-06-18 12:57:55 +03:00
|
|
|
if (mCustomContentContainer) {
|
|
|
|
aElements.AppendElement(mCustomContentContainer);
|
|
|
|
}
|
2014-06-03 11:08:25 +04:00
|
|
|
}
|
|
|
|
|
2006-04-10 04:16:29 +04:00
|
|
|
void
|
2017-11-07 03:20:33 +03:00
|
|
|
nsCanvasFrame::DestroyFrom(nsIFrame* aDestructRoot, PostDestroyData& aPostDestroyData)
|
2002-07-09 08:30:28 +04:00
|
|
|
{
|
2009-09-03 08:10:13 +04:00
|
|
|
nsIScrollableFrame* sf =
|
|
|
|
PresContext()->GetPresShell()->GetRootScrollFrameAsScrollable();
|
|
|
|
if (sf) {
|
|
|
|
sf->RemoveScrollPositionListener(this);
|
2002-07-09 08:30:28 +04:00
|
|
|
}
|
2001-05-23 03:52:17 +04:00
|
|
|
|
2014-10-28 13:15:25 +03:00
|
|
|
// Elements inserted in the custom content container have the same lifetime as
|
|
|
|
// the document, so before destroying the container, make sure to keep a clone
|
|
|
|
// of each of them at document level so they can be re-appended on reframe.
|
|
|
|
if (mCustomContentContainer) {
|
|
|
|
nsCOMPtr<nsIDocument> doc = mContent->OwnerDoc();
|
|
|
|
ErrorResult rv;
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
nsTArray<RefPtr<mozilla::dom::AnonymousContent>>& docAnonContents =
|
2015-01-13 17:44:33 +03:00
|
|
|
doc->GetAnonymousContents();
|
|
|
|
for (size_t i = 0, len = docAnonContents.Length(); i < len; ++i) {
|
|
|
|
AnonymousContent* content = docAnonContents[i];
|
2014-10-28 13:15:25 +03:00
|
|
|
nsCOMPtr<nsINode> clonedElement = content->GetContentNode()->CloneNode(true, rv);
|
|
|
|
content->SetContentNode(clonedElement->AsElement());
|
|
|
|
}
|
|
|
|
}
|
2017-11-07 03:20:33 +03:00
|
|
|
aPostDestroyData.AddAnonymousContent(mCustomContentContainer.forget());
|
2014-10-28 13:15:25 +03:00
|
|
|
|
2017-11-07 03:20:33 +03:00
|
|
|
nsContainerFrame::DestroyFrom(aDestructRoot, aPostDestroyData);
|
2001-05-23 03:52:17 +04:00
|
|
|
}
|
|
|
|
|
2010-01-29 03:03:42 +03:00
|
|
|
void
|
2009-09-09 09:40:01 +04:00
|
|
|
nsCanvasFrame::ScrollPositionWillChange(nscoord aX, nscoord aY)
|
2001-05-23 03:52:17 +04:00
|
|
|
{
|
|
|
|
if (mDoPaintFocus) {
|
2011-10-17 18:59:28 +04:00
|
|
|
mDoPaintFocus = false;
|
2018-03-06 12:25:21 +03:00
|
|
|
PresShell()->GetRootFrame()->InvalidateFrameSubtree();
|
2001-05-23 03:52:17 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-29 17:16:46 +04:00
|
|
|
NS_IMETHODIMP
|
2011-09-29 10:19:26 +04:00
|
|
|
nsCanvasFrame::SetHasFocus(bool aHasFocus)
|
2005-09-29 17:16:46 +04:00
|
|
|
{
|
|
|
|
if (mDoPaintFocus != aHasFocus) {
|
|
|
|
mDoPaintFocus = aHasFocus;
|
2018-03-06 12:25:21 +03:00
|
|
|
PresShell()->GetRootFrame()->InvalidateFrameSubtree();
|
2010-03-05 03:10:41 +03:00
|
|
|
|
|
|
|
if (!mAddedScrollPositionListener) {
|
|
|
|
nsIScrollableFrame* sf =
|
|
|
|
PresContext()->GetPresShell()->GetRootScrollFrameAsScrollable();
|
2010-03-11 08:37:27 +03:00
|
|
|
if (sf) {
|
|
|
|
sf->AddScrollPositionListener(this);
|
2011-10-17 18:59:28 +04:00
|
|
|
mAddedScrollPositionListener = true;
|
2010-03-11 08:37:27 +03:00
|
|
|
}
|
2010-03-05 03:10:41 +03:00
|
|
|
}
|
2005-09-29 17:16:46 +04:00
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2014-05-28 23:36:58 +04:00
|
|
|
void
|
2011-08-25 00:54:30 +04:00
|
|
|
nsCanvasFrame::SetInitialChildList(ChildListID aListID,
|
2010-03-21 00:54:19 +03:00
|
|
|
nsFrameList& aChildList)
|
2008-09-08 12:13:17 +04:00
|
|
|
{
|
2011-08-25 00:54:30 +04:00
|
|
|
NS_ASSERTION(aListID != kPrincipalList ||
|
|
|
|
aChildList.IsEmpty() || aChildList.OnlyChild(),
|
2008-09-08 12:13:17 +04:00
|
|
|
"Primary child list can have at most one frame in it");
|
2014-05-28 23:36:58 +04:00
|
|
|
nsContainerFrame::SetInitialChildList(aListID, aChildList);
|
2017-02-28 20:58:30 +03:00
|
|
|
MaybePropagateRootElementWritingMode();
|
2008-09-08 12:13:17 +04:00
|
|
|
}
|
|
|
|
|
2014-05-28 23:36:58 +04:00
|
|
|
void
|
2011-08-25 00:54:30 +04:00
|
|
|
nsCanvasFrame::AppendFrames(ChildListID aListID,
|
2010-03-21 00:54:19 +03:00
|
|
|
nsFrameList& aFrameList)
|
1999-07-27 18:15:42 +04:00
|
|
|
{
|
2017-02-28 20:58:30 +03:00
|
|
|
#ifdef DEBUG
|
2014-05-28 23:36:59 +04:00
|
|
|
MOZ_ASSERT(aListID == kPrincipalList, "unexpected child list");
|
2014-06-03 11:08:25 +04:00
|
|
|
if (!mFrames.IsEmpty()) {
|
|
|
|
for (nsFrameList::Enumerator e(aFrameList); !e.AtEnd(); e.Next()) {
|
2015-12-22 09:14:12 +03:00
|
|
|
// We only allow native anonymous child frames to be in principal child
|
|
|
|
// list in canvas frame.
|
2014-06-03 11:08:25 +04:00
|
|
|
MOZ_ASSERT(e.get()->GetContent()->IsInNativeAnonymousSubtree(),
|
|
|
|
"invalid child list");
|
|
|
|
}
|
|
|
|
}
|
2010-03-21 00:54:19 +03:00
|
|
|
nsFrame::VerifyDirtyBitSet(aFrameList);
|
2017-02-28 20:58:30 +03:00
|
|
|
#endif
|
2014-05-28 23:36:59 +04:00
|
|
|
nsContainerFrame::AppendFrames(aListID, aFrameList);
|
2017-02-28 20:58:30 +03:00
|
|
|
MaybePropagateRootElementWritingMode();
|
1999-07-27 18:15:42 +04:00
|
|
|
}
|
|
|
|
|
2014-05-28 23:36:58 +04:00
|
|
|
void
|
2011-08-25 00:54:30 +04:00
|
|
|
nsCanvasFrame::InsertFrames(ChildListID aListID,
|
2010-03-21 00:54:19 +03:00
|
|
|
nsIFrame* aPrevFrame,
|
|
|
|
nsFrameList& aFrameList)
|
1999-07-27 18:15:42 +04:00
|
|
|
{
|
|
|
|
// Because we only support a single child frame inserting is the same
|
|
|
|
// as appending
|
2014-05-28 23:36:58 +04:00
|
|
|
MOZ_ASSERT(!aPrevFrame, "unexpected previous sibling frame");
|
|
|
|
AppendFrames(aListID, aFrameList);
|
2017-02-28 20:58:30 +03:00
|
|
|
MaybePropagateRootElementWritingMode();
|
1999-07-27 18:15:42 +04:00
|
|
|
}
|
|
|
|
|
2017-02-28 20:58:30 +03:00
|
|
|
#ifdef DEBUG
|
2014-05-28 23:36:58 +04:00
|
|
|
void
|
2011-08-25 00:54:30 +04:00
|
|
|
nsCanvasFrame::RemoveFrame(ChildListID aListID,
|
2010-03-21 00:54:19 +03:00
|
|
|
nsIFrame* aOldFrame)
|
1999-07-27 18:15:42 +04:00
|
|
|
{
|
2014-05-28 23:36:59 +04:00
|
|
|
MOZ_ASSERT(aListID == kPrincipalList, "unexpected child list");
|
|
|
|
nsContainerFrame::RemoveFrame(aListID, aOldFrame);
|
1999-07-27 18:15:42 +04:00
|
|
|
}
|
2014-05-28 23:36:59 +04:00
|
|
|
#endif
|
1999-07-27 18:15:42 +04:00
|
|
|
|
2009-10-08 10:18:18 +04:00
|
|
|
nsRect nsCanvasFrame::CanvasArea() const
|
2006-01-26 05:29:17 +03:00
|
|
|
{
|
2010-10-07 08:25:47 +04:00
|
|
|
// Not clear which overflow rect we want here, but it probably doesn't
|
|
|
|
// matter.
|
|
|
|
nsRect result(GetVisualOverflowRect());
|
2006-03-15 19:55:19 +03:00
|
|
|
|
2009-01-12 22:20:59 +03:00
|
|
|
nsIScrollableFrame *scrollableFrame = do_QueryFrame(GetParent());
|
2006-03-15 19:55:19 +03:00
|
|
|
if (scrollableFrame) {
|
2009-09-03 08:26:00 +04:00
|
|
|
nsRect portRect = scrollableFrame->GetScrollPortRect();
|
|
|
|
result.UnionRect(result, nsRect(nsPoint(0, 0), portRect.Size()));
|
2006-03-15 19:55:19 +03:00
|
|
|
}
|
|
|
|
return result;
|
2006-01-26 05:29:17 +03:00
|
|
|
}
|
|
|
|
|
2012-12-13 05:15:55 +04:00
|
|
|
void
|
|
|
|
nsDisplayCanvasBackgroundColor::Paint(nsDisplayListBuilder* aBuilder,
|
2017-06-09 22:14:53 +03:00
|
|
|
gfxContext* aCtx)
|
2012-12-13 05:15:55 +04:00
|
|
|
{
|
|
|
|
nsCanvasFrame* frame = static_cast<nsCanvasFrame*>(mFrame);
|
|
|
|
nsPoint offset = ToReferenceFrame();
|
|
|
|
nsRect bgClipRect = frame->CanvasArea() + offset;
|
|
|
|
if (NS_GET_A(mColor) > 0) {
|
2014-10-19 16:22:22 +04:00
|
|
|
DrawTarget* drawTarget = aCtx->GetDrawTarget();
|
|
|
|
int32_t appUnitsPerDevPixel = mFrame->PresContext()->AppUnitsPerDevPixel();
|
2014-10-22 15:29:06 +04:00
|
|
|
Rect devPxRect =
|
|
|
|
NSRectToSnappedRect(bgClipRect, appUnitsPerDevPixel, *drawTarget);
|
2014-10-19 16:22:22 +04:00
|
|
|
drawTarget->FillRect(devPxRect, ColorPattern(ToDeviceColor(mColor)));
|
2012-12-13 05:15:55 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 08:11:29 +03:00
|
|
|
already_AddRefed<Layer>
|
|
|
|
nsDisplayCanvasBackgroundColor::BuildLayer(nsDisplayListBuilder* aBuilder,
|
|
|
|
LayerManager* aManager,
|
|
|
|
const ContainerLayerParameters& aContainerParameters)
|
|
|
|
{
|
|
|
|
if (NS_GET_A(mColor) == 0) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
RefPtr<ColorLayer> layer = static_cast<ColorLayer*>
|
|
|
|
(aManager->GetLayerBuilder()->GetLeafLayerFor(aBuilder, this));
|
|
|
|
if (!layer) {
|
|
|
|
layer = aManager->CreateColorLayer();
|
|
|
|
if (!layer) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
layer->SetColor(ToDeviceColor(mColor));
|
|
|
|
|
|
|
|
nsCanvasFrame* frame = static_cast<nsCanvasFrame*>(mFrame);
|
|
|
|
nsPoint offset = ToReferenceFrame();
|
|
|
|
nsRect bgClipRect = frame->CanvasArea() + offset;
|
|
|
|
|
|
|
|
int32_t appUnitsPerDevPixel = mFrame->PresContext()->AppUnitsPerDevPixel();
|
|
|
|
|
|
|
|
layer->SetBounds(bgClipRect.ToNearestPixels(appUnitsPerDevPixel));
|
|
|
|
layer->SetBaseTransform(gfx::Matrix4x4::Translation(aContainerParameters.mOffset.x,
|
|
|
|
aContainerParameters.mOffset.y, 0));
|
|
|
|
|
|
|
|
return layer.forget();
|
|
|
|
}
|
|
|
|
|
2017-07-01 03:23:20 +03:00
|
|
|
bool
|
2017-03-20 09:41:55 +03:00
|
|
|
nsDisplayCanvasBackgroundColor::CreateWebRenderCommands(mozilla::wr::DisplayListBuilder& aBuilder,
|
2017-09-14 19:48:55 +03:00
|
|
|
mozilla::wr::IpcResourceUpdateQueue& aResources,
|
2017-05-03 15:48:07 +03:00
|
|
|
const StackingContextHelper& aSc,
|
2017-07-01 03:23:20 +03:00
|
|
|
WebRenderLayerManager* aManager,
|
|
|
|
nsDisplayListBuilder* aDisplayListBuilder)
|
2017-03-20 09:41:55 +03:00
|
|
|
{
|
2017-10-03 23:31:07 +03:00
|
|
|
ContainerLayerParameters parameter;
|
2017-07-01 03:23:20 +03:00
|
|
|
|
|
|
|
nsCanvasFrame *frame = static_cast<nsCanvasFrame *>(mFrame);
|
2017-03-20 09:41:55 +03:00
|
|
|
nsPoint offset = ToReferenceFrame();
|
|
|
|
nsRect bgClipRect = frame->CanvasArea() + offset;
|
|
|
|
int32_t appUnitsPerDevPixel = mFrame->PresContext()->AppUnitsPerDevPixel();
|
|
|
|
|
2017-04-27 19:04:13 +03:00
|
|
|
LayoutDeviceRect rect = LayoutDeviceRect::FromAppUnits(
|
|
|
|
bgClipRect, appUnitsPerDevPixel);
|
2017-03-20 09:41:55 +03:00
|
|
|
|
2017-07-19 01:32:46 +03:00
|
|
|
wr::LayoutRect transformedRect = aSc.ToRelativeLayoutRect(rect);
|
2017-05-03 15:48:08 +03:00
|
|
|
aBuilder.PushRect(transformedRect,
|
2017-06-26 14:49:52 +03:00
|
|
|
transformedRect,
|
2017-09-21 09:41:38 +03:00
|
|
|
!BackfaceIsHidden(),
|
2017-07-19 01:32:46 +03:00
|
|
|
wr::ToColorF(ToDeviceColor(mColor)));
|
2017-07-01 03:23:20 +03:00
|
|
|
return true;
|
2017-03-20 09:41:55 +03:00
|
|
|
}
|
|
|
|
|
2014-06-04 00:21:39 +04:00
|
|
|
#ifdef MOZ_DUMP_PAINTING
|
|
|
|
void
|
2014-11-25 16:45:19 +03:00
|
|
|
nsDisplayCanvasBackgroundColor::WriteDebugInfo(std::stringstream& aStream)
|
2014-06-04 00:21:39 +04:00
|
|
|
{
|
2014-11-25 16:45:19 +03:00
|
|
|
aStream << " (rgba "
|
|
|
|
<< (int)NS_GET_R(mColor) << ","
|
|
|
|
<< (int)NS_GET_G(mColor) << ","
|
|
|
|
<< (int)NS_GET_B(mColor) << ","
|
|
|
|
<< (int)NS_GET_A(mColor) << ")";
|
2014-06-04 00:21:39 +04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-07-16 01:07:53 +04:00
|
|
|
void
|
2012-12-13 05:15:55 +04:00
|
|
|
nsDisplayCanvasBackgroundImage::Paint(nsDisplayListBuilder* aBuilder,
|
2017-06-09 22:14:53 +03:00
|
|
|
gfxContext* aCtx)
|
2010-07-16 01:07:53 +04:00
|
|
|
{
|
|
|
|
nsCanvasFrame* frame = static_cast<nsCanvasFrame*>(mFrame);
|
2010-08-13 14:01:58 +04:00
|
|
|
nsPoint offset = ToReferenceFrame();
|
2010-07-16 01:07:53 +04:00
|
|
|
nsRect bgClipRect = frame->CanvasArea() + offset;
|
2006-03-15 19:55:19 +03:00
|
|
|
|
2016-01-06 07:29:52 +03:00
|
|
|
PaintInternal(aBuilder, aCtx, mVisibleRect, &bgClipRect);
|
2010-07-16 01:07:53 +04:00
|
|
|
}
|
2006-03-15 19:55:19 +03:00
|
|
|
|
2016-04-22 08:50:11 +03:00
|
|
|
bool
|
|
|
|
nsDisplayCanvasBackgroundImage::IsSingleFixedPositionImage(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aClipRect,
|
|
|
|
gfxRect* aDestRect)
|
|
|
|
{
|
|
|
|
if (!mBackgroundStyle)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (mBackgroundStyle->mImage.mLayers.Length() != 1)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
|
|
nsPresContext* presContext = mFrame->PresContext();
|
|
|
|
uint32_t flags = aBuilder->GetBackgroundPaintFlags();
|
|
|
|
nsRect borderArea = nsRect(ToReferenceFrame(), mFrame->GetSize());
|
|
|
|
const nsStyleImageLayers::Layer &layer = mBackgroundStyle->mImage.mLayers[mLayer];
|
|
|
|
|
|
|
|
if (layer.mAttachment != NS_STYLE_IMAGELAYER_ATTACHMENT_FIXED)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
nsBackgroundLayerState state =
|
|
|
|
nsCSSRendering::PrepareImageLayer(presContext, mFrame, flags,
|
|
|
|
borderArea, aClipRect, layer);
|
|
|
|
|
|
|
|
|
|
|
|
// We only care about images here, not gradients.
|
|
|
|
if (!mIsRasterImage)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
int32_t appUnitsPerDevPixel = presContext->AppUnitsPerDevPixel();
|
|
|
|
*aDestRect = nsLayoutUtils::RectToGfxRect(state.mFillArea, appUnitsPerDevPixel);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-18 10:34:58 +04:00
|
|
|
void
|
|
|
|
nsDisplayCanvasThemedBackground::Paint(nsDisplayListBuilder* aBuilder,
|
2017-06-09 22:14:53 +03:00
|
|
|
gfxContext* aCtx)
|
2013-07-18 10:34:58 +04:00
|
|
|
{
|
|
|
|
nsCanvasFrame* frame = static_cast<nsCanvasFrame*>(mFrame);
|
|
|
|
nsPoint offset = ToReferenceFrame();
|
|
|
|
nsRect bgClipRect = frame->CanvasArea() + offset;
|
|
|
|
|
|
|
|
PaintInternal(aBuilder, aCtx, mVisibleRect, &bgClipRect);
|
|
|
|
}
|
|
|
|
|
2006-03-15 19:55:19 +03:00
|
|
|
/**
|
|
|
|
* A display item to paint the focus ring for the document.
|
|
|
|
*
|
|
|
|
* The only reason this can't use nsDisplayGeneric is overriding GetBounds.
|
|
|
|
*/
|
|
|
|
class nsDisplayCanvasFocus : public nsDisplayItem {
|
|
|
|
public:
|
2010-08-13 14:01:13 +04:00
|
|
|
nsDisplayCanvasFocus(nsDisplayListBuilder* aBuilder, nsCanvasFrame *aFrame)
|
|
|
|
: nsDisplayItem(aBuilder, aFrame)
|
2006-03-15 19:55:19 +03:00
|
|
|
{
|
2010-06-21 20:19:46 +04:00
|
|
|
MOZ_COUNT_CTOR(nsDisplayCanvasFocus);
|
|
|
|
}
|
|
|
|
virtual ~nsDisplayCanvasFocus() {
|
|
|
|
MOZ_COUNT_DTOR(nsDisplayCanvasFocus);
|
2006-03-15 19:55:19 +03:00
|
|
|
}
|
|
|
|
|
2014-02-24 18:41:56 +04:00
|
|
|
virtual nsRect GetBounds(nsDisplayListBuilder* aBuilder,
|
2017-08-24 18:09:44 +03:00
|
|
|
bool* aSnap) const override
|
2006-03-15 19:55:19 +03:00
|
|
|
{
|
2012-04-10 15:24:18 +04:00
|
|
|
*aSnap = false;
|
2006-03-15 19:55:19 +03:00
|
|
|
// This is an overestimate, but that's not a problem.
|
2009-10-08 10:18:18 +04:00
|
|
|
nsCanvasFrame* frame = static_cast<nsCanvasFrame*>(mFrame);
|
2010-08-13 14:01:58 +04:00
|
|
|
return frame->CanvasArea() + ToReferenceFrame();
|
2006-03-15 19:55:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual void Paint(nsDisplayListBuilder* aBuilder,
|
2017-06-09 22:14:53 +03:00
|
|
|
gfxContext* aCtx) override
|
2006-03-15 19:55:19 +03:00
|
|
|
{
|
2009-10-08 10:18:18 +04:00
|
|
|
nsCanvasFrame* frame = static_cast<nsCanvasFrame*>(mFrame);
|
2015-12-04 06:16:59 +03:00
|
|
|
frame->PaintFocus(aCtx->GetDrawTarget(), ToReferenceFrame());
|
2006-03-15 19:55:19 +03:00
|
|
|
}
|
|
|
|
|
2010-07-16 01:07:49 +04:00
|
|
|
NS_DISPLAY_DECL_NAME("CanvasFocus", TYPE_CANVAS_FOCUS)
|
2006-03-15 19:55:19 +03:00
|
|
|
};
|
|
|
|
|
2013-02-14 15:12:27 +04:00
|
|
|
void
|
2009-10-08 10:18:18 +04:00
|
|
|
nsCanvasFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
2010-03-21 00:54:19 +03:00
|
|
|
const nsDisplayListSet& aLists)
|
2001-04-24 05:01:16 +04:00
|
|
|
{
|
2008-09-08 12:13:17 +04:00
|
|
|
if (GetPrevInFlow()) {
|
2017-08-07 05:23:35 +03:00
|
|
|
DisplayOverflowContainers(aBuilder, aLists);
|
2008-09-08 12:13:17 +04:00
|
|
|
}
|
|
|
|
|
2006-01-26 05:29:17 +03:00
|
|
|
// Force a background to be shown. We may have a background propagated to us,
|
2013-02-17 01:51:02 +04:00
|
|
|
// in which case StyleBackground wouldn't have the right background
|
2006-01-26 05:29:17 +03:00
|
|
|
// and the code in nsFrame::DisplayBorderBackgroundOutline might not give us
|
|
|
|
// a background.
|
2006-03-15 19:55:19 +03:00
|
|
|
// We don't have any border or outline, and our background draws over
|
|
|
|
// the overflow area, so just add nsDisplayCanvasBackground instead of
|
|
|
|
// calling DisplayBorderBackgroundOutline.
|
2012-09-13 14:34:23 +04:00
|
|
|
if (IsVisibleForPainting(aBuilder)) {
|
|
|
|
const nsStyleBackground* bg = nullptr;
|
2017-10-04 05:02:45 +03:00
|
|
|
nsIFrame* dependentFrame = nullptr;
|
2012-11-08 08:08:40 +04:00
|
|
|
bool isThemed = IsThemed();
|
2017-10-04 05:02:45 +03:00
|
|
|
if (!isThemed && nsCSSRendering::FindBackgroundFrame(this, &dependentFrame)) {
|
2018-03-22 21:20:41 +03:00
|
|
|
bg = dependentFrame->Style()->StyleBackground();
|
2017-10-04 05:02:45 +03:00
|
|
|
if (dependentFrame == this) {
|
|
|
|
dependentFrame = nullptr;
|
|
|
|
}
|
2012-09-13 14:34:23 +04:00
|
|
|
}
|
2017-12-13 20:23:04 +03:00
|
|
|
aLists.BorderBackground()->AppendToTop(
|
2018-02-13 03:43:28 +03:00
|
|
|
MakeDisplayItem<nsDisplayCanvasBackgroundColor>(aBuilder, this));
|
2017-07-06 15:00:35 +03:00
|
|
|
|
2012-12-14 02:16:14 +04:00
|
|
|
if (isThemed) {
|
2017-12-13 20:23:04 +03:00
|
|
|
aLists.BorderBackground()->AppendToTop(
|
2018-02-13 03:43:28 +03:00
|
|
|
MakeDisplayItem<nsDisplayCanvasThemedBackground>(aBuilder, this));
|
2013-02-14 15:12:27 +04:00
|
|
|
return;
|
2012-12-14 02:16:14 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!bg) {
|
2013-02-14 15:12:27 +04:00
|
|
|
return;
|
2012-12-14 02:16:14 +04:00
|
|
|
}
|
2012-12-13 05:15:55 +04:00
|
|
|
|
2017-02-01 01:07:35 +03:00
|
|
|
const ActiveScrolledRoot* asr =
|
|
|
|
aBuilder->CurrentActiveScrolledRoot();
|
2016-03-08 22:22:36 +03:00
|
|
|
|
2014-07-16 23:04:00 +04:00
|
|
|
bool needBlendContainer = false;
|
2017-02-01 01:07:35 +03:00
|
|
|
nsDisplayListBuilder::AutoContainerASRTracker contASRTracker(aBuilder);
|
2014-07-16 23:04:00 +04:00
|
|
|
|
2012-09-13 14:34:23 +04:00
|
|
|
// Create separate items for each background layer.
|
2016-01-28 08:39:00 +03:00
|
|
|
const nsStyleImageLayers& layers = bg->mImage;
|
2016-01-28 08:24:00 +03:00
|
|
|
NS_FOR_VISIBLE_IMAGE_LAYERS_BACK_TO_FRONT(i, layers) {
|
|
|
|
if (layers.mLayers[i].mImage.IsEmpty()) {
|
2012-12-14 02:16:14 +04:00
|
|
|
continue;
|
|
|
|
}
|
2016-01-28 08:24:00 +03:00
|
|
|
if (layers.mLayers[i].mBlendMode != NS_STYLE_BLEND_NORMAL) {
|
2014-07-16 23:04:00 +04:00
|
|
|
needBlendContainer = true;
|
|
|
|
}
|
2016-03-08 22:22:36 +03:00
|
|
|
|
2016-08-20 02:36:57 +03:00
|
|
|
nsRect bgRect = GetRectRelativeToSelf() + aBuilder->ToReferenceFrame(this);
|
2017-02-01 01:07:35 +03:00
|
|
|
|
|
|
|
const ActiveScrolledRoot* thisItemASR = asr;
|
2017-11-16 06:09:28 +03:00
|
|
|
nsDisplayList thisItemList;
|
2016-08-20 02:36:57 +03:00
|
|
|
nsDisplayBackgroundImage::InitData bgData =
|
2018-02-12 09:03:09 +03:00
|
|
|
nsDisplayBackgroundImage::GetInitData(aBuilder, this, i, bgRect, bg);
|
2016-08-20 02:36:57 +03:00
|
|
|
|
|
|
|
if (bgData.shouldFixToViewport) {
|
2017-02-01 01:07:35 +03:00
|
|
|
|
|
|
|
auto* displayData = aBuilder->GetCurrentFixedBackgroundDisplayData();
|
|
|
|
nsDisplayListBuilder::AutoBuildingDisplayList
|
2017-10-04 04:28:38 +03:00
|
|
|
buildingDisplayList(aBuilder, this, aBuilder->GetVisibleRect(), aBuilder->GetDirtyRect(), false);
|
2017-02-01 01:07:35 +03:00
|
|
|
|
|
|
|
DisplayListClipState::AutoSaveRestore clipState(aBuilder);
|
|
|
|
nsDisplayListBuilder::AutoCurrentActiveScrolledRootSetter asrSetter(aBuilder);
|
|
|
|
if (displayData) {
|
2017-08-07 05:23:35 +03:00
|
|
|
nsPoint offset = GetOffsetTo(PresContext()->GetPresShell()->GetRootFrame());
|
2017-10-04 04:28:38 +03:00
|
|
|
aBuilder->SetVisibleRect(displayData->mVisibleRect + offset);
|
2017-08-07 05:23:35 +03:00
|
|
|
aBuilder->SetDirtyRect(displayData->mDirtyRect + offset);
|
|
|
|
|
2017-02-01 01:07:35 +03:00
|
|
|
clipState.SetClipChainForContainingBlockDescendants(
|
|
|
|
displayData->mContainingBlockClipChain);
|
|
|
|
asrSetter.SetCurrentActiveScrolledRoot(
|
|
|
|
displayData->mContainingBlockActiveScrolledRoot);
|
|
|
|
thisItemASR = displayData->mContainingBlockActiveScrolledRoot;
|
|
|
|
}
|
|
|
|
nsDisplayCanvasBackgroundImage* bgItem = nullptr;
|
|
|
|
{
|
|
|
|
DisplayListClipState::AutoSaveRestore bgImageClip(aBuilder);
|
|
|
|
bgImageClip.Clear();
|
2018-02-13 03:43:28 +03:00
|
|
|
bgItem = MakeDisplayItem<nsDisplayCanvasBackgroundImage>(aBuilder, bgData);
|
2017-10-04 05:02:45 +03:00
|
|
|
bgItem->SetDependentFrame(aBuilder, dependentFrame);
|
2017-02-01 01:07:35 +03:00
|
|
|
}
|
2017-12-13 20:23:04 +03:00
|
|
|
thisItemList.AppendToTop(
|
2016-01-26 03:36:48 +03:00
|
|
|
nsDisplayFixedPosition::CreateForFixedBackground(aBuilder, this, bgItem, i));
|
2017-02-01 01:07:35 +03:00
|
|
|
|
2016-01-26 03:36:48 +03:00
|
|
|
} else {
|
2018-02-13 03:43:28 +03:00
|
|
|
nsDisplayCanvasBackgroundImage* bgItem = MakeDisplayItem<nsDisplayCanvasBackgroundImage>(aBuilder, bgData);
|
2017-10-04 05:02:45 +03:00
|
|
|
bgItem->SetDependentFrame(aBuilder, dependentFrame);
|
2017-12-13 20:23:04 +03:00
|
|
|
thisItemList.AppendToTop(bgItem);
|
2016-03-08 22:22:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (layers.mLayers[i].mBlendMode != NS_STYLE_BLEND_NORMAL) {
|
2017-02-01 01:07:35 +03:00
|
|
|
DisplayListClipState::AutoSaveRestore blendClip(aBuilder);
|
2017-12-13 20:23:04 +03:00
|
|
|
thisItemList.AppendToTop(
|
2018-02-13 03:43:28 +03:00
|
|
|
MakeDisplayItem<nsDisplayBlendMode>(aBuilder, this, &thisItemList,
|
|
|
|
layers.mLayers[i].mBlendMode,
|
|
|
|
thisItemASR, i + 1));
|
2016-01-26 03:36:48 +03:00
|
|
|
}
|
2016-03-08 22:22:36 +03:00
|
|
|
aLists.BorderBackground()->AppendToTop(&thisItemList);
|
2012-09-13 14:34:23 +04:00
|
|
|
}
|
2014-07-16 23:04:00 +04:00
|
|
|
|
|
|
|
if (needBlendContainer) {
|
2017-02-01 01:07:35 +03:00
|
|
|
const ActiveScrolledRoot* containerASR = contASRTracker.GetContainerASR();
|
|
|
|
DisplayListClipState::AutoSaveRestore blendContainerClip(aBuilder);
|
2017-12-13 20:23:04 +03:00
|
|
|
aLists.BorderBackground()->AppendToTop(
|
2016-05-10 03:48:59 +03:00
|
|
|
nsDisplayBlendContainer::CreateForBackgroundBlendMode(aBuilder, this,
|
|
|
|
aLists.BorderBackground(),
|
2017-02-01 01:07:35 +03:00
|
|
|
containerASR));
|
2014-07-16 23:04:00 +04:00
|
|
|
}
|
2006-03-15 19:55:19 +03:00
|
|
|
}
|
2006-01-26 05:29:17 +03:00
|
|
|
|
2016-01-29 17:42:15 +03:00
|
|
|
for (nsIFrame* kid : PrincipalChildList()) {
|
2006-01-26 05:29:17 +03:00
|
|
|
// Put our child into its own pseudo-stack.
|
2017-08-07 05:23:35 +03:00
|
|
|
BuildDisplayListForChild(aBuilder, kid, aLists);
|
2002-12-11 07:00:18 +03:00
|
|
|
}
|
|
|
|
|
2001-05-23 03:52:17 +04:00
|
|
|
#ifdef DEBUG_CANVAS_FOCUS
|
2006-01-26 05:29:17 +03:00
|
|
|
nsCOMPtr<nsIContent> focusContent;
|
|
|
|
aPresContext->EventStateManager()->
|
|
|
|
GetFocusedContent(getter_AddRefs(focusContent));
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool hasFocus = false;
|
2006-01-26 05:29:17 +03:00
|
|
|
nsCOMPtr<nsISupports> container;
|
|
|
|
aPresContext->GetContainer(getter_AddRefs(container));
|
|
|
|
nsCOMPtr<nsIDocShell> docShell(do_QueryInterface(container));
|
|
|
|
if (docShell) {
|
|
|
|
docShell->GetHasFocus(&hasFocus);
|
2017-08-07 05:23:35 +03:00
|
|
|
nsRect dirty = aBuilder->GetDirtyRect();
|
2017-07-06 15:00:35 +03:00
|
|
|
printf("%p - nsCanvasFrame::Paint R:%d,%d,%d,%d DR: %d,%d,%d,%d\n", this,
|
2006-01-26 05:29:17 +03:00
|
|
|
mRect.x, mRect.y, mRect.width, mRect.height,
|
2017-08-07 05:23:35 +03:00
|
|
|
dirty.x, dirty.y, dirty.width, dirty.height);
|
2006-01-26 05:29:17 +03:00
|
|
|
}
|
2017-07-06 15:00:35 +03:00
|
|
|
printf("%p - Focus: %s c: %p DoPaint:%s\n", docShell.get(), hasFocus?"Y":"N",
|
2006-01-26 05:29:17 +03:00
|
|
|
focusContent.get(), mDoPaintFocus?"Y":"N");
|
2001-05-23 03:52:17 +04:00
|
|
|
#endif
|
|
|
|
|
2006-01-26 05:29:17 +03:00
|
|
|
if (!mDoPaintFocus)
|
2013-02-14 15:12:27 +04:00
|
|
|
return;
|
2006-01-26 05:29:17 +03:00
|
|
|
// Only paint the focus if we're visible
|
2013-02-17 01:51:02 +04:00
|
|
|
if (!StyleVisibility()->IsVisible())
|
2013-02-14 15:12:27 +04:00
|
|
|
return;
|
2017-07-06 15:00:35 +03:00
|
|
|
|
2018-02-13 03:43:28 +03:00
|
|
|
aLists.Outlines()->AppendToTop(
|
|
|
|
MakeDisplayItem<nsDisplayCanvasFocus>(aBuilder, this));
|
2006-01-26 05:29:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-12-04 06:16:59 +03:00
|
|
|
nsCanvasFrame::PaintFocus(DrawTarget* aDrawTarget, nsPoint aPt)
|
2006-01-26 05:29:17 +03:00
|
|
|
{
|
2006-03-15 19:55:19 +03:00
|
|
|
nsRect focusRect(aPt, GetSize());
|
|
|
|
|
2009-01-12 22:20:59 +03:00
|
|
|
nsIScrollableFrame *scrollableFrame = do_QueryFrame(GetParent());
|
2006-03-15 19:55:19 +03:00
|
|
|
if (scrollableFrame) {
|
2009-09-03 08:26:00 +04:00
|
|
|
nsRect portRect = scrollableFrame->GetScrollPortRect();
|
|
|
|
focusRect.width = portRect.width;
|
|
|
|
focusRect.height = portRect.height;
|
|
|
|
focusRect.MoveBy(scrollableFrame->GetScrollPosition());
|
2001-05-23 03:52:17 +04:00
|
|
|
}
|
2006-01-26 05:29:17 +03:00
|
|
|
|
2006-04-29 03:21:01 +04:00
|
|
|
// XXX use the root frame foreground color, but should we find BODY frame
|
|
|
|
// for HTML documents?
|
|
|
|
nsIFrame* root = mFrames.FirstChild();
|
2013-02-17 01:51:02 +04:00
|
|
|
const nsStyleColor* color = root ? root->StyleColor() : StyleColor();
|
2006-04-29 03:21:01 +04:00
|
|
|
if (!color) {
|
|
|
|
NS_ERROR("current color cannot be found");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-12-04 06:16:59 +03:00
|
|
|
nsCSSRendering::PaintFocus(PresContext(), aDrawTarget,
|
2008-08-06 14:33:18 +04:00
|
|
|
focusRect, color->mColor);
|
2001-04-24 05:01:16 +04:00
|
|
|
}
|
|
|
|
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 08:38:33 +03:00
|
|
|
/* virtual */ nscoord
|
2017-06-09 22:14:53 +03:00
|
|
|
nsCanvasFrame::GetMinISize(gfxContext *aRenderingContext)
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 08:38:33 +03:00
|
|
|
{
|
|
|
|
nscoord result;
|
|
|
|
DISPLAY_MIN_WIDTH(this, result);
|
|
|
|
if (mFrames.IsEmpty())
|
|
|
|
result = 0;
|
|
|
|
else
|
2014-07-24 21:03:25 +04:00
|
|
|
result = mFrames.FirstChild()->GetMinISize(aRenderingContext);
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 08:38:33 +03:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* virtual */ nscoord
|
2017-06-09 22:14:53 +03:00
|
|
|
nsCanvasFrame::GetPrefISize(gfxContext *aRenderingContext)
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 08:38:33 +03:00
|
|
|
{
|
|
|
|
nscoord result;
|
|
|
|
DISPLAY_PREF_WIDTH(this, result);
|
|
|
|
if (mFrames.IsEmpty())
|
|
|
|
result = 0;
|
|
|
|
else
|
2014-07-24 21:03:25 +04:00
|
|
|
result = mFrames.FirstChild()->GetPrefISize(aRenderingContext);
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 08:38:33 +03:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2014-05-13 04:47:52 +04:00
|
|
|
void
|
2009-10-08 10:18:18 +04:00
|
|
|
nsCanvasFrame::Reflow(nsPresContext* aPresContext,
|
2016-07-21 13:36:38 +03:00
|
|
|
ReflowOutput& aDesiredSize,
|
2016-07-21 13:36:39 +03:00
|
|
|
const ReflowInput& aReflowInput,
|
2012-11-27 13:05:10 +04:00
|
|
|
nsReflowStatus& aStatus)
|
1998-09-09 02:34:40 +04:00
|
|
|
{
|
2015-03-30 01:38:40 +03:00
|
|
|
MarkInReflow();
|
2009-10-08 10:18:18 +04:00
|
|
|
DO_GLOBAL_REFLOW_COUNT("nsCanvasFrame");
|
2016-07-21 13:36:39 +03:00
|
|
|
DISPLAY_REFLOW(aPresContext, this, aReflowInput, aDesiredSize, aStatus);
|
2017-09-13 13:00:25 +03:00
|
|
|
MOZ_ASSERT(aStatus.IsEmpty(), "Caller should pass a fresh reflow status!");
|
2009-10-08 10:18:18 +04:00
|
|
|
NS_FRAME_TRACE_REFLOW_IN("nsCanvasFrame::Reflow");
|
1998-09-09 02:34:40 +04:00
|
|
|
|
2009-10-08 10:18:18 +04:00
|
|
|
nsCanvasFrame* prevCanvasFrame = static_cast<nsCanvasFrame*>
|
2008-09-08 12:13:17 +04:00
|
|
|
(GetPrevInFlow());
|
|
|
|
if (prevCanvasFrame) {
|
2013-04-01 19:26:02 +04:00
|
|
|
AutoFrameListPtr overflow(aPresContext,
|
|
|
|
prevCanvasFrame->StealOverflowFrames());
|
2008-09-08 12:13:17 +04:00
|
|
|
if (overflow) {
|
2009-07-28 16:51:09 +04:00
|
|
|
NS_ASSERTION(overflow->OnlyChild(),
|
2008-09-08 12:13:17 +04:00
|
|
|
"must have doc root as canvas frame's only child");
|
2014-02-07 02:07:47 +04:00
|
|
|
nsContainerFrame::ReparentFrameViewList(*overflow, prevCanvasFrame, this);
|
2008-09-08 12:13:17 +04:00
|
|
|
// Prepend overflow to the our child list. There may already be
|
|
|
|
// children placeholders for fixed-pos elements, which don't get
|
|
|
|
// reflowed but must not be lost until the canvas frame is destroyed.
|
2012-07-30 18:20:58 +04:00
|
|
|
mFrames.InsertFrames(this, nullptr, *overflow);
|
2008-09-08 12:13:17 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-06 01:59:36 +04:00
|
|
|
// Set our size up front, since some parts of reflow depend on it
|
|
|
|
// being already set. Note that the computed height may be
|
|
|
|
// unconstrained; that's ok. Consumers should watch out for that.
|
2017-07-06 15:00:35 +03:00
|
|
|
SetSize(nsSize(aReflowInput.ComputedWidth(), aReflowInput.ComputedHeight()));
|
2010-08-06 01:59:36 +04:00
|
|
|
|
2008-09-08 12:13:17 +04:00
|
|
|
// Reflow our one and only normal child frame. It's either the root
|
|
|
|
// element's frame or a placeholder for that frame, if the root element
|
|
|
|
// is abs-pos or fixed-pos. We may have additional children which
|
|
|
|
// are placeholders for continuations of fixed-pos content, but those
|
|
|
|
// don't need to be reflowed. The normal child is always comes before
|
|
|
|
// the fixed-pos placeholders, because we insert it at the start
|
|
|
|
// of the child list, above.
|
2016-07-21 13:36:39 +03:00
|
|
|
ReflowOutput kidDesiredSize(aReflowInput);
|
1999-01-31 21:46:22 +03:00
|
|
|
if (mFrames.IsEmpty()) {
|
1999-07-27 18:15:42 +04:00
|
|
|
// We have no child frame, so return an empty size
|
2013-12-27 21:59:52 +04:00
|
|
|
aDesiredSize.Width() = aDesiredSize.Height() = 0;
|
1999-01-31 21:46:22 +03:00
|
|
|
} else {
|
1999-01-26 03:05:21 +03:00
|
|
|
nsIFrame* kidFrame = mFrames.FirstChild();
|
2011-09-29 10:19:26 +04:00
|
|
|
bool kidDirty = (kidFrame->GetStateBits() & NS_FRAME_IS_DIRTY) != 0;
|
1998-10-01 08:46:11 +04:00
|
|
|
|
2016-07-21 13:36:35 +03:00
|
|
|
ReflowInput
|
2016-07-21 13:36:39 +03:00
|
|
|
kidReflowInput(aPresContext, aReflowInput, kidFrame,
|
|
|
|
aReflowInput.AvailableSize(kidFrame->GetWritingMode()));
|
2002-05-10 22:22:41 +04:00
|
|
|
|
2016-07-21 13:36:39 +03:00
|
|
|
if (aReflowInput.IsBResizeForWM(kidReflowInput.GetWritingMode()) &&
|
2015-06-18 09:33:50 +03:00
|
|
|
(kidFrame->GetStateBits() & NS_FRAME_CONTAINS_RELATIVE_BSIZE)) {
|
|
|
|
// Tell our kid it's being block-dir resized too. Bit of a
|
2007-10-19 07:45:30 +04:00
|
|
|
// hack for framesets.
|
2016-07-21 13:36:39 +03:00
|
|
|
kidReflowInput.SetBResize(true);
|
2007-10-19 07:45:30 +04:00
|
|
|
}
|
2008-09-08 12:13:17 +04:00
|
|
|
|
2016-07-21 13:36:39 +03:00
|
|
|
WritingMode wm = aReflowInput.GetWritingMode();
|
|
|
|
WritingMode kidWM = kidReflowInput.GetWritingMode();
|
|
|
|
nsSize containerSize = aReflowInput.ComputedPhysicalSize();
|
2015-01-07 10:10:07 +03:00
|
|
|
|
2016-07-21 13:36:39 +03:00
|
|
|
LogicalMargin margin = kidReflowInput.ComputedLogicalMargin();
|
2015-01-07 10:10:07 +03:00
|
|
|
LogicalPoint kidPt(kidWM, margin.IStart(kidWM), margin.BStart(kidWM));
|
2013-07-16 04:28:09 +04:00
|
|
|
|
2016-07-21 13:36:39 +03:00
|
|
|
kidReflowInput.ApplyRelativePositioning(&kidPt, containerSize);
|
2008-09-08 12:13:17 +04:00
|
|
|
|
1998-12-22 06:49:04 +03:00
|
|
|
// Reflow the frame
|
2016-07-21 13:36:39 +03:00
|
|
|
ReflowChild(kidFrame, aPresContext, kidDesiredSize, kidReflowInput,
|
2015-07-16 12:07:57 +03:00
|
|
|
kidWM, kidPt, containerSize, 0, aStatus);
|
1999-10-30 06:52:11 +04:00
|
|
|
|
1999-11-19 18:33:29 +03:00
|
|
|
// Complete the reflow and position and size the child frame
|
2016-07-21 13:36:39 +03:00
|
|
|
FinishReflowChild(kidFrame, aPresContext, kidDesiredSize, &kidReflowInput,
|
2015-07-16 12:07:57 +03:00
|
|
|
kidWM, kidPt, containerSize, 0);
|
2008-09-08 12:13:17 +04:00
|
|
|
|
2017-02-11 17:38:48 +03:00
|
|
|
if (!aStatus.IsFullyComplete()) {
|
2008-09-08 12:13:17 +04:00
|
|
|
nsIFrame* nextFrame = kidFrame->GetNextInFlow();
|
2017-02-13 09:56:45 +03:00
|
|
|
NS_ASSERTION(nextFrame || aStatus.NextInFlowNeedsReflow(),
|
2008-09-08 12:13:17 +04:00
|
|
|
"If it's incomplete and has no nif yet, it must flag a nif reflow.");
|
|
|
|
if (!nextFrame) {
|
2013-03-20 05:47:49 +04:00
|
|
|
nextFrame = aPresContext->PresShell()->FrameConstructor()->
|
|
|
|
CreateContinuingFrame(aPresContext, kidFrame, this);
|
2014-02-07 02:07:47 +04:00
|
|
|
SetOverflowFrames(nsFrameList(nextFrame, nextFrame));
|
2008-09-08 12:13:17 +04:00
|
|
|
// Root overflow containers will be normal children of
|
|
|
|
// the canvas frame, but that's ok because there
|
|
|
|
// aren't any other frames we need to isolate them from
|
|
|
|
// during reflow.
|
|
|
|
}
|
2017-02-11 17:54:26 +03:00
|
|
|
if (aStatus.IsOverflowIncomplete()) {
|
2008-09-08 12:13:17 +04:00
|
|
|
nextFrame->AddStateBits(NS_FRAME_IS_OVERFLOW_CONTAINER);
|
|
|
|
}
|
|
|
|
}
|
1999-07-27 18:15:42 +04:00
|
|
|
|
1999-10-30 06:52:11 +04:00
|
|
|
// If the child frame was just inserted, then we're responsible for making sure
|
|
|
|
// it repaints
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 08:38:33 +03:00
|
|
|
if (kidDirty) {
|
2005-01-21 07:42:30 +03:00
|
|
|
// But we have a new child, which will affect our background, so
|
|
|
|
// invalidate our whole rect.
|
|
|
|
// Note: Even though we request to be sized to our child's size, our
|
|
|
|
// scroll frame ensures that we are always the size of the viewport.
|
|
|
|
// Also note: GetPosition() on a CanvasFrame is always going to return
|
2010-10-07 08:25:47 +04:00
|
|
|
// (0, 0). We only want to invalidate GetRect() since Get*OverflowRect()
|
2005-01-21 07:42:30 +03:00
|
|
|
// could also include overflow to our top and left (out of the viewport)
|
|
|
|
// which doesn't need to be painted.
|
2007-07-21 00:14:43 +04:00
|
|
|
nsIFrame* viewport = PresContext()->GetPresShell()->GetRootFrame();
|
2012-08-29 09:39:31 +04:00
|
|
|
viewport->InvalidateFrame();
|
1998-10-01 08:46:11 +04:00
|
|
|
}
|
2017-07-06 15:00:35 +03:00
|
|
|
|
2008-12-09 03:33:46 +03:00
|
|
|
// Return our desired size. Normally it's what we're told, but
|
|
|
|
// sometimes we can be given an unconstrained height (when a window
|
|
|
|
// is sizing-to-content), and we should compute our desired height.
|
2014-07-24 12:30:07 +04:00
|
|
|
LogicalSize finalSize(wm);
|
2016-07-21 13:36:39 +03:00
|
|
|
finalSize.ISize(wm) = aReflowInput.ComputedISize();
|
|
|
|
if (aReflowInput.ComputedBSize() == NS_UNCONSTRAINEDSIZE) {
|
2014-07-24 12:30:07 +04:00
|
|
|
finalSize.BSize(wm) = kidFrame->GetLogicalSize(wm).BSize(wm) +
|
2016-07-21 13:36:39 +03:00
|
|
|
kidReflowInput.ComputedLogicalMargin().BStartEnd(wm);
|
2008-12-09 03:33:46 +03:00
|
|
|
} else {
|
2016-07-21 13:36:39 +03:00
|
|
|
finalSize.BSize(wm) = aReflowInput.ComputedBSize();
|
2008-12-09 03:33:46 +03:00
|
|
|
}
|
2006-03-15 19:55:19 +03:00
|
|
|
|
2014-07-24 12:30:07 +04:00
|
|
|
aDesiredSize.SetSize(wm, finalSize);
|
2010-10-07 08:25:46 +04:00
|
|
|
aDesiredSize.SetOverflowAreasToDesiredBounds();
|
|
|
|
aDesiredSize.mOverflowAreas.UnionWith(
|
2015-01-07 10:10:07 +03:00
|
|
|
kidDesiredSize.mOverflowAreas + kidFrame->GetPosition());
|
1999-01-26 03:05:21 +03:00
|
|
|
}
|
1998-09-09 02:34:40 +04:00
|
|
|
|
2008-09-08 12:13:17 +04:00
|
|
|
if (prevCanvasFrame) {
|
2016-07-21 13:36:39 +03:00
|
|
|
ReflowOverflowContainerChildren(aPresContext, aReflowInput,
|
2010-10-07 08:25:45 +04:00
|
|
|
aDesiredSize.mOverflowAreas, 0,
|
2008-09-08 12:13:17 +04:00
|
|
|
aStatus);
|
|
|
|
}
|
|
|
|
|
2016-07-21 13:36:39 +03:00
|
|
|
FinishReflowWithAbsoluteFrames(aPresContext, aDesiredSize, aReflowInput, aStatus);
|
2008-09-08 12:13:17 +04:00
|
|
|
|
2009-10-08 10:18:18 +04:00
|
|
|
NS_FRAME_TRACE_REFLOW_OUT("nsCanvasFrame::Reflow", aStatus);
|
2016-07-21 13:36:39 +03:00
|
|
|
NS_FRAME_SET_TRUNCATION(aStatus, aReflowInput, aDesiredSize);
|
1998-09-09 02:34:40 +04:00
|
|
|
}
|
|
|
|
|
2017-04-30 18:30:08 +03:00
|
|
|
nsresult
|
|
|
|
nsCanvasFrame::GetContentForEvent(WidgetEvent* aEvent, nsIContent** aContent)
|
2001-05-19 03:08:00 +04:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aContent);
|
2011-09-27 00:55:04 +04:00
|
|
|
nsresult rv = nsFrame::GetContentForEvent(aEvent,
|
2001-05-19 03:08:00 +04:00
|
|
|
aContent);
|
|
|
|
if (NS_FAILED(rv) || !*aContent) {
|
|
|
|
nsIFrame* kid = mFrames.FirstChild();
|
|
|
|
if (kid) {
|
2011-09-27 00:55:04 +04:00
|
|
|
rv = kid->GetContentForEvent(aEvent,
|
2001-05-19 03:08:00 +04:00
|
|
|
aContent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2017-02-28 20:58:30 +03:00
|
|
|
void
|
|
|
|
nsCanvasFrame::MaybePropagateRootElementWritingMode()
|
|
|
|
{
|
|
|
|
nsIFrame* child = PrincipalChildList().FirstChild();
|
|
|
|
if (child && child->GetContent() &&
|
|
|
|
child->GetContent() == PresContext()->Document()->GetRootElement()) {
|
|
|
|
nsIFrame* childPrimary = child->GetContent()->GetPrimaryFrame();
|
|
|
|
PropagateRootElementWritingMode(childPrimary->GetWritingMode());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-06 03:31:14 +04:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2014-02-18 11:47:48 +04:00
|
|
|
nsresult
|
2009-10-08 10:18:18 +04:00
|
|
|
nsCanvasFrame::GetFrameName(nsAString& aResult) const
|
1998-11-13 05:20:31 +03:00
|
|
|
{
|
2001-11-14 04:33:42 +03:00
|
|
|
return MakeFrameName(NS_LITERAL_STRING("Canvas"), aResult);
|
1998-11-13 05:20:31 +03:00
|
|
|
}
|
1999-09-01 05:02:16 +04:00
|
|
|
#endif
|