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" */
|
|
|
|
|
|
|
|
#ifndef nsRubyBaseFrame_h___
|
|
|
|
#define nsRubyBaseFrame_h___
|
|
|
|
|
2015-01-08 10:28:09 +03:00
|
|
|
#include "nsRubyContentFrame.h"
|
2014-11-26 07:52:49 +03:00
|
|
|
|
2019-04-16 10:24:49 +03:00
|
|
|
namespace mozilla {
|
|
|
|
class PresShell;
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2014-07-23 06:08:01 +04:00
|
|
|
/**
|
|
|
|
* Factory function.
|
|
|
|
* @return a newly allocated nsRubyBaseFrame (infallible)
|
|
|
|
*/
|
2019-04-16 10:24:49 +03:00
|
|
|
nsContainerFrame* NS_NewRubyBaseFrame(mozilla::PresShell* aPresShell,
|
2018-03-22 21:20:41 +03:00
|
|
|
mozilla::ComputedStyle* aStyle);
|
2014-07-23 06:08:01 +04:00
|
|
|
|
2016-04-18 09:04:03 +03:00
|
|
|
class nsRubyBaseFrame final : public nsRubyContentFrame {
|
2014-07-23 06:08:01 +04:00
|
|
|
public:
|
2017-05-26 13:11:11 +03:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS(nsRubyBaseFrame)
|
2014-07-23 06:08:01 +04:00
|
|
|
NS_DECL_QUERYFRAME
|
|
|
|
|
|
|
|
#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
|
|
|
|
|
|
|
|
protected:
|
2019-04-16 10:24:49 +03:00
|
|
|
friend nsContainerFrame* NS_NewRubyBaseFrame(mozilla::PresShell* aPresShell,
|
2018-03-22 21:20:41 +03:00
|
|
|
ComputedStyle* aStyle);
|
2019-02-05 19:45:54 +03:00
|
|
|
explicit nsRubyBaseFrame(ComputedStyle* aStyle, nsPresContext* aPresContext)
|
|
|
|
: nsRubyContentFrame(aStyle, aPresContext, kClassID) {}
|
2014-07-23 06:08:01 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsRubyBaseFrame_h___ */
|