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" */
|
|
|
|
|
|
|
|
#ifndef nsRubyFrame_h___
|
|
|
|
#define nsRubyFrame_h___
|
|
|
|
|
2015-01-15 12:02:11 +03:00
|
|
|
#include "nsInlineFrame.h"
|
2016-11-10 03:10:42 +03:00
|
|
|
#include "RubyUtils.h"
|
2014-11-26 07:52:50 +03:00
|
|
|
|
2014-07-23 06:08:01 +04:00
|
|
|
/**
|
|
|
|
* Factory function.
|
|
|
|
* @return a newly allocated nsRubyFrame (infallible)
|
|
|
|
*/
|
|
|
|
nsContainerFrame* NS_NewRubyFrame(nsIPresShell* aPresShell,
|
|
|
|
nsStyleContext* aContext);
|
|
|
|
|
2016-04-18 09:11:08 +03:00
|
|
|
class nsRubyFrame final : public nsInlineFrame
|
2014-07-23 06:08:01 +04:00
|
|
|
{
|
|
|
|
public:
|
2017-05-26 13:11:11 +03:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS(nsRubyFrame)
|
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;
|
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-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
|
|
|
|
|
|
|
#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-11-10 03:10:42 +03:00
|
|
|
mozilla::RubyBlockLeadings GetBlockLeadings() const {
|
|
|
|
return mLeadings;
|
2015-12-04 05:08:17 +03:00
|
|
|
}
|
|
|
|
|
2014-07-23 06:08:01 +04:00
|
|
|
protected:
|
|
|
|
friend nsContainerFrame* NS_NewRubyFrame(nsIPresShell* aPresShell,
|
|
|
|
nsStyleContext* aContext);
|
2015-01-15 12:02:11 +03:00
|
|
|
explicit nsRubyFrame(nsStyleContext* aContext)
|
2017-05-26 13:11:11 +03:00
|
|
|
: nsInlineFrame(aContext, kClassID)
|
2017-04-30 18:30:08 +03:00
|
|
|
{}
|
2014-11-26 07:52:50 +03:00
|
|
|
|
|
|
|
void ReflowSegment(nsPresContext* aPresContext,
|
2016-07-21 13:36:39 +03:00
|
|
|
const ReflowInput& aReflowInput,
|
2014-11-26 07:52:50 +03:00
|
|
|
nsRubyBaseContainerFrame* aBaseContainer,
|
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
2016-01-27 08:58:53 +03:00
|
|
|
nsRubyBaseContainerFrame* PullOneSegment(const nsLineLayout* aLineLayout,
|
|
|
|
ContinuationTraversingState& aState);
|
2015-12-04 05:08:17 +03:00
|
|
|
|
2016-11-10 03:10:42 +03:00
|
|
|
// The leadings required to put the annotations. They are dummy-
|
|
|
|
// initialized to 0, and get meaningful values at first reflow.
|
|
|
|
mozilla::RubyBlockLeadings mLeadings;
|
2014-07-23 06:08:01 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsRubyFrame_h___ */
|