Bug 1547759 - Add a flag to allow FinishReflowChild to handle relative positioning...
[gecko.git] / layout / generic / nsRubyFrame.h
blobdf8029c4ee80d8a30fb4ed5e3fea2d4d49d07674
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 /* rendering object for CSS "display: ruby" */
9 #ifndef nsRubyFrame_h___
10 #define nsRubyFrame_h___
12 #include "nsInlineFrame.h"
13 #include "RubyUtils.h"
15 namespace mozilla {
16 class PresShell;
17 } // namespace mozilla
19 /**
20 * Factory function.
21 * @return a newly allocated nsRubyFrame (infallible)
23 nsContainerFrame* NS_NewRubyFrame(mozilla::PresShell* aPresShell,
24 mozilla::ComputedStyle* aStyle);
26 class nsRubyFrame final : public nsInlineFrame {
27 public:
28 NS_DECL_FRAMEARENA_HELPERS(nsRubyFrame)
29 NS_DECL_QUERYFRAME
31 // nsIFrame overrides
32 virtual bool IsFrameOfType(uint32_t aFlags) const override;
33 virtual void AddInlineMinISize(gfxContext* aRenderingContext,
34 InlineMinISizeData* aData) override;
35 virtual void AddInlinePrefISize(gfxContext* aRenderingContext,
36 InlinePrefISizeData* aData) override;
37 virtual void Reflow(nsPresContext* aPresContext, ReflowOutput& aDesiredSize,
38 const ReflowInput& aReflowInput,
39 nsReflowStatus& aStatus) override;
41 #ifdef DEBUG_FRAME_DUMP
42 virtual nsresult GetFrameName(nsAString& aResult) const override;
43 #endif
45 mozilla::RubyBlockLeadings GetBlockLeadings() const { return mLeadings; }
47 protected:
48 friend nsContainerFrame* NS_NewRubyFrame(mozilla::PresShell* aPresShell,
49 ComputedStyle* aStyle);
50 explicit nsRubyFrame(ComputedStyle* aStyle, nsPresContext* aPresContext)
51 : nsInlineFrame(aStyle, aPresContext, kClassID) {}
53 void ReflowSegment(nsPresContext* aPresContext,
54 const ReflowInput& aReflowInput,
55 nsRubyBaseContainerFrame* aBaseContainer,
56 nsReflowStatus& aStatus);
58 nsRubyBaseContainerFrame* PullOneSegment(const nsLineLayout* aLineLayout,
59 ContinuationTraversingState& aState);
61 // The leadings required to put the annotations. They are dummy-
62 // initialized to 0, and get meaningful values at first reflow.
63 mozilla::RubyBlockLeadings mLeadings;
66 #endif /* nsRubyFrame_h___ */