gecko-dev/layout/generic/MiddleCroppingBlockFrame.h
Ting-Yu Lin 26a6db6fb1 Bug 1909761 Part 2 - Create a helper struct IntrinsicSizeInput to aggregate needed data when computing intrinsic inline size. r=dholbert
This patch changes the signature to `GetMinISize()`, `GetPrefISize()`,
`IntrinsicISize` by adding a helper struct as a preparation. Then we can just
add more data such as a percentage basis to the struct without altering the
signature in the future.

When passing `IntrinsicSizeInput` struct down to another helper method, we
generally just pass the original one if the method is computing the intrinsic
size of our own or our anonymous children. If the method is computing our
children's intrinsic contribution, we'll need to create a brand new
`IntrinsicSizeInput` for our children.

Differential Revision: https://phabricator.services.mozilla.com/D219521
2024-09-03 04:25:41 +00:00

64 lines
2.1 KiB
C++

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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/. */
#ifndef mozilla_MiddleCroppingBlockFrame_h
#define mozilla_MiddleCroppingBlockFrame_h
#include "nsBlockFrame.h"
#include "nsIAnonymousContentCreator.h"
#include "nsQueryFrame.h"
namespace mozilla {
// A block frame that implements a simplistic version of middle-cropping. Note
// that this is not fully l10n aware or complex-writing-system-friendly, so it's
// generally mostly useful for filenames / urls / etc.
class MiddleCroppingBlockFrame : public nsBlockFrame,
public nsIAnonymousContentCreator {
public:
virtual void GetUncroppedValue(nsAString&) = 0;
void UpdateDisplayedValueToUncroppedValue(bool aNotify);
NS_DECL_QUERYFRAME_TARGET(MiddleCroppingBlockFrame)
NS_DECL_QUERYFRAME
NS_DECL_ABSTRACT_FRAME(MiddleCroppingBlockFrame)
protected:
MiddleCroppingBlockFrame(ComputedStyle*, nsPresContext*, ClassID);
~MiddleCroppingBlockFrame();
void Reflow(nsPresContext*, ReflowOutput&, const ReflowInput&,
nsReflowStatus&) override;
nscoord IntrinsicISize(const IntrinsicSizeInput& aInput,
IntrinsicISizeType aType) override;
/**
* Crop aText to fit inside aWidth using the styles of aFrame.
* @return true if aText was modified
*/
bool CropTextToWidth(gfxContext& aRenderingContext, nscoord aWidth,
nsString& aText) const;
nsresult CreateAnonymousContent(nsTArray<ContentInfo>&) override;
void AppendAnonymousContentTo(nsTArray<nsIContent*>&,
uint32_t aFilter) override;
/**
* Updates the displayed value by using aValue.
*/
void UpdateDisplayedValue(const nsAString& aValue, bool aIsCropped,
bool aNotify);
void Destroy(DestroyContext&) override;
RefPtr<dom::Text> mTextNode;
bool mCropped = false;
};
} // namespace mozilla
#endif