2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is the Mozilla SVG project.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Crocodile Clips Ltd..
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2002
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Alex Fritze <alex.fritze@crocodile-clips.com> (original author)
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#ifndef __NS_ISVGCHILDFRAME_H__
|
|
|
|
#define __NS_ISVGCHILDFRAME_H__
|
|
|
|
|
|
|
|
|
2009-01-12 11:20:59 -08:00
|
|
|
#include "nsQueryFrame.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsCOMPtr.h"
|
2008-08-25 02:23:54 -07:00
|
|
|
#include "nsRect.h"
|
2009-04-28 21:31:34 -07:00
|
|
|
#include "gfxRect.h"
|
|
|
|
#include "gfxMatrix.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
class gfxContext;
|
2012-03-02 00:28:59 -08:00
|
|
|
class nsRenderingContext;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-12-03 08:40:23 -08:00
|
|
|
namespace mozilla {
|
|
|
|
class SVGAnimatedNumberList;
|
|
|
|
class SVGNumberList;
|
|
|
|
class SVGAnimatedLengthList;
|
|
|
|
class SVGLengthList;
|
|
|
|
class SVGUserUnitList;
|
|
|
|
}
|
|
|
|
|
2012-03-10 11:28:24 -08:00
|
|
|
/**
|
|
|
|
* This class is not particularly well named. It is inherited by some, but
|
|
|
|
* not all SVG frame classes that can be descendants of an
|
|
|
|
* nsSVGOuterSVGFrame in the frame tree. Note specifically that SVG container
|
|
|
|
* frames that do not inherit nsSVGDisplayContainerFrame do not inherit this
|
|
|
|
* class (so that's classes that only inherit nsSVGContainerFrame).
|
|
|
|
*/
|
2009-01-12 11:20:59 -08:00
|
|
|
class nsISVGChildFrame : public nsQueryFrame
|
|
|
|
{
|
2007-03-22 10:30:00 -07:00
|
|
|
public:
|
2010-12-03 08:40:23 -08:00
|
|
|
typedef mozilla::SVGAnimatedNumberList SVGAnimatedNumberList;
|
|
|
|
typedef mozilla::SVGNumberList SVGNumberList;
|
|
|
|
typedef mozilla::SVGAnimatedLengthList SVGAnimatedLengthList;
|
|
|
|
typedef mozilla::SVGLengthList SVGLengthList;
|
|
|
|
typedef mozilla::SVGUserUnitList SVGUserUnitList;
|
|
|
|
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_DECL_QUERYFRAME_TARGET(nsISVGChildFrame)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Paint this frame - aDirtyRect is the area being redrawn, in frame
|
|
|
|
// offset pixel coordinates
|
2012-03-02 00:28:59 -08:00
|
|
|
NS_IMETHOD PaintSVG(nsRenderingContext* aContext,
|
2008-10-20 01:42:03 -07:00
|
|
|
const nsIntRect *aDirtyRect)=0;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Check if this frame or children contain the given point,
|
2008-08-25 02:23:54 -07:00
|
|
|
// specified in app units relative to the origin of the outer
|
2007-03-22 10:30:00 -07:00
|
|
|
// svg frame (origin ill-defined in the case of borders - bug
|
2008-08-25 02:23:54 -07:00
|
|
|
// 290770). See bug 290852 for foreignObject complications.
|
|
|
|
NS_IMETHOD_(nsIFrame*) GetFrameForPoint(const nsPoint &aPoint)=0;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-08-25 02:23:54 -07:00
|
|
|
// Get bounds in our gfxContext's coordinates space (in app units)
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHOD_(nsRect) GetCoveredRegion()=0;
|
|
|
|
NS_IMETHOD UpdateCoveredRegion()=0;
|
2007-10-19 04:07:08 -07:00
|
|
|
|
2007-12-20 06:26:34 -08:00
|
|
|
// Called once on SVG child frames except descendants of <defs>, either
|
|
|
|
// when their nsSVGOuterSVGFrame receives its initial reflow (i.e. once
|
|
|
|
// the SVG viewport dimensions are known), or else when they're inserted
|
|
|
|
// into the frame tree (if they're inserted after the initial reflow).
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHOD InitialUpdate()=0;
|
2007-10-19 04:07:08 -07:00
|
|
|
|
2008-01-25 01:27:03 -08:00
|
|
|
// Flags to pass to NotifySVGChange:
|
|
|
|
//
|
2012-03-11 08:53:36 -07:00
|
|
|
// DO_NOT_NOTIFY_RENDERING_OBSERVERS - this should only be used when
|
|
|
|
// updating the descendant frames of a clipPath,
|
|
|
|
// mask, pattern or marker frame (or other similar
|
|
|
|
// NS_STATE_SVG_NONDISPLAY_CHILD frame) immediately
|
|
|
|
// prior to painting that frame's descendants.
|
2008-01-25 01:27:03 -08:00
|
|
|
// TRANSFORM_CHANGED - the current transform matrix for this frame has changed
|
|
|
|
// COORD_CONTEXT_CHANGED - the dimensions of this frame's coordinate context has
|
|
|
|
// changed (percentage lengths must be reevaluated)
|
|
|
|
enum SVGChangedFlags {
|
2012-03-11 08:53:36 -07:00
|
|
|
DO_NOT_NOTIFY_RENDERING_OBSERVERS = 0x01,
|
2008-01-25 01:27:03 -08:00
|
|
|
TRANSFORM_CHANGED = 0x02,
|
|
|
|
COORD_CONTEXT_CHANGED = 0x04
|
|
|
|
};
|
|
|
|
virtual void NotifySVGChanged(PRUint32 aFlags)=0;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-04-28 21:31:34 -07:00
|
|
|
/**
|
|
|
|
* Get this frame's contribution to the rect returned by a GetBBox() call
|
2010-05-13 05:19:50 -07:00
|
|
|
* that occurred either on this element, or on one of its ancestors.
|
2009-04-28 21:31:34 -07:00
|
|
|
*
|
|
|
|
* SVG defines an element's bbox to be the element's fill bounds in the
|
|
|
|
* userspace established by that element. By allowing callers to pass in the
|
|
|
|
* transform from the userspace established by this element to the userspace
|
|
|
|
* established by an an ancestor, this method allows callers to obtain this
|
|
|
|
* element's fill bounds in the userspace established by that ancestor
|
|
|
|
* instead. In that case, since we return the bounds in a different userspace
|
|
|
|
* (the ancestor's), the bounds we return are not this element's bbox, but
|
|
|
|
* rather this element's contribution to the bbox of the ancestor.
|
|
|
|
*
|
|
|
|
* @param aToBBoxUserspace The transform from the userspace established by
|
|
|
|
* this element to the userspace established by the ancestor on which
|
|
|
|
* getBBox was called. This will be the identity matrix if we are the
|
|
|
|
* element on which getBBox was called.
|
2011-09-30 02:25:37 -07:00
|
|
|
*
|
|
|
|
* @param aFlags Flags indicating whether, stroke, for example, should be
|
|
|
|
* included in the bbox calculation.
|
2009-04-28 21:31:34 -07:00
|
|
|
*/
|
2011-09-30 02:25:37 -07:00
|
|
|
virtual gfxRect GetBBoxContribution(const gfxMatrix &aToBBoxUserspace,
|
|
|
|
PRUint32 aFlags) = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Are we a container frame?
|
2011-09-28 23:19:26 -07:00
|
|
|
NS_IMETHOD_(bool) IsDisplayContainer()=0;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Does this frame have an current covered region in mRect (aka GetRect())?
|
2011-09-28 23:19:26 -07:00
|
|
|
NS_IMETHOD_(bool) HasValidCoveredRect()=0;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __NS_ISVGCHILDFRAME_H__
|
|
|
|
|