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: */
|
2017-10-27 20:09:35 +03: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/. */
|
2014-07-23 06:08:01 +04:00
|
|
|
|
|
|
|
/* rendering object for CSS "display: ruby-base-container" */
|
|
|
|
|
|
|
|
#ifndef nsRubyBaseContainerFrame_h___
|
|
|
|
#define nsRubyBaseContainerFrame_h___
|
|
|
|
|
|
|
|
#include "nsContainerFrame.h"
|
2016-10-26 09:40:58 +03:00
|
|
|
#include "RubyUtils.h"
|
2015-04-08 00:23:57 +03:00
|
|
|
|
2014-07-23 06:08:01 +04:00
|
|
|
/**
|
|
|
|
* Factory function.
|
|
|
|
* @return a newly allocated nsRubyBaseContainerFrame (infallible)
|
|
|
|
*/
|
|
|
|
nsContainerFrame* NS_NewRubyBaseContainerFrame(nsIPresShell* aPresShell,
|
2018-03-22 22:04:20 +03:00
|
|
|
nsStyleContext* aContext);
|
2014-07-23 06:08:01 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class nsRubyBaseContainerFrame final : public nsContainerFrame
|
2014-07-23 06:08:01 +04:00
|
|
|
{
|
|
|
|
public:
|
2017-05-26 13:11:11 +03:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS(nsRubyBaseContainerFrame)
|
2014-07-23 06:08:01 +04:00
|
|
|
NS_DECL_QUERYFRAME
|
|
|
|
|
|
|
|
// nsIFrame overrides
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool IsFrameOfType(uint32_t aFlags) const override;
|
|
|
|
virtual bool CanContinueTextRun() const override;
|
2017-06-09 22:14:53 +03:00
|
|
|
virtual void AddInlineMinISize(gfxContext *aRenderingContext,
|
2015-03-21 19:28:04 +03:00
|
|
|
InlineMinISizeData *aData) override;
|
2017-06-09 22:14:53 +03:00
|
|
|
virtual void AddInlinePrefISize(gfxContext *aRenderingContext,
|
2015-03-21 19:28:04 +03:00
|
|
|
InlinePrefISizeData *aData) override;
|
2014-11-26 07:52:49 +03:00
|
|
|
virtual mozilla::LogicalSize
|
2017-06-09 22:14:53 +03:00
|
|
|
ComputeSize(gfxContext *aRenderingContext,
|
2014-11-26 07:52:49 +03:00
|
|
|
mozilla::WritingMode aWritingMode,
|
|
|
|
const mozilla::LogicalSize& aCBSize,
|
|
|
|
nscoord aAvailableISize,
|
|
|
|
const mozilla::LogicalSize& aMargin,
|
|
|
|
const mozilla::LogicalSize& aBorder,
|
|
|
|
const mozilla::LogicalSize& aPadding,
|
2015-03-21 19:28:04 +03:00
|
|
|
ComputeSizeFlags aFlags) override;
|
2014-08-15 21:34:20 +04:00
|
|
|
virtual void 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-21 19:28:04 +03:00
|
|
|
nsReflowStatus& aStatus) override;
|
2014-07-23 06:08:01 +04:00
|
|
|
|
2014-11-26 07:52:49 +03:00
|
|
|
virtual nscoord
|
2015-03-21 19:28:04 +03:00
|
|
|
GetLogicalBaseline(mozilla::WritingMode aWritingMode) const override;
|
2014-11-26 07:52:49 +03:00
|
|
|
|
2014-07-23 06:08:01 +04:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const override;
|
2014-07-23 06:08:01 +04:00
|
|
|
#endif
|
|
|
|
|
2016-10-26 09:40:58 +03:00
|
|
|
void UpdateDescendantLeadings(const mozilla::RubyBlockLeadings& aLeadings) {
|
|
|
|
mDescendantLeadings.Update(aLeadings);
|
|
|
|
}
|
|
|
|
mozilla::RubyBlockLeadings GetDescendantLeadings() const {
|
|
|
|
return mDescendantLeadings;
|
|
|
|
}
|
|
|
|
|
2014-07-23 06:08:01 +04:00
|
|
|
protected:
|
|
|
|
friend nsContainerFrame*
|
|
|
|
NS_NewRubyBaseContainerFrame(nsIPresShell* aPresShell,
|
2018-03-22 22:04:20 +03:00
|
|
|
nsStyleContext* aContext);
|
2017-04-30 18:30:08 +03:00
|
|
|
|
2018-03-22 22:04:20 +03:00
|
|
|
explicit nsRubyBaseContainerFrame(nsStyleContext* aContext)
|
|
|
|
: nsContainerFrame(aContext, kClassID)
|
2017-04-30 18:30:08 +03:00
|
|
|
{}
|
2014-11-26 07:52:48 +03:00
|
|
|
|
2016-07-21 13:36:38 +03:00
|
|
|
struct RubyReflowInput;
|
2016-07-21 13:36:39 +03:00
|
|
|
nscoord ReflowColumns(const RubyReflowInput& aReflowInput,
|
2014-11-26 07:52:50 +03:00
|
|
|
nsReflowStatus& aStatus);
|
2016-07-21 13:36:39 +03:00
|
|
|
nscoord ReflowOneColumn(const RubyReflowInput& aReflowInput,
|
2014-12-30 02:05:54 +03:00
|
|
|
uint32_t aColumnIndex,
|
2014-12-29 07:22:19 +03:00
|
|
|
const mozilla::RubyColumn& aColumn,
|
2014-12-29 06:30:00 +03:00
|
|
|
nsReflowStatus& aStatus);
|
2016-07-21 13:36:39 +03:00
|
|
|
nscoord ReflowSpans(const RubyReflowInput& aReflowInput);
|
2014-11-26 07:52:50 +03:00
|
|
|
|
2014-11-26 07:52:50 +03:00
|
|
|
struct PullFrameState;
|
|
|
|
|
|
|
|
// Pull ruby base and corresponding ruby text frames from
|
|
|
|
// continuations after them.
|
2014-12-29 06:30:00 +03:00
|
|
|
void PullOneColumn(nsLineLayout* aLineLayout,
|
|
|
|
PullFrameState& aPullFrameState,
|
2014-12-29 07:22:19 +03:00
|
|
|
mozilla::RubyColumn& aColumn,
|
2014-12-29 06:30:00 +03:00
|
|
|
bool& aIsComplete);
|
2014-11-26 07:52:50 +03:00
|
|
|
|
2014-11-26 07:52:49 +03:00
|
|
|
nscoord mBaseline;
|
2016-10-26 09:40:58 +03:00
|
|
|
|
|
|
|
// Leading produced by descendant ruby annotations.
|
|
|
|
mozilla::RubyBlockLeadings mDescendantLeadings;
|
2014-07-23 06:08:01 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsRubyBaseContainerFrame_h___ */
|