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 Mozilla Communicator client code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* 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 ***** */
|
|
|
|
|
|
|
|
/* base class for DOM objects for element.style and cssStyleRule.style */
|
|
|
|
|
|
|
|
#ifndef nsDOMCSSDeclaration_h___
|
|
|
|
#define nsDOMCSSDeclaration_h___
|
|
|
|
|
|
|
|
#include "nsICSSDeclaration.h"
|
2010-08-05 22:32:01 -07:00
|
|
|
#include "nsIDOMCSS2Properties.h"
|
2009-09-18 06:09:55 -07:00
|
|
|
#include "nsCOMPtr.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-03-02 12:59:32 -08:00
|
|
|
class nsCSSParser;
|
2007-03-22 10:30:00 -07:00
|
|
|
class nsIURI;
|
2007-05-02 18:15:53 -07:00
|
|
|
class nsIPrincipal;
|
2009-12-11 08:13:19 -08:00
|
|
|
class nsIDocument;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-03-02 13:00:53 -08:00
|
|
|
namespace mozilla {
|
|
|
|
namespace css {
|
2010-06-28 15:49:35 -07:00
|
|
|
class Declaration;
|
2010-03-02 13:00:53 -08:00
|
|
|
class Loader;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-14 13:58:56 -07:00
|
|
|
class nsDOMCSSDeclaration : public nsICSSDeclaration,
|
2010-08-05 22:32:01 -07:00
|
|
|
public nsIDOMCSS2Properties
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// Only implement QueryInterface; subclasses have the responsibility
|
|
|
|
// of implementing AddRef/Release.
|
|
|
|
NS_IMETHOD QueryInterface(REFNSIID aIID, void** aInstancePtr);
|
|
|
|
|
|
|
|
NS_DECL_NSICSSDECLARATION
|
|
|
|
|
|
|
|
// Require subclasses to implement |GetParentRule|.
|
|
|
|
//NS_DECL_NSIDOMCSSSTYLEDECLARATION
|
|
|
|
NS_IMETHOD GetCssText(nsAString & aCssText);
|
|
|
|
NS_IMETHOD SetCssText(const nsAString & aCssText);
|
|
|
|
NS_IMETHOD GetPropertyValue(const nsAString & propertyName,
|
|
|
|
nsAString & _retval);
|
|
|
|
NS_IMETHOD GetPropertyCSSValue(const nsAString & propertyName,
|
|
|
|
nsIDOMCSSValue **_retval);
|
|
|
|
NS_IMETHOD RemoveProperty(const nsAString & propertyName,
|
|
|
|
nsAString & _retval);
|
|
|
|
NS_IMETHOD GetPropertyPriority(const nsAString & propertyName,
|
|
|
|
nsAString & _retval);
|
|
|
|
NS_IMETHOD SetProperty(const nsAString & propertyName,
|
|
|
|
const nsAString & value, const nsAString & priority);
|
|
|
|
NS_IMETHOD GetLength(PRUint32 *aLength);
|
|
|
|
NS_IMETHOD Item(PRUint32 index, nsAString & _retval);
|
2010-03-02 12:59:32 -08:00
|
|
|
NS_IMETHOD GetParentRule(nsIDOMCSSRule * *aParentRule) = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-08-05 22:32:01 -07:00
|
|
|
// We implement this as a shim which forwards to GetPropertyValue
|
2010-07-14 13:58:56 -07:00
|
|
|
// and SetPropertyValue; subclasses need not.
|
|
|
|
NS_DECL_NSIDOMCSS2PROPERTIES
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
protected:
|
2010-07-23 11:00:34 -07:00
|
|
|
// This method can return null regardless of the value of aAllocate;
|
|
|
|
// however, a null return should only be considered a failure
|
|
|
|
// if aAllocate is true.
|
|
|
|
virtual mozilla::css::Declaration* GetCSSDeclaration(PRBool aAllocate) = 0;
|
2010-07-23 11:00:47 -07:00
|
|
|
virtual nsresult SetCSSDeclaration(mozilla::css::Declaration* aDecl) = 0;
|
2009-12-11 08:13:19 -08:00
|
|
|
// Document that we must call BeginUpdate/EndUpdate on around the
|
2010-07-23 11:00:47 -07:00
|
|
|
// calls to SetCSSDeclaration and the style rule mutation that leads
|
2009-12-11 08:13:19 -08:00
|
|
|
// to it.
|
|
|
|
virtual nsIDocument* DocToUpdate() = 0;
|
2010-03-02 12:59:32 -08:00
|
|
|
|
2007-05-02 18:15:53 -07:00
|
|
|
// This will only fail if it can't get a parser or a principal.
|
|
|
|
// This means it can return NS_OK without aURI or aCSSLoader being
|
|
|
|
// initialized.
|
2007-03-22 10:30:00 -07:00
|
|
|
virtual nsresult GetCSSParsingEnvironment(nsIURI** aSheetURI,
|
|
|
|
nsIURI** aBaseURI,
|
2007-05-02 18:15:53 -07:00
|
|
|
nsIPrincipal** aSheetPrincipal,
|
2010-03-02 13:00:53 -08:00
|
|
|
mozilla::css::Loader** aCSSLoader) = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsresult ParsePropertyValue(const nsCSSProperty aPropID,
|
2010-04-01 23:07:40 -07:00
|
|
|
const nsAString& aPropValue,
|
|
|
|
PRBool aIsImportant);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Prop-id based version of RemoveProperty. Note that this does not
|
|
|
|
// return the old value; it just does a straight removal.
|
|
|
|
nsresult RemoveProperty(const nsCSSProperty aPropID);
|
2010-03-02 12:59:32 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
protected:
|
|
|
|
virtual ~nsDOMCSSDeclaration();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsDOMCSSDeclaration_h___
|