2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
// vim:cindent:ts=2:et:sw=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.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1999
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* L. David Baron <dbaron@dbaron.org>
|
|
|
|
* Boris Zbarsky <bzbarsky@mit.edu>
|
|
|
|
*
|
|
|
|
* 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 ***** */
|
|
|
|
|
|
|
|
/* rules in a CSS stylesheet other than style rules (e.g., @import rules) */
|
|
|
|
|
|
|
|
#ifndef nsCSSRules_h_
|
|
|
|
#define nsCSSRules_h_
|
|
|
|
|
|
|
|
#include "nsCSSRule.h"
|
2010-08-07 22:28:33 -07:00
|
|
|
#include "mozilla/css/GroupRule.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIDOMCSSMediaRule.h"
|
|
|
|
#include "nsIDOMCSSMozDocumentRule.h"
|
2008-08-07 16:15:40 -07:00
|
|
|
#include "nsIDOMCSSFontFaceRule.h"
|
|
|
|
#include "nsIDOMCSSStyleDeclaration.h"
|
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
#include "nsCSSProperty.h"
|
|
|
|
#include "nsCSSValue.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
class nsMediaList;
|
|
|
|
|
2010-08-07 22:28:33 -07:00
|
|
|
class NS_FINAL_CLASS nsCSSMediaRule : public mozilla::css::GroupRule,
|
2010-09-18 12:15:31 -07:00
|
|
|
public nsIDOMCSSMediaRule
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsCSSMediaRule();
|
|
|
|
nsCSSMediaRule(const nsCSSMediaRule& aCopy);
|
|
|
|
virtual ~nsCSSMediaRule();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
// nsIStyleRule methods
|
|
|
|
#ifdef DEBUG
|
2010-05-19 19:28:00 -07:00
|
|
|
virtual void List(FILE* out = stdout, PRInt32 aIndent = 0) const;
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// nsICSSRule methods
|
2010-08-07 22:28:33 -07:00
|
|
|
virtual void SetStyleSheet(nsCSSStyleSheet* aSheet); //override GroupRule
|
2010-07-18 07:39:20 -07:00
|
|
|
virtual PRInt32 GetType() const;
|
2010-08-15 08:19:34 -07:00
|
|
|
virtual already_AddRefed<nsICSSRule> Clone() const;
|
2008-10-22 07:31:14 -07:00
|
|
|
nsIDOMCSSRule* GetDOMRuleWeak(nsresult *aResult)
|
|
|
|
{
|
|
|
|
*aResult = NS_OK;
|
|
|
|
return this;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// nsIDOMCSSRule interface
|
|
|
|
NS_DECL_NSIDOMCSSRULE
|
|
|
|
|
|
|
|
// nsIDOMCSSMediaRule interface
|
|
|
|
NS_DECL_NSIDOMCSSMEDIARULE
|
|
|
|
|
2010-08-07 22:28:33 -07:00
|
|
|
// rest of GroupRule
|
2008-07-26 09:14:48 -07:00
|
|
|
NS_IMETHOD_(PRBool) UseForPresentation(nsPresContext* aPresContext,
|
|
|
|
nsMediaQueryResultCacheKey& aKey);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// @media rule methods
|
|
|
|
nsresult SetMedia(nsMediaList* aMedia);
|
|
|
|
|
|
|
|
protected:
|
2008-08-07 16:15:40 -07:00
|
|
|
nsRefPtr<nsMediaList> mMedia;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
2010-08-07 22:28:33 -07:00
|
|
|
class NS_FINAL_CLASS nsCSSDocumentRule : public mozilla::css::GroupRule,
|
2010-09-18 12:15:31 -07:00
|
|
|
public nsIDOMCSSMozDocumentRule
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsCSSDocumentRule(void);
|
|
|
|
nsCSSDocumentRule(const nsCSSDocumentRule& aCopy);
|
|
|
|
virtual ~nsCSSDocumentRule(void);
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
// nsIStyleRule methods
|
|
|
|
#ifdef DEBUG
|
2010-05-19 19:28:00 -07:00
|
|
|
virtual void List(FILE* out = stdout, PRInt32 aIndent = 0) const;
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// nsICSSRule methods
|
2010-07-18 07:39:20 -07:00
|
|
|
virtual PRInt32 GetType() const;
|
2010-08-15 08:19:34 -07:00
|
|
|
virtual already_AddRefed<nsICSSRule> Clone() const;
|
2008-10-22 07:31:14 -07:00
|
|
|
nsIDOMCSSRule* GetDOMRuleWeak(nsresult *aResult)
|
|
|
|
{
|
|
|
|
*aResult = NS_OK;
|
|
|
|
return this;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// nsIDOMCSSRule interface
|
|
|
|
NS_DECL_NSIDOMCSSRULE
|
|
|
|
|
|
|
|
// nsIDOMCSSMozDocumentRule interface
|
|
|
|
NS_DECL_NSIDOMCSSMOZDOCUMENTRULE
|
|
|
|
|
2010-08-07 22:28:33 -07:00
|
|
|
// rest of GroupRule
|
2008-07-26 09:14:48 -07:00
|
|
|
NS_IMETHOD_(PRBool) UseForPresentation(nsPresContext* aPresContext,
|
|
|
|
nsMediaQueryResultCacheKey& aKey);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
enum Function {
|
|
|
|
eURL,
|
|
|
|
eURLPrefix,
|
|
|
|
eDomain
|
|
|
|
};
|
|
|
|
|
|
|
|
struct URL {
|
|
|
|
Function func;
|
|
|
|
nsCString url;
|
|
|
|
URL *next;
|
|
|
|
|
|
|
|
URL() : next(nsnull) {}
|
|
|
|
URL(const URL& aOther)
|
|
|
|
: func(aOther.func)
|
|
|
|
, url(aOther.url)
|
|
|
|
, next(aOther.next ? new URL(*aOther.next) : nsnull)
|
|
|
|
{
|
|
|
|
}
|
2009-01-16 15:33:57 -08:00
|
|
|
~URL();
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
void SetURLs(URL *aURLs) { mURLs = aURLs; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
nsAutoPtr<URL> mURLs; // linked list of |struct URL| above.
|
|
|
|
};
|
|
|
|
|
2008-08-07 16:15:40 -07:00
|
|
|
// A nsCSSFontFaceStyleDecl is always embedded in a nsCSSFontFaceRule.
|
|
|
|
class nsCSSFontFaceRule;
|
|
|
|
class nsCSSFontFaceStyleDecl : public nsIDOMCSSStyleDeclaration
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIDOMCSSSTYLEDECLARATION
|
|
|
|
|
|
|
|
nsresult GetPropertyValue(nsCSSFontDesc aFontDescID,
|
|
|
|
nsAString & aResult NS_OUTPARAM) const;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
friend class nsCSSFontFaceRule;
|
|
|
|
nsCSSValue mFamily;
|
|
|
|
nsCSSValue mStyle;
|
|
|
|
nsCSSValue mWeight;
|
|
|
|
nsCSSValue mStretch;
|
|
|
|
nsCSSValue mSrc;
|
|
|
|
nsCSSValue mUnicodeRange;
|
2010-07-13 13:30:42 -07:00
|
|
|
nsCSSValue mFontFeatureSettings;
|
|
|
|
nsCSSValue mFontLanguageOverride;
|
2008-08-07 16:15:40 -07:00
|
|
|
|
|
|
|
static nsCSSValue nsCSSFontFaceStyleDecl::* const Fields[];
|
|
|
|
inline nsCSSFontFaceRule* ContainingRule();
|
|
|
|
inline const nsCSSFontFaceRule* ContainingRule() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
// NOT TO BE IMPLEMENTED
|
|
|
|
// This object cannot be allocated on its own, only as part of
|
|
|
|
// nsCSSFontFaceRule.
|
|
|
|
void* operator new(size_t size) CPP_THROW_NEW;
|
|
|
|
};
|
|
|
|
|
2010-09-18 12:15:31 -07:00
|
|
|
class NS_FINAL_CLASS nsCSSFontFaceRule : public nsCSSRule,
|
|
|
|
public nsICSSRule,
|
|
|
|
public nsIDOMCSSFontFaceRule
|
2008-08-07 16:15:40 -07:00
|
|
|
{
|
|
|
|
public:
|
2010-10-06 21:25:47 -07:00
|
|
|
nsCSSFontFaceRule() {}
|
|
|
|
|
|
|
|
nsCSSFontFaceRule(const nsCSSFontFaceRule& aCopy)
|
|
|
|
// copy everything except our reference count
|
|
|
|
: nsCSSRule(aCopy), mDecl(aCopy.mDecl) {}
|
|
|
|
|
2010-09-18 11:43:17 -07:00
|
|
|
NS_DECL_ISUPPORTS
|
2008-08-07 16:15:40 -07:00
|
|
|
|
|
|
|
// nsIStyleRule methods
|
|
|
|
#ifdef DEBUG
|
2010-05-19 19:28:00 -07:00
|
|
|
virtual void List(FILE* out = stdout, PRInt32 aIndent = 0) const;
|
2008-08-07 16:15:40 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// nsICSSRule methods
|
|
|
|
DECL_STYLE_RULE_INHERIT
|
|
|
|
|
2010-07-18 07:39:20 -07:00
|
|
|
virtual PRInt32 GetType() const;
|
2010-08-15 08:19:34 -07:00
|
|
|
virtual already_AddRefed<nsICSSRule> Clone() const;
|
2008-08-07 16:15:40 -07:00
|
|
|
|
|
|
|
// nsIDOMCSSRule interface
|
|
|
|
NS_DECL_NSIDOMCSSRULE
|
|
|
|
|
|
|
|
// nsIDOMCSSFontFaceRule interface
|
|
|
|
NS_DECL_NSIDOMCSSFONTFACERULE
|
|
|
|
|
|
|
|
void SetDesc(nsCSSFontDesc aDescID, nsCSSValue const & aValue);
|
|
|
|
void GetDesc(nsCSSFontDesc aDescID, nsCSSValue & aValue);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
friend class nsCSSFontFaceStyleDecl;
|
|
|
|
nsCSSFontFaceStyleDecl mDecl;
|
|
|
|
};
|
|
|
|
|
2008-11-26 19:50:16 -08:00
|
|
|
// nsFontFaceRuleContainer - used for associating sheet type with
|
|
|
|
// specific @font-face rules
|
|
|
|
struct nsFontFaceRuleContainer {
|
|
|
|
nsRefPtr<nsCSSFontFaceRule> mRule;
|
|
|
|
PRUint8 mSheetType;
|
|
|
|
};
|
|
|
|
|
2008-08-07 16:15:40 -07:00
|
|
|
inline nsCSSFontFaceRule*
|
|
|
|
nsCSSFontFaceStyleDecl::ContainingRule()
|
|
|
|
{
|
|
|
|
return reinterpret_cast<nsCSSFontFaceRule*>
|
|
|
|
(reinterpret_cast<char*>(this) - offsetof(nsCSSFontFaceRule, mDecl));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline const nsCSSFontFaceRule*
|
|
|
|
nsCSSFontFaceStyleDecl::ContainingRule() const
|
|
|
|
{
|
|
|
|
return reinterpret_cast<const nsCSSFontFaceRule*>
|
|
|
|
(reinterpret_cast<const char*>(this) - offsetof(nsCSSFontFaceRule, mDecl));
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#endif /* !defined(nsCSSRules_h_) */
|