2011-05-10 16:59:07 +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/. */
|
2011-05-10 16:59:07 +04:00
|
|
|
|
|
|
|
#include "nsProgressFrame.h"
|
|
|
|
|
|
|
|
#include "nsIContent.h"
|
|
|
|
#include "nsPresContext.h"
|
|
|
|
#include "nsGkAtoms.h"
|
2014-02-28 03:04:46 +04:00
|
|
|
#include "nsNameSpaceManager.h"
|
2011-05-10 16:59:07 +04:00
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIPresShell.h"
|
|
|
|
#include "nsNodeInfoManager.h"
|
|
|
|
#include "nsContentCreatorFunctions.h"
|
|
|
|
#include "nsContentUtils.h"
|
|
|
|
#include "nsFormControlFrame.h"
|
|
|
|
#include "nsFontMetrics.h"
|
2011-07-20 23:18:54 +04:00
|
|
|
#include "mozilla/dom/Element.h"
|
2013-08-02 02:24:22 +04:00
|
|
|
#include "mozilla/dom/HTMLProgressElement.h"
|
2012-09-06 00:49:53 +04:00
|
|
|
#include "nsContentList.h"
|
2016-02-17 23:37:00 +03:00
|
|
|
#include "nsCSSPseudoElements.h"
|
2013-08-20 02:55:18 +04:00
|
|
|
#include "nsStyleSet.h"
|
2016-02-24 10:01:11 +03:00
|
|
|
#include "mozilla/StyleSetHandle.h"
|
|
|
|
#include "mozilla/StyleSetHandleInlines.h"
|
2013-08-20 02:55:18 +04:00
|
|
|
#include "nsThemeConstants.h"
|
2013-01-15 16:22:03 +04:00
|
|
|
#include <algorithm>
|
2011-05-10 16:59:07 +04:00
|
|
|
|
2014-07-24 12:28:46 +04:00
|
|
|
using namespace mozilla;
|
2013-08-02 02:24:22 +04:00
|
|
|
using namespace mozilla::dom;
|
2011-05-10 16:59:07 +04:00
|
|
|
|
|
|
|
nsIFrame*
|
|
|
|
NS_NewProgressFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
|
|
|
{
|
|
|
|
return new (aPresShell) nsProgressFrame(aContext);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsProgressFrame)
|
|
|
|
|
|
|
|
nsProgressFrame::nsProgressFrame(nsStyleContext* aContext)
|
2017-05-26 13:11:11 +03:00
|
|
|
: nsContainerFrame(aContext, kClassID)
|
2012-07-30 18:20:58 +04:00
|
|
|
, mBarDiv(nullptr)
|
2011-05-10 16:59:07 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsProgressFrame::~nsProgressFrame()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsProgressFrame::DestroyFrom(nsIFrame* aDestructRoot)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(!GetPrevContinuation(),
|
|
|
|
"nsProgressFrame should not have continuations; if it does we "
|
|
|
|
"need to call RegUnregAccessKey only for the first.");
|
2011-10-17 18:59:28 +04:00
|
|
|
nsFormControlFrame::RegUnRegAccessKey(static_cast<nsIFrame*>(this), false);
|
2011-05-10 16:59:07 +04:00
|
|
|
nsContentUtils::DestroyAnonymousContent(&mBarDiv);
|
2011-12-28 00:18:48 +04:00
|
|
|
nsContainerFrame::DestroyFrom(aDestructRoot);
|
2011-05-10 16:59:07 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsProgressFrame::CreateAnonymousContent(nsTArray<ContentInfo>& aElements)
|
|
|
|
{
|
2013-12-03 08:49:03 +04:00
|
|
|
// Create the progress bar div.
|
2014-08-21 04:38:01 +04:00
|
|
|
nsCOMPtr<nsIDocument> doc = mContent->GetComposedDoc();
|
2013-12-03 08:49:03 +04:00
|
|
|
mBarDiv = doc->CreateHTMLElement(nsGkAtoms::div);
|
2011-05-10 16:59:07 +04:00
|
|
|
|
2011-05-09 20:42:58 +04:00
|
|
|
// Associate ::-moz-progress-bar pseudo-element to the anonymous child.
|
2017-01-13 06:21:11 +03:00
|
|
|
mBarDiv->SetPseudoElementType(CSSPseudoElementType::mozProgressBar);
|
2011-05-09 20:42:58 +04:00
|
|
|
|
2017-01-13 06:21:11 +03:00
|
|
|
if (!aElements.AppendElement(mBarDiv)) {
|
2011-05-10 16:59:07 +04:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-07-16 22:41:57 +04:00
|
|
|
nsProgressFrame::AppendAnonymousContentTo(nsTArray<nsIContent*>& aElements,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t aFilter)
|
2011-05-10 16:59:07 +04:00
|
|
|
{
|
2014-07-16 22:41:57 +04:00
|
|
|
if (mBarDiv) {
|
|
|
|
aElements.AppendElement(mBarDiv);
|
|
|
|
}
|
2011-05-10 16:59:07 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_QUERYFRAME_HEAD(nsProgressFrame)
|
2011-05-06 14:00:30 +04:00
|
|
|
NS_QUERYFRAME_ENTRY(nsProgressFrame)
|
2011-05-10 16:59:07 +04:00
|
|
|
NS_QUERYFRAME_ENTRY(nsIAnonymousContentCreator)
|
2011-12-28 00:18:48 +04:00
|
|
|
NS_QUERYFRAME_TAIL_INHERITING(nsContainerFrame)
|
2011-05-10 16:59:07 +04:00
|
|
|
|
|
|
|
|
2013-02-14 15:12:27 +04:00
|
|
|
void
|
2011-12-28 00:18:48 +04:00
|
|
|
nsProgressFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
2017-08-10 15:40:21 +03:00
|
|
|
const nsRect& aDirtyRect,
|
2011-12-28 00:18:48 +04:00
|
|
|
const nsDisplayListSet& aLists)
|
|
|
|
{
|
2017-08-10 15:40:21 +03:00
|
|
|
BuildDisplayListForInline(aBuilder, aDirtyRect, aLists);
|
2011-12-28 00:18:48 +04:00
|
|
|
}
|
|
|
|
|
2014-05-13 04:47:52 +04:00
|
|
|
void
|
|
|
|
nsProgressFrame::Reflow(nsPresContext* aPresContext,
|
2016-07-21 13:36:38 +03:00
|
|
|
ReflowOutput& aDesiredSize,
|
2016-07-21 13:36:39 +03:00
|
|
|
const ReflowInput& aReflowInput,
|
2015-03-30 01:38:40 +03:00
|
|
|
nsReflowStatus& aStatus)
|
2011-05-10 16:59:07 +04:00
|
|
|
{
|
2015-03-30 01:38:40 +03:00
|
|
|
MarkInReflow();
|
2011-05-10 16:59:07 +04:00
|
|
|
DO_GLOBAL_REFLOW_COUNT("nsProgressFrame");
|
2016-07-21 13:36:39 +03:00
|
|
|
DISPLAY_REFLOW(aPresContext, this, aReflowInput, aDesiredSize, aStatus);
|
2011-05-10 16:59:07 +04:00
|
|
|
|
|
|
|
NS_ASSERTION(mBarDiv, "Progress bar div must exist!");
|
2016-11-29 01:00:20 +03:00
|
|
|
NS_ASSERTION(PrincipalChildList().GetLength() == 1 &&
|
|
|
|
PrincipalChildList().FirstChild() == mBarDiv->GetPrimaryFrame(),
|
|
|
|
"unexpected child frames");
|
2011-05-10 16:59:07 +04:00
|
|
|
NS_ASSERTION(!GetPrevContinuation(),
|
|
|
|
"nsProgressFrame should not have continuations; if it does we "
|
|
|
|
"need to call RegUnregAccessKey only for the first.");
|
|
|
|
|
|
|
|
if (mState & NS_FRAME_FIRST_REFLOW) {
|
2011-10-17 18:59:28 +04:00
|
|
|
nsFormControlFrame::RegUnRegAccessKey(this, true);
|
2011-05-10 16:59:07 +04:00
|
|
|
}
|
|
|
|
|
2016-07-21 13:36:39 +03:00
|
|
|
aDesiredSize.SetSize(aReflowInput.GetWritingMode(),
|
|
|
|
aReflowInput.ComputedSizeWithBorderPadding());
|
2011-05-10 16:59:07 +04:00
|
|
|
aDesiredSize.SetOverflowAreasToDesiredBounds();
|
2016-11-29 01:00:20 +03:00
|
|
|
|
|
|
|
for (auto childFrame : PrincipalChildList()) {
|
|
|
|
ReflowChildFrame(childFrame, aPresContext, aReflowInput, aStatus);
|
|
|
|
ConsiderChildOverflow(aDesiredSize.mOverflowAreas, childFrame);
|
|
|
|
}
|
|
|
|
|
2011-05-10 16:59:07 +04:00
|
|
|
FinishAndStoreOverflow(&aDesiredSize);
|
|
|
|
|
2017-02-14 12:55:48 +03:00
|
|
|
aStatus.Reset();
|
2011-05-10 16:59:07 +04:00
|
|
|
|
2016-07-21 13:36:39 +03:00
|
|
|
NS_FRAME_SET_TRUNCATION(aStatus, aReflowInput, aDesiredSize);
|
2011-05-10 16:59:07 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-11-29 01:00:20 +03:00
|
|
|
nsProgressFrame::ReflowChildFrame(nsIFrame* aChild,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
const ReflowInput& aReflowInput,
|
|
|
|
nsReflowStatus& aStatus)
|
2011-05-10 16:59:07 +04:00
|
|
|
{
|
2014-06-27 14:25:11 +04:00
|
|
|
bool vertical = ResolvedOrientationIsVertical();
|
2016-11-29 01:00:20 +03:00
|
|
|
WritingMode wm = aChild->GetWritingMode();
|
2016-07-21 13:36:39 +03:00
|
|
|
LogicalSize availSize = aReflowInput.ComputedSize(wm);
|
2014-07-24 12:28:46 +04:00
|
|
|
availSize.BSize(wm) = NS_UNCONSTRAINEDSIZE;
|
2016-11-29 01:00:20 +03:00
|
|
|
ReflowInput reflowInput(aPresContext, aReflowInput, aChild, availSize);
|
2016-07-21 13:36:39 +03:00
|
|
|
nscoord size = vertical ? aReflowInput.ComputedHeight()
|
|
|
|
: aReflowInput.ComputedWidth();
|
|
|
|
nscoord xoffset = aReflowInput.ComputedPhysicalBorderPadding().left;
|
|
|
|
nscoord yoffset = aReflowInput.ComputedPhysicalBorderPadding().top;
|
2011-05-10 16:59:07 +04:00
|
|
|
|
2013-08-02 02:24:22 +04:00
|
|
|
double position = static_cast<HTMLProgressElement*>(mContent)->Position();
|
2011-05-10 16:59:07 +04:00
|
|
|
|
2011-05-16 14:56:06 +04:00
|
|
|
// Force the bar's size to match the current progress.
|
|
|
|
// When indeterminate, the progress' size will be 100%.
|
2011-05-10 16:59:07 +04:00
|
|
|
if (position >= 0.0) {
|
2011-05-16 14:56:06 +04:00
|
|
|
size *= position;
|
2011-05-10 16:59:07 +04:00
|
|
|
}
|
|
|
|
|
2014-06-27 14:25:11 +04:00
|
|
|
if (!vertical && (wm.IsVertical() ? wm.IsVerticalRL() : !wm.IsBidiLTR())) {
|
2016-07-21 13:36:39 +03:00
|
|
|
xoffset += aReflowInput.ComputedWidth() - size;
|
2011-05-10 16:59:07 +04:00
|
|
|
}
|
|
|
|
|
2011-05-16 14:56:06 +04:00
|
|
|
// The bar size is fixed in these cases:
|
|
|
|
// - the progress position is determined: the bar size is fixed according
|
2011-05-06 13:56:47 +04:00
|
|
|
// to it's value.
|
2011-05-06 14:00:30 +04:00
|
|
|
// - the progress position is indeterminate and the bar appearance should be
|
2011-05-16 14:56:06 +04:00
|
|
|
// shown as native: the bar size is forced to 100%.
|
2011-05-06 13:56:47 +04:00
|
|
|
// Otherwise (when the progress is indeterminate and the bar appearance isn't
|
2011-05-16 14:56:06 +04:00
|
|
|
// native), the bar size isn't fixed and can be set by the author.
|
2011-05-06 14:00:30 +04:00
|
|
|
if (position != -1 || ShouldUseNativeStyle()) {
|
2011-05-16 14:56:06 +04:00
|
|
|
if (vertical) {
|
|
|
|
// We want the bar to begin at the bottom.
|
2016-07-21 13:36:39 +03:00
|
|
|
yoffset += aReflowInput.ComputedHeight() - size;
|
2011-05-16 14:56:06 +04:00
|
|
|
|
2016-07-21 13:36:39 +03:00
|
|
|
size -= reflowInput.ComputedPhysicalMargin().TopBottom() +
|
|
|
|
reflowInput.ComputedPhysicalBorderPadding().TopBottom();
|
2013-01-15 16:22:03 +04:00
|
|
|
size = std::max(size, 0);
|
2016-07-21 13:36:39 +03:00
|
|
|
reflowInput.SetComputedHeight(size);
|
2011-05-16 14:56:06 +04:00
|
|
|
} else {
|
2016-07-21 13:36:39 +03:00
|
|
|
size -= reflowInput.ComputedPhysicalMargin().LeftRight() +
|
|
|
|
reflowInput.ComputedPhysicalBorderPadding().LeftRight();
|
2013-01-15 16:22:03 +04:00
|
|
|
size = std::max(size, 0);
|
2016-07-21 13:36:39 +03:00
|
|
|
reflowInput.SetComputedWidth(size);
|
2011-05-16 14:56:06 +04:00
|
|
|
}
|
|
|
|
} else if (vertical) {
|
|
|
|
// For vertical progress bars, we need to position the bar specificly when
|
|
|
|
// the width isn't constrained (position == -1 and !ShouldUseNativeStyle())
|
2016-07-21 13:36:39 +03:00
|
|
|
// because aReflowInput.ComputedHeight() - size == 0.
|
|
|
|
yoffset += aReflowInput.ComputedHeight() - reflowInput.ComputedHeight();
|
2011-05-06 13:56:47 +04:00
|
|
|
}
|
2011-05-10 16:59:07 +04:00
|
|
|
|
2016-07-21 13:36:39 +03:00
|
|
|
xoffset += reflowInput.ComputedPhysicalMargin().left;
|
|
|
|
yoffset += reflowInput.ComputedPhysicalMargin().top;
|
2011-05-10 16:59:07 +04:00
|
|
|
|
2016-07-21 13:36:39 +03:00
|
|
|
ReflowOutput barDesiredSize(aReflowInput);
|
2016-11-29 01:00:20 +03:00
|
|
|
ReflowChild(aChild, aPresContext, barDesiredSize, reflowInput, xoffset,
|
2011-05-10 16:59:07 +04:00
|
|
|
yoffset, 0, aStatus);
|
2016-11-29 01:00:20 +03:00
|
|
|
FinishReflowChild(aChild, aPresContext, barDesiredSize, &reflowInput,
|
2011-05-10 16:59:07 +04:00
|
|
|
xoffset, yoffset, 0);
|
|
|
|
}
|
|
|
|
|
2014-02-18 11:47:48 +04:00
|
|
|
nsresult
|
2012-08-22 19:56:38 +04:00
|
|
|
nsProgressFrame::AttributeChanged(int32_t aNameSpaceID,
|
2011-05-10 16:59:07 +04:00
|
|
|
nsIAtom* aAttribute,
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t aModType)
|
2011-05-10 16:59:07 +04:00
|
|
|
{
|
|
|
|
NS_ASSERTION(mBarDiv, "Progress bar div must exist!");
|
|
|
|
|
|
|
|
if (aNameSpaceID == kNameSpaceID_None &&
|
|
|
|
(aAttribute == nsGkAtoms::value || aAttribute == nsGkAtoms::max)) {
|
2016-11-29 01:00:20 +03:00
|
|
|
auto shell = PresContext()->PresShell();
|
|
|
|
for (auto childFrame : PrincipalChildList()) {
|
|
|
|
shell->FrameNeedsReflow(childFrame, nsIPresShell::eResize,
|
|
|
|
NS_FRAME_IS_DIRTY);
|
|
|
|
}
|
2012-08-29 09:39:31 +04:00
|
|
|
InvalidateFrame();
|
2011-05-10 16:59:07 +04:00
|
|
|
}
|
|
|
|
|
2011-12-28 00:18:48 +04:00
|
|
|
return nsContainerFrame::AttributeChanged(aNameSpaceID, aAttribute, aModType);
|
2011-05-10 16:59:07 +04:00
|
|
|
}
|
|
|
|
|
2014-08-24 18:34:51 +04:00
|
|
|
LogicalSize
|
2017-06-09 22:14:53 +03:00
|
|
|
nsProgressFrame::ComputeAutoSize(gfxContext* aRenderingContext,
|
2016-11-05 04:57:06 +03:00
|
|
|
WritingMode aWM,
|
|
|
|
const LogicalSize& aCBSize,
|
|
|
|
nscoord aAvailableISize,
|
|
|
|
const LogicalSize& aMargin,
|
|
|
|
const LogicalSize& aBorder,
|
|
|
|
const LogicalSize& aPadding,
|
|
|
|
ComputeSizeFlags aFlags)
|
2011-05-10 16:59:07 +04:00
|
|
|
{
|
2014-08-24 18:34:51 +04:00
|
|
|
const WritingMode wm = GetWritingMode();
|
|
|
|
LogicalSize autoSize(wm);
|
|
|
|
autoSize.BSize(wm) = autoSize.ISize(wm) =
|
2013-02-19 16:48:46 +04:00
|
|
|
NSToCoordRound(StyleFont()->mFont.size *
|
|
|
|
nsLayoutUtils::FontSizeInflationFor(this)); // 1em
|
2011-06-01 14:27:46 +04:00
|
|
|
|
2015-07-07 16:20:09 +03:00
|
|
|
if (ResolvedOrientationIsVertical() == wm.IsVertical()) {
|
|
|
|
autoSize.ISize(wm) *= 10; // 10em
|
2011-06-01 14:27:46 +04:00
|
|
|
} else {
|
2015-07-07 16:20:09 +03:00
|
|
|
autoSize.BSize(wm) *= 10; // 10em
|
2011-06-01 14:27:46 +04:00
|
|
|
}
|
2011-05-10 16:59:07 +04:00
|
|
|
|
2014-08-24 18:34:51 +04:00
|
|
|
return autoSize.ConvertTo(aWM, wm);
|
2011-05-10 16:59:07 +04:00
|
|
|
}
|
|
|
|
|
2011-08-23 02:30:33 +04:00
|
|
|
nscoord
|
2017-06-09 22:14:53 +03:00
|
|
|
nsProgressFrame::GetMinISize(gfxContext *aRenderingContext)
|
2011-08-23 02:30:33 +04:00
|
|
|
{
|
2016-03-17 08:55:48 +03:00
|
|
|
RefPtr<nsFontMetrics> fontMet =
|
|
|
|
nsLayoutUtils::GetFontMetricsForFrame(this, 1.0f);
|
2011-08-23 02:30:33 +04:00
|
|
|
|
2014-06-27 14:25:11 +04:00
|
|
|
nscoord minISize = fontMet->Font().size; // 1em
|
2011-08-23 02:30:33 +04:00
|
|
|
|
2014-06-27 14:25:11 +04:00
|
|
|
if (ResolvedOrientationIsVertical() == GetWritingMode().IsVertical()) {
|
|
|
|
// The orientation is inline
|
|
|
|
minISize *= 10; // 10em
|
2011-08-23 02:30:33 +04:00
|
|
|
}
|
|
|
|
|
2014-06-27 14:25:11 +04:00
|
|
|
return minISize;
|
2011-08-23 02:30:33 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
nscoord
|
2017-06-09 22:14:53 +03:00
|
|
|
nsProgressFrame::GetPrefISize(gfxContext *aRenderingContext)
|
2011-08-23 02:30:33 +04:00
|
|
|
{
|
2014-07-24 21:03:25 +04:00
|
|
|
return GetMinISize(aRenderingContext);
|
2011-08-23 02:30:33 +04:00
|
|
|
}
|
|
|
|
|
2011-05-06 14:00:30 +04:00
|
|
|
bool
|
|
|
|
nsProgressFrame::ShouldUseNativeStyle() const
|
|
|
|
{
|
2016-11-29 01:00:20 +03:00
|
|
|
nsIFrame* barFrame = PrincipalChildList().FirstChild();
|
2015-08-03 14:08:32 +03:00
|
|
|
|
2011-05-06 14:00:30 +04:00
|
|
|
// Use the native style if these conditions are satisfied:
|
|
|
|
// - both frames use the native appearance;
|
|
|
|
// - neither frame has author specified rules setting the border or the
|
|
|
|
// background.
|
2017-05-21 12:15:00 +03:00
|
|
|
return StyleDisplay()->mAppearance == NS_THEME_PROGRESSBAR &&
|
2015-08-19 01:41:24 +03:00
|
|
|
!PresContext()->HasAuthorSpecifiedRules(this,
|
2011-05-06 14:00:30 +04:00
|
|
|
NS_AUTHOR_SPECIFIED_BORDER | NS_AUTHOR_SPECIFIED_BACKGROUND) &&
|
2015-08-03 14:08:32 +03:00
|
|
|
barFrame &&
|
2017-05-21 12:15:00 +03:00
|
|
|
barFrame->StyleDisplay()->mAppearance == NS_THEME_PROGRESSCHUNK &&
|
2015-08-03 14:08:32 +03:00
|
|
|
!PresContext()->HasAuthorSpecifiedRules(barFrame,
|
2011-05-06 14:00:30 +04:00
|
|
|
NS_AUTHOR_SPECIFIED_BORDER | NS_AUTHOR_SPECIFIED_BACKGROUND);
|
|
|
|
}
|
|
|
|
|
2013-12-03 08:49:03 +04:00
|
|
|
Element*
|
2016-02-17 23:37:00 +03:00
|
|
|
nsProgressFrame::GetPseudoElement(CSSPseudoElementType aType)
|
2013-12-03 03:57:50 +04:00
|
|
|
{
|
2016-02-17 01:07:00 +03:00
|
|
|
if (aType == CSSPseudoElementType::mozProgressBar) {
|
2013-12-03 03:57:50 +04:00
|
|
|
return mBarDiv;
|
|
|
|
}
|
|
|
|
|
2013-12-03 08:49:03 +04:00
|
|
|
return nsContainerFrame::GetPseudoElement(aType);
|
2013-12-03 03:57:50 +04:00
|
|
|
}
|