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-06-11 03:44:50 +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/. */
|
2012-05-16 19:47:10 +04:00
|
|
|
|
|
|
|
#include "nsMeterFrame.h"
|
|
|
|
|
2019-04-06 09:02:28 +03:00
|
|
|
#include "mozilla/PresShell.h"
|
|
|
|
#include "mozilla/dom/Document.h"
|
|
|
|
#include "mozilla/dom/Element.h"
|
|
|
|
#include "mozilla/dom/HTMLMeterElement.h"
|
2012-05-16 19:47:10 +04:00
|
|
|
#include "nsIContent.h"
|
2021-10-01 14:48:17 +03:00
|
|
|
#include "nsLayoutUtils.h"
|
2012-05-16 19:47:10 +04:00
|
|
|
#include "nsPresContext.h"
|
|
|
|
#include "nsGkAtoms.h"
|
|
|
|
#include "nsNodeInfoManager.h"
|
|
|
|
#include "nsContentCreatorFunctions.h"
|
|
|
|
#include "nsFontMetrics.h"
|
2013-01-15 16:22:03 +04:00
|
|
|
#include <algorithm>
|
2012-05-16 19:47:10 +04:00
|
|
|
|
2014-07-24 12:28:46 +04:00
|
|
|
using namespace mozilla;
|
2019-10-24 01:12:39 +03:00
|
|
|
using mozilla::dom::Document;
|
2013-12-03 08:49:03 +04:00
|
|
|
using mozilla::dom::Element;
|
2013-08-02 02:24:24 +04:00
|
|
|
using mozilla::dom::HTMLMeterElement;
|
2012-05-16 19:47:10 +04:00
|
|
|
|
2019-04-16 10:24:49 +03:00
|
|
|
nsIFrame* NS_NewMeterFrame(PresShell* aPresShell, ComputedStyle* aStyle) {
|
2019-02-05 19:45:54 +03:00
|
|
|
return new (aPresShell) nsMeterFrame(aStyle, aPresShell->GetPresContext());
|
2012-05-16 19:47:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsMeterFrame)
|
|
|
|
|
2019-02-05 19:45:54 +03:00
|
|
|
nsMeterFrame::nsMeterFrame(ComputedStyle* aStyle, nsPresContext* aPresContext)
|
|
|
|
: nsContainerFrame(aStyle, aPresContext, kClassID), mBarDiv(nullptr) {}
|
2012-05-16 19:47:10 +04:00
|
|
|
|
2020-03-17 12:38:32 +03:00
|
|
|
nsMeterFrame::~nsMeterFrame() = default;
|
2012-05-16 19:47:10 +04:00
|
|
|
|
2023-09-07 14:46:30 +03:00
|
|
|
void nsMeterFrame::Destroy(DestroyContext& aContext) {
|
2012-05-16 19:47:10 +04:00
|
|
|
NS_ASSERTION(!GetPrevContinuation(),
|
|
|
|
"nsMeterFrame should not have continuations; if it does we "
|
|
|
|
"need to call RegUnregAccessKey only for the first.");
|
2023-09-07 14:46:30 +03:00
|
|
|
aContext.AddAnonymousContent(mBarDiv.forget());
|
|
|
|
nsContainerFrame::Destroy(aContext);
|
2012-05-16 19:47:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult nsMeterFrame::CreateAnonymousContent(
|
|
|
|
nsTArray<ContentInfo>& aElements) {
|
|
|
|
// Get the NodeInfoManager and tag necessary to create the meter bar div.
|
2019-01-02 16:05:23 +03:00
|
|
|
nsCOMPtr<Document> doc = mContent->GetComposedDoc();
|
2012-05-16 19:47:10 +04:00
|
|
|
|
|
|
|
// Create the div.
|
2013-12-03 08:49:03 +04:00
|
|
|
mBarDiv = doc->CreateHTMLElement(nsGkAtoms::div);
|
2012-05-16 19:47:10 +04:00
|
|
|
|
2023-10-30 18:15:24 +03:00
|
|
|
// Associate the right pseudo-element to the anonymous child.
|
|
|
|
if (StaticPrefs::layout_css_modern_range_pseudos_enabled()) {
|
|
|
|
// TODO(emilio): Create also a slider-track pseudo-element.
|
|
|
|
mBarDiv->SetPseudoElementType(PseudoStyleType::sliderFill);
|
|
|
|
} else {
|
|
|
|
mBarDiv->SetPseudoElementType(PseudoStyleType::mozMeterBar);
|
|
|
|
}
|
2012-05-16 19:47:10 +04:00
|
|
|
|
2017-01-13 06:21:11 +03:00
|
|
|
aElements.AppendElement(mBarDiv);
|
2012-05-16 19:47:10 +04:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2014-07-16 22:41:57 +04:00
|
|
|
void nsMeterFrame::AppendAnonymousContentTo(nsTArray<nsIContent*>& aElements,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t aFilter) {
|
2014-07-16 22:41:57 +04:00
|
|
|
if (mBarDiv) {
|
|
|
|
aElements.AppendElement(mBarDiv);
|
|
|
|
}
|
2012-05-16 19:47:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_QUERYFRAME_HEAD(nsMeterFrame)
|
2018-12-07 23:00:18 +03:00
|
|
|
NS_QUERYFRAME_ENTRY(nsMeterFrame)
|
|
|
|
NS_QUERYFRAME_ENTRY(nsIAnonymousContentCreator)
|
2012-05-16 19:47:10 +04:00
|
|
|
NS_QUERYFRAME_TAIL_INHERITING(nsContainerFrame)
|
|
|
|
|
2014-05-13 04:47:52 +04:00
|
|
|
void nsMeterFrame::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) {
|
2015-03-30 01:38:40 +03:00
|
|
|
MarkInReflow();
|
2012-05-16 19:47:10 +04:00
|
|
|
DO_GLOBAL_REFLOW_COUNT("nsMeterFrame");
|
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!");
|
2012-05-16 19:47:10 +04:00
|
|
|
|
|
|
|
NS_ASSERTION(mBarDiv, "Meter bar div must exist!");
|
|
|
|
NS_ASSERTION(!GetPrevContinuation(),
|
|
|
|
"nsMeterFrame should not have continuations; if it does we "
|
|
|
|
"need to call RegUnregAccessKey only for the first.");
|
|
|
|
|
|
|
|
nsIFrame* barFrame = mBarDiv->GetPrimaryFrame();
|
|
|
|
NS_ASSERTION(barFrame, "The meter frame should have a child with a frame!");
|
|
|
|
|
2016-07-21 13:36:39 +03:00
|
|
|
ReflowBarFrame(barFrame, aPresContext, aReflowInput, aStatus);
|
2012-05-16 19:47:10 +04:00
|
|
|
|
2020-11-03 23:07:18 +03:00
|
|
|
const auto wm = aReflowInput.GetWritingMode();
|
|
|
|
aDesiredSize.SetSize(wm, aReflowInput.ComputedSizeWithBorderPadding(wm));
|
2012-05-16 19:47:10 +04:00
|
|
|
|
|
|
|
aDesiredSize.SetOverflowAreasToDesiredBounds();
|
|
|
|
ConsiderChildOverflow(aDesiredSize.mOverflowAreas, barFrame);
|
|
|
|
FinishAndStoreOverflow(&aDesiredSize);
|
|
|
|
|
2017-09-13 13:00:25 +03:00
|
|
|
aStatus.Reset(); // This type of frame can't be split.
|
2012-05-16 19:47:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void nsMeterFrame::ReflowBarFrame(nsIFrame* aBarFrame,
|
|
|
|
nsPresContext* aPresContext,
|
2016-07-21 13:36:39 +03:00
|
|
|
const ReflowInput& aReflowInput,
|
2012-05-16 19:47:10 +04:00
|
|
|
nsReflowStatus& aStatus) {
|
2014-06-27 14:25:11 +04:00
|
|
|
bool vertical = ResolvedOrientationIsVertical();
|
2014-07-24 12:28:46 +04:00
|
|
|
WritingMode wm = aBarFrame->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-07-21 13:36:39 +03:00
|
|
|
ReflowInput reflowInput(aPresContext, aReflowInput, aBarFrame, availSize);
|
|
|
|
nscoord size =
|
|
|
|
vertical ? aReflowInput.ComputedHeight() : aReflowInput.ComputedWidth();
|
|
|
|
nscoord xoffset = aReflowInput.ComputedPhysicalBorderPadding().left;
|
|
|
|
nscoord yoffset = aReflowInput.ComputedPhysicalBorderPadding().top;
|
2012-05-16 19:47:10 +04:00
|
|
|
|
2021-12-22 21:16:21 +03:00
|
|
|
auto* meterElement = static_cast<HTMLMeterElement*>(GetContent());
|
|
|
|
size = NSToCoordRound(size * meterElement->Position());
|
2012-05-16 19:47:10 +04:00
|
|
|
|
2019-10-28 21:22:05 +03:00
|
|
|
if (!vertical && wm.IsPhysicalRTL()) {
|
2016-07-21 13:36:39 +03:00
|
|
|
xoffset += aReflowInput.ComputedWidth() - size;
|
2012-05-16 19:47:10 +04:00
|
|
|
}
|
|
|
|
|
2012-05-16 20:31:01 +04:00
|
|
|
// The bar position is *always* constrained.
|
2012-05-16 19:47:10 +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;
|
2012-05-16 19:47:10 +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);
|
2012-05-16 19:47:10 +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);
|
2012-05-16 19:47:10 +04:00
|
|
|
}
|
|
|
|
|
2016-07-21 13:36:39 +03:00
|
|
|
xoffset += reflowInput.ComputedPhysicalMargin().left;
|
|
|
|
yoffset += reflowInput.ComputedPhysicalMargin().top;
|
2012-05-16 19:47:10 +04:00
|
|
|
|
2016-07-21 13:36:39 +03:00
|
|
|
ReflowOutput barDesiredSize(reflowInput);
|
|
|
|
ReflowChild(aBarFrame, aPresContext, barDesiredSize, reflowInput, xoffset,
|
2019-08-08 22:48:19 +03:00
|
|
|
yoffset, ReflowChildFlags::Default, aStatus);
|
2016-07-21 13:36:39 +03:00
|
|
|
FinishReflowChild(aBarFrame, aPresContext, barDesiredSize, &reflowInput,
|
2019-08-08 22:48:19 +03:00
|
|
|
xoffset, yoffset, ReflowChildFlags::Default);
|
2012-05-16 19:47:10 +04:00
|
|
|
}
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
nsresult nsMeterFrame::AttributeChanged(int32_t aNameSpaceID,
|
2017-10-03 01:05:19 +03:00
|
|
|
nsAtom* aAttribute, int32_t aModType) {
|
2012-05-16 19:47:10 +04:00
|
|
|
NS_ASSERTION(mBarDiv, "Meter bar div must exist!");
|
|
|
|
|
|
|
|
if (aNameSpaceID == kNameSpaceID_None &&
|
|
|
|
(aAttribute == nsGkAtoms::value || aAttribute == nsGkAtoms::max ||
|
|
|
|
aAttribute == nsGkAtoms::min)) {
|
|
|
|
nsIFrame* barFrame = mBarDiv->GetPrimaryFrame();
|
|
|
|
NS_ASSERTION(barFrame, "The meter frame should have a child with a frame!");
|
2022-12-02 15:27:31 +03:00
|
|
|
PresShell()->FrameNeedsReflow(barFrame, IntrinsicDirty::None,
|
2017-11-09 05:00:48 +03:00
|
|
|
NS_FRAME_IS_DIRTY);
|
2012-08-29 09:39:31 +04:00
|
|
|
InvalidateFrame();
|
2012-05-16 19:47:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return nsContainerFrame::AttributeChanged(aNameSpaceID, aAttribute, aModType);
|
|
|
|
}
|
|
|
|
|
2017-06-09 22:14:53 +03:00
|
|
|
LogicalSize nsMeterFrame::ComputeAutoSize(
|
|
|
|
gfxContext* aRenderingContext, WritingMode aWM, const LogicalSize& aCBSize,
|
2016-11-05 04:57:06 +03:00
|
|
|
nscoord aAvailableISize, const LogicalSize& aMargin,
|
2021-01-26 05:47:40 +03:00
|
|
|
const LogicalSize& aBorderPadding, const StyleSizeOverrides& aSizeOverrides,
|
|
|
|
ComputeSizeFlags aFlags) {
|
2016-03-17 08:55:48 +03:00
|
|
|
RefPtr<nsFontMetrics> fontMet =
|
|
|
|
nsLayoutUtils::GetFontMetricsForFrame(this, 1.0f);
|
2012-05-16 19:47:10 +04:00
|
|
|
|
2014-08-24 18:34:51 +04:00
|
|
|
const WritingMode wm = GetWritingMode();
|
|
|
|
LogicalSize autoSize(wm);
|
2020-06-22 12:45:40 +03:00
|
|
|
autoSize.BSize(wm) = autoSize.ISize(wm) =
|
|
|
|
fontMet->Font().size.ToAppUnits(); // 1em
|
2012-05-16 19:47:10 +04:00
|
|
|
|
2015-07-07 16:20:09 +03:00
|
|
|
if (ResolvedOrientationIsVertical() == wm.IsVertical()) {
|
|
|
|
autoSize.ISize(wm) *= 5; // 5em
|
2012-05-16 19:47:10 +04:00
|
|
|
} else {
|
2015-07-07 16:20:09 +03:00
|
|
|
autoSize.BSize(wm) *= 5; // 5em
|
2012-05-16 19:47:10 +04:00
|
|
|
}
|
2012-06-06 00:15:46 +04:00
|
|
|
|
2014-08-24 18:34:51 +04:00
|
|
|
return autoSize.ConvertTo(aWM, wm);
|
2012-05-16 19:47:10 +04:00
|
|
|
}
|
2012-05-16 20:31:01 +04:00
|
|
|
|
2017-06-09 22:14:53 +03:00
|
|
|
nscoord nsMeterFrame::GetMinISize(gfxContext* aRenderingContext) {
|
2016-03-17 08:55:48 +03:00
|
|
|
RefPtr<nsFontMetrics> fontMet =
|
|
|
|
nsLayoutUtils::GetFontMetricsForFrame(this, 1.0f);
|
2012-06-06 00:15:46 +04:00
|
|
|
|
2020-06-22 12:45:40 +03:00
|
|
|
nscoord minISize = fontMet->Font().size.ToAppUnits(); // 1em
|
2012-06-06 00:15:46 +04:00
|
|
|
|
2014-06-27 14:25:11 +04:00
|
|
|
if (ResolvedOrientationIsVertical() == GetWritingMode().IsVertical()) {
|
|
|
|
// The orientation is inline
|
|
|
|
minISize *= 5; // 5em
|
2012-06-06 00:15:46 +04:00
|
|
|
}
|
|
|
|
|
2014-06-27 14:25:11 +04:00
|
|
|
return minISize;
|
2012-06-06 00:15:46 +04:00
|
|
|
}
|
|
|
|
|
2017-06-09 22:14:53 +03:00
|
|
|
nscoord nsMeterFrame::GetPrefISize(gfxContext* aRenderingContext) {
|
2014-07-24 21:03:25 +04:00
|
|
|
return GetMinISize(aRenderingContext);
|
2012-06-06 00:15:46 +04:00
|
|
|
}
|
|
|
|
|
2012-05-16 20:31:01 +04:00
|
|
|
bool nsMeterFrame::ShouldUseNativeStyle() const {
|
2015-08-03 14:08:32 +03:00
|
|
|
nsIFrame* barFrame = mBarDiv->GetPrimaryFrame();
|
|
|
|
|
2012-05-16 20:31:01 +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.
|
2020-07-17 01:04:12 +03:00
|
|
|
return StyleDisplay()->EffectiveAppearance() == StyleAppearance::Meter &&
|
2021-10-01 14:48:17 +03:00
|
|
|
!Style()->HasAuthorSpecifiedBorderOrBackground() && barFrame &&
|
2020-07-17 01:04:12 +03:00
|
|
|
barFrame->StyleDisplay()->EffectiveAppearance() ==
|
|
|
|
StyleAppearance::Meterchunk &&
|
2021-10-01 14:48:17 +03:00
|
|
|
!barFrame->Style()->HasAuthorSpecifiedBorderOrBackground();
|
2012-05-16 20:31:01 +04:00
|
|
|
}
|