gecko-dev/layout/style/nsICSSStyleRule.h

189 строки
6.6 KiB
C
Исходник Обычный вид История

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
1998-04-14 00:24:54 +04:00
*
* The contents of this file are subject to the Netscape 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/NPL/
1998-04-14 00:24:54 +04:00
*
* 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.
1998-04-14 00:24:54 +04:00
*
* 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) 1998
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Daniel Glazman <glazman@netscape.com>
*
*
* Alternatively, the contents of this file may be used under the terms of
* either 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 NPL, 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 NPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
1998-04-14 00:24:54 +04:00
#ifndef nsICSSStyleRule_h___
#define nsICSSStyleRule_h___
//#include <stdio.h>
#include "nsICSSRule.h"
1998-12-11 05:50:01 +03:00
#include "nsString.h"
#include "nsCOMPtr.h"
#include "nsCSSProps.h"
#include "nsCSSValue.h"
#include "nsIAtom.h"
1998-12-11 05:50:01 +03:00
1998-04-14 00:24:54 +04:00
class nsIAtom;
class nsIArena;
class nsCSSDeclaration;
1998-11-26 04:34:53 +03:00
class nsICSSStyleSheet;
1998-04-14 00:24:54 +04:00
1998-12-11 05:50:01 +03:00
struct nsAtomList {
public:
nsAtomList(nsIAtom* aAtom);
nsAtomList(const nsString& aAtomValue);
nsAtomList(const nsAtomList& aCopy);
~nsAtomList(void);
PRBool Equals(const nsAtomList* aOther) const;
nsCOMPtr<nsIAtom> mAtom;
nsAtomList* mNext;
};
struct nsAtomStringList {
public:
nsAtomStringList(nsIAtom* aAtom, const PRUnichar *aString = nsnull);
nsAtomStringList(const nsString& aAtomValue, const PRUnichar *aString = nsnull);
nsAtomStringList(const nsAtomStringList& aCopy);
~nsAtomStringList(void);
PRBool Equals(const nsAtomStringList* aOther) const;
nsCOMPtr<nsIAtom> mAtom;
PRUnichar* mString;
nsAtomStringList* mNext;
1998-12-11 05:50:01 +03:00
};
1998-12-20 04:19:22 +03:00
#define NS_ATTR_FUNC_SET 0 // [attr]
#define NS_ATTR_FUNC_EQUALS 1 // [attr=value]
#define NS_ATTR_FUNC_INCLUDES 2 // [attr~=value] (space separated)
#define NS_ATTR_FUNC_DASHMATCH 3 // [attr|=value] ('-' truncated)
#define NS_ATTR_FUNC_BEGINSMATCH 4 // [attr^=value] (begins with)
#define NS_ATTR_FUNC_ENDSMATCH 5 // [attr$=value] (ends with)
#define NS_ATTR_FUNC_CONTAINSMATCH 6 // [attr*=value] (contains substring)
1998-12-11 05:50:01 +03:00
struct nsAttrSelector {
public:
nsAttrSelector(PRInt32 aNameSpace, const nsString& aAttr);
nsAttrSelector(PRInt32 aNameSpace, const nsString& aAttr, PRUint8 aFunction,
const nsString& aValue, PRBool aCaseSensitive);
1998-12-11 05:50:01 +03:00
nsAttrSelector(const nsAttrSelector& aCopy);
~nsAttrSelector(void);
PRBool Equals(const nsAttrSelector* aOther) const;
PRInt32 mNameSpace;
1998-12-11 05:50:01 +03:00
nsIAtom* mAttr;
PRUint8 mFunction;
1998-12-21 08:58:58 +03:00
PRPackedBool mCaseSensitive;
1998-12-11 05:50:01 +03:00
nsString mValue;
nsAttrSelector* mNext;
};
// Right now, there are three operators:
// PRUnichar(0), the descendent combinator, is greedy
// '+' and '>', the adjacent sibling and child combinators, are not
#define NS_IS_GREEDY_OPERATOR(ch) ( ch == PRUnichar(0) )
1998-04-14 00:24:54 +04:00
struct nsCSSSelector {
public:
1998-12-11 05:50:01 +03:00
nsCSSSelector(void);
1998-04-14 00:24:54 +04:00
nsCSSSelector(const nsCSSSelector& aCopy);
1998-12-11 05:50:01 +03:00
~nsCSSSelector(void);
1998-04-14 00:24:54 +04:00
nsCSSSelector& operator=(const nsCSSSelector& aCopy);
PRBool Equals(const nsCSSSelector* aOther) const;
1998-12-11 05:50:01 +03:00
void Reset(void);
void SetNameSpace(PRInt32 aNameSpace);
void SetTag(const nsString& aTag);
void AddID(const nsString& aID);
1998-12-11 05:50:01 +03:00
void AddClass(const nsString& aClass);
void AddPseudoClass(const nsString& aPseudoClass, const PRUnichar* aString = nsnull);
void AddPseudoClass(nsIAtom* aPseudoClass, const PRUnichar* aString = nsnull);
void AddAttribute(PRInt32 aNameSpace, const nsString& aAttr);
void AddAttribute(PRInt32 aNameSpace, const nsString& aAttr, PRUint8 aFunc,
const nsString& aValue, PRBool aCaseSensitive);
1998-12-11 05:50:01 +03:00
void SetOperator(PRUnichar aOperator);
1998-04-14 00:24:54 +04:00
1998-12-11 05:50:01 +03:00
PRInt32 CalcWeight(void) const;
nsresult ToString( nsAString& aString, nsICSSStyleSheet* aSheet,
PRBool aIsPseudoElem, PRInt8 aNegatedIndex ) const;
private:
void AppendNegationToString(nsAString& aString);
1998-04-14 00:24:54 +04:00
public:
1998-12-11 05:50:01 +03:00
PRInt32 mNameSpace;
nsCOMPtr<nsIAtom> mTag;
nsAtomList* mIDList;
1998-12-11 05:50:01 +03:00
nsAtomList* mClassList;
nsAtomStringList* mPseudoClassList; // atom for the pseudo, string for
// the argument to functional pseudos
1998-12-11 05:50:01 +03:00
nsAttrSelector* mAttrList;
PRUnichar mOperator;
nsCSSSelector* mNegations;
1998-04-14 00:24:54 +04:00
nsCSSSelector* mNext;
};
1998-04-14 00:24:54 +04:00
// IID for the nsICSSStyleRule interface {7c277af0-af19-11d1-8031-006008159b5a}
#define NS_ICSS_STYLE_RULE_IID \
{0x7c277af0, 0xaf19, 0x11d1, {0x80, 0x31, 0x00, 0x60, 0x08, 0x15, 0x9b, 0x5a}}
class nsICSSStyleRule : public nsICSSRule {
1998-04-14 00:24:54 +04:00
public:
NS_DEFINE_STATIC_IID_ACCESSOR(NS_ICSS_STYLE_RULE_IID)
1998-04-14 00:24:54 +04:00
virtual nsCSSSelector* FirstSelector(void) = 0;
virtual void AddSelector(const nsCSSSelector& aSelector) = 0;
virtual void DeleteSelector(nsCSSSelector* aSelector) = 0;
1998-12-11 05:50:01 +03:00
virtual void SetSourceSelectorText(const nsString& aSelectorText) = 0;
virtual void GetSourceSelectorText(nsString& aSelectorText) const = 0;
1998-04-14 00:24:54 +04:00
virtual PRUint32 GetLineNumber(void) const = 0;
virtual void SetLineNumber(PRUint32 aLineNumber) = 0;
virtual nsCSSDeclaration* GetDeclaration(void) const = 0;
virtual void SetDeclaration(nsCSSDeclaration* aDeclaration) = 0;
1998-04-14 00:24:54 +04:00
virtual PRInt32 GetWeight(void) const = 0;
virtual void SetWeight(PRInt32 aWeight) = 0;
1998-09-11 06:07:46 +04:00
virtual already_AddRefed<nsIStyleRule> GetImportantRule(void) = 0;
// Hook for inspector.
2002-01-16 05:04:20 +03:00
virtual nsresult GetValue(nsCSSProperty aProperty, nsCSSValue& aValue) = 0;
1998-04-14 00:24:54 +04:00
};
nsresult
NS_NewCSSStyleRule(nsICSSStyleRule** aInstancePtrResult,
const nsCSSSelector& aSelector);
1998-04-14 00:24:54 +04:00
#endif /* nsICSSStyleRule_h___ */