2007-06-11 23:10:23 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef nsMathMLmmultiscriptsFrame_h___
|
|
|
|
#define nsMathMLmmultiscriptsFrame_h___
|
|
|
|
|
2013-05-14 09:33:23 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsMathMLContainerFrame.h"
|
|
|
|
|
|
|
|
//
|
|
|
|
// <mmultiscripts> -- attach prescripts and tensor indices to a base
|
2013-08-19 06:09:34 -07:00
|
|
|
// <msub> -- attach a subscript to a base
|
|
|
|
// <msubsup> -- attach a subscript-superscript pair to a base
|
|
|
|
// <msup> -- attach a superscript to a base
|
2007-03-22 10:30:00 -07:00
|
|
|
//
|
|
|
|
|
|
|
|
class nsMathMLmmultiscriptsFrame : public nsMathMLContainerFrame {
|
|
|
|
public:
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
friend nsIFrame* NS_NewMathMLmmultiscriptsFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
|
|
|
|
|
|
|
NS_IMETHOD
|
2013-05-14 09:33:23 -07:00
|
|
|
TransmitAutomaticData() MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-03-17 21:52:48 -07:00
|
|
|
virtual nsresult
|
2011-04-07 18:04:40 -07:00
|
|
|
Place(nsRenderingContext& aRenderingContext,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aPlaceOrigin,
|
2013-05-14 09:33:23 -07:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-08-19 06:09:34 -07:00
|
|
|
static nsresult
|
|
|
|
PlaceMultiScript(nsPresContext* aPresContext,
|
|
|
|
nsRenderingContext& aRenderingContext,
|
|
|
|
bool aPlaceOrigin,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
nsMathMLContainerFrame* aForFrame,
|
|
|
|
nscoord aUserSubScriptShift,
|
|
|
|
nscoord aUserSupScriptShift,
|
|
|
|
nscoord aScriptSpace);
|
|
|
|
|
2014-01-15 06:49:00 -08:00
|
|
|
uint8_t
|
|
|
|
ScriptIncrement(nsIFrame* aFrame) MOZ_OVERRIDE;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
protected:
|
|
|
|
nsMathMLmmultiscriptsFrame(nsStyleContext* aContext) : nsMathMLContainerFrame(aContext) {}
|
|
|
|
virtual ~nsMathMLmmultiscriptsFrame();
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsMathMLmmultiscriptsFrame_h___ */
|