2010-05-12 14:11:59 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04: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/. */
|
2010-05-12 14:11:59 +04:00
|
|
|
|
|
|
|
#ifndef nsMathMLsemanticsFrame_h___
|
|
|
|
#define nsMathMLsemanticsFrame_h___
|
|
|
|
|
2013-05-29 23:37:49 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-05-10 16:40:44 +04:00
|
|
|
#include "nsMathMLSelectedFrame.h"
|
2010-05-12 14:11:59 +04:00
|
|
|
|
|
|
|
//
|
|
|
|
// <semantics> -- associate annotations with a MathML expression
|
|
|
|
//
|
|
|
|
|
2013-05-10 16:40:44 +04:00
|
|
|
class nsMathMLsemanticsFrame : public nsMathMLSelectedFrame {
|
2010-05-12 14:11:59 +04:00
|
|
|
public:
|
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
|
|
|
friend nsIFrame* NS_NewMathMLsemanticsFrame(nsIPresShell* aPresShell,
|
|
|
|
nsStyleContext* aContext);
|
|
|
|
|
|
|
|
protected:
|
2014-09-01 07:36:37 +04:00
|
|
|
explicit nsMathMLsemanticsFrame(nsStyleContext* aContext) :
|
2013-05-10 16:40:44 +04:00
|
|
|
nsMathMLSelectedFrame(aContext) {}
|
2010-05-12 14:11:59 +04:00
|
|
|
virtual ~nsMathMLsemanticsFrame();
|
2013-05-10 16:40:44 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
nsIFrame* GetSelectedFrame() override;
|
2010-05-12 14:11:59 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsMathMLsemanticsFrame_h___ */
|