2014-07-23 06:08:01 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code is subject to the terms of the Mozilla Public License
|
|
|
|
* version 2.0 (the "License"). You can obtain a copy of the License at
|
|
|
|
* http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
/* rendering object for CSS "display: ruby-text" */
|
|
|
|
|
|
|
|
#ifndef nsRubyTextFrame_h___
|
|
|
|
#define nsRubyTextFrame_h___
|
|
|
|
|
2015-01-08 10:28:09 +03:00
|
|
|
#include "nsRubyContentFrame.h"
|
2014-11-26 07:52:49 +03:00
|
|
|
|
2014-07-23 06:08:01 +04:00
|
|
|
/**
|
|
|
|
* Factory function.
|
|
|
|
* @return a newly allocated nsRubyTextFrame (infallible)
|
|
|
|
*/
|
|
|
|
nsContainerFrame* NS_NewRubyTextFrame(nsIPresShell* aPresShell,
|
|
|
|
nsStyleContext* aContext);
|
|
|
|
|
2016-04-18 09:15:03 +03:00
|
|
|
class nsRubyTextFrame final : public nsRubyContentFrame
|
2014-07-23 06:08:01 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
NS_DECL_QUERYFRAME_TARGET(nsRubyTextFrame)
|
|
|
|
NS_DECL_QUERYFRAME
|
|
|
|
|
|
|
|
// nsIFrame overrides
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsIAtom* GetType() const override;
|
|
|
|
virtual bool CanContinueTextRun() const 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
|
|
|
|
|
2014-12-15 06:37:15 +03:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
2015-03-21 19:28:04 +03:00
|
|
|
const nsDisplayListSet& aLists) override;
|
2014-12-15 06:37:15 +03: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-12-15 06:37:15 +03:00
|
|
|
|
2015-03-11 02:28:21 +03:00
|
|
|
bool IsAutoHidden() const
|
|
|
|
{
|
|
|
|
return GetStateBits() & NS_RUBY_TEXT_FRAME_AUTOHIDE;
|
|
|
|
}
|
|
|
|
|
2014-07-23 06:08:01 +04:00
|
|
|
protected:
|
|
|
|
friend nsContainerFrame* NS_NewRubyTextFrame(nsIPresShell* aPresShell,
|
|
|
|
nsStyleContext* aContext);
|
2014-11-26 07:52:49 +03:00
|
|
|
explicit nsRubyTextFrame(nsStyleContext* aContext)
|
2016-04-18 09:15:03 +03:00
|
|
|
: nsRubyContentFrame(aContext) {}
|
2014-07-23 06:08:01 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsRubyTextFrame_h___ */
|