2014-07-23 02:08:01 +00: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-base" */
|
|
|
|
|
|
|
|
#ifndef nsRubyBaseFrame_h___
|
|
|
|
#define nsRubyBaseFrame_h___
|
|
|
|
|
2015-01-08 07:28:09 +00:00
|
|
|
#include "nsRubyContentFrame.h"
|
2014-11-26 04:52:49 +00:00
|
|
|
|
2015-01-08 07:28:09 +00:00
|
|
|
typedef nsRubyContentFrame nsRubyBaseFrameSuper;
|
2014-07-23 02:08:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Factory function.
|
|
|
|
* @return a newly allocated nsRubyBaseFrame (infallible)
|
|
|
|
*/
|
|
|
|
nsContainerFrame* NS_NewRubyBaseFrame(nsIPresShell* aPresShell,
|
|
|
|
nsStyleContext* aContext);
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class nsRubyBaseFrame final : public nsRubyBaseFrameSuper
|
2014-07-23 02:08:01 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
NS_DECL_QUERYFRAME_TARGET(nsRubyBaseFrame)
|
|
|
|
NS_DECL_QUERYFRAME
|
|
|
|
|
|
|
|
// nsIFrame overrides
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nsIAtom* GetType() const override;
|
2014-07-23 02:08:01 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const override;
|
2014-07-23 02:08:01 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
protected:
|
|
|
|
friend nsContainerFrame* NS_NewRubyBaseFrame(nsIPresShell* aPresShell,
|
|
|
|
nsStyleContext* aContext);
|
2014-11-26 04:52:49 +00:00
|
|
|
explicit nsRubyBaseFrame(nsStyleContext* aContext)
|
|
|
|
: nsRubyBaseFrameSuper(aContext) {}
|
2014-07-23 02:08:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsRubyBaseFrame_h___ */
|