gecko/layout/svg/nsISVGGlyphFragmentNode.h

33 lines
1.0 KiB
C
Raw Normal View History

/* -*- 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/. */
#ifndef __NS_ISVGGLYPHFRAGMENTNODE_H__
#define __NS_ISVGGLYPHFRAGMENTNODE_H__
#include "nsQueryFrame.h"
class nsSVGGlyphFrame;
namespace mozilla {
class nsISVGPoint;
}
class nsISVGGlyphFragmentNode : public nsQueryFrame
{
public:
NS_DECL_QUERYFRAME_TARGET(nsISVGGlyphFragmentNode)
virtual uint32_t GetNumberOfChars()=0;
virtual float GetComputedTextLength()=0;
virtual float GetSubStringLength(uint32_t charnum, uint32_t fragmentChars)=0;
virtual int32_t GetCharNumAtPosition(mozilla::nsISVGPoint *point)=0;
NS_IMETHOD_(nsSVGGlyphFrame *) GetFirstGlyphFrame()=0;
NS_IMETHOD_(nsSVGGlyphFrame *) GetNextGlyphFrame()=0;
NS_IMETHOD_(void) SetWhitespaceCompression(bool aCompressWhitespace)=0;
};
#endif // __NS_ISVGGLYPHFRAGMENTNODE_H__