michael@0: /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef __NS_ISVGSVGFRAME_H__ michael@0: #define __NS_ISVGSVGFRAME_H__ michael@0: michael@0: #include "nsQueryFrame.h" michael@0: michael@0: class nsISVGSVGFrame michael@0: { michael@0: public: michael@0: NS_DECL_QUERYFRAME_TARGET(nsISVGSVGFrame) michael@0: michael@0: /** michael@0: * Called when non-attribute changes have caused the element's width/height michael@0: * or its for-children transform to change, and to get the element to notify michael@0: * its children appropriately. aFlags must be set to michael@0: * nsISVGChildFrame::COORD_CONTEXT_CHANGED and/or michael@0: * nsISVGChildFrame::TRANSFORM_CHANGED. michael@0: */ michael@0: virtual void NotifyViewportOrTransformChanged(uint32_t aFlags)=0; michael@0: }; michael@0: michael@0: #endif // __NS_ISVGSVGFRAME_H__