2004-04-13 01:56:09 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 15:12:37 +04:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2006-03-25 08:47:31 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* style sheet and style rule processor representing data from presentational
|
|
|
|
* HTML attributes
|
|
|
|
*/
|
|
|
|
|
2004-04-13 01:56:09 +04:00
|
|
|
#ifndef nsHTMLStyleSheet_h_
|
|
|
|
#define nsHTMLStyleSheet_h_
|
|
|
|
|
2011-12-16 23:42:07 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
|
|
|
|
2004-04-13 01:56:09 +04:00
|
|
|
#include "nsIStyleSheet.h"
|
|
|
|
#include "nsIStyleRuleProcessor.h"
|
|
|
|
#include "nsIStyleRule.h"
|
|
|
|
#include "pldhash.h"
|
|
|
|
#include "nsCOMPtr.h"
|
2009-08-01 19:53:40 +04:00
|
|
|
#include "nsColor.h"
|
2004-04-13 01:56:09 +04:00
|
|
|
class nsMappedAttributes;
|
|
|
|
|
|
|
|
class nsHTMLStyleSheet : public nsIStyleSheet, public nsIStyleRuleProcessor {
|
|
|
|
public:
|
|
|
|
nsHTMLStyleSheet(void);
|
|
|
|
nsresult Init();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
// nsIStyleSheet api
|
2010-05-18 08:00:39 +04:00
|
|
|
virtual nsIURI* GetSheetURI() const;
|
|
|
|
virtual nsIURI* GetBaseURI() const;
|
2010-05-13 00:18:47 +04:00
|
|
|
virtual void GetTitle(nsString& aTitle) const;
|
|
|
|
virtual void GetType(nsString& aType) const;
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual bool HasRules() const;
|
|
|
|
virtual bool IsApplicable() const;
|
|
|
|
virtual void SetEnabled(bool aEnabled);
|
|
|
|
virtual bool IsComplete() const;
|
2010-05-13 00:18:47 +04:00
|
|
|
virtual void SetComplete();
|
2010-05-18 08:00:39 +04:00
|
|
|
virtual nsIStyleSheet* GetParentSheet() const; // will be null
|
|
|
|
virtual nsIDocument* GetOwningDocument() const;
|
2010-05-13 00:18:47 +04:00
|
|
|
virtual void SetOwningDocument(nsIDocument* aDocumemt);
|
2004-04-13 01:56:09 +04:00
|
|
|
#ifdef DEBUG
|
|
|
|
virtual void List(FILE* out = stdout, PRInt32 aIndent = 0) const;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// nsIStyleRuleProcessor API
|
2010-07-19 01:20:40 +04:00
|
|
|
virtual void RulesMatching(ElementRuleProcessorData* aData);
|
|
|
|
virtual void RulesMatching(PseudoElementRuleProcessorData* aData);
|
|
|
|
virtual void RulesMatching(AnonBoxRuleProcessorData* aData);
|
2009-12-11 10:37:40 +03:00
|
|
|
#ifdef MOZ_XUL
|
2010-07-19 01:20:40 +04:00
|
|
|
virtual void RulesMatching(XULTreeRuleProcessorData* aData);
|
2009-12-11 10:37:40 +03:00
|
|
|
#endif
|
2010-04-01 04:43:32 +04:00
|
|
|
virtual nsRestyleHint HasStateDependentStyle(StateRuleProcessorData* aData);
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual bool HasDocumentStateDependentStyle(StateRuleProcessorData* aData);
|
2010-04-01 04:43:32 +04:00
|
|
|
virtual nsRestyleHint
|
2009-12-11 01:36:03 +03:00
|
|
|
HasAttributeDependentStyle(AttributeRuleProcessorData* aData);
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual bool MediumFeaturesChanged(nsPresContext* aPresContext);
|
2011-12-09 09:01:52 +04:00
|
|
|
virtual NS_MUST_OVERRIDE size_t
|
|
|
|
SizeOfExcludingThis(nsMallocSizeOfFun aMallocSizeOf) const MOZ_OVERRIDE;
|
|
|
|
virtual NS_MUST_OVERRIDE size_t
|
|
|
|
SizeOfIncludingThis(nsMallocSizeOfFun aMallocSizeOf) const MOZ_OVERRIDE;
|
2012-02-02 01:58:01 +04:00
|
|
|
size_t DOMSizeOfIncludingThis(nsMallocSizeOfFun aMallocSizeOf) const;
|
2004-04-13 01:56:09 +04:00
|
|
|
|
|
|
|
nsresult Init(nsIURI* aURL, nsIDocument* aDocument);
|
2010-05-18 08:00:39 +04:00
|
|
|
void Reset(nsIURI* aURL);
|
2004-04-13 01:56:09 +04:00
|
|
|
nsresult SetLinkColor(nscolor aColor);
|
|
|
|
nsresult SetActiveLinkColor(nscolor aColor);
|
|
|
|
nsresult SetVisitedLinkColor(nscolor aColor);
|
|
|
|
|
|
|
|
// Mapped Attribute management methods
|
|
|
|
already_AddRefed<nsMappedAttributes>
|
|
|
|
UniqueMappedAttributes(nsMappedAttributes* aMapped);
|
|
|
|
void DropMappedAttributes(nsMappedAttributes* aMapped);
|
|
|
|
|
|
|
|
private:
|
2011-12-16 23:42:07 +04:00
|
|
|
nsHTMLStyleSheet(const nsHTMLStyleSheet& aCopy) MOZ_DELETE;
|
|
|
|
nsHTMLStyleSheet& operator=(const nsHTMLStyleSheet& aCopy) MOZ_DELETE;
|
2004-04-13 01:56:09 +04:00
|
|
|
|
|
|
|
~nsHTMLStyleSheet();
|
|
|
|
|
|
|
|
class HTMLColorRule;
|
|
|
|
friend class HTMLColorRule;
|
|
|
|
class HTMLColorRule : public nsIStyleRule {
|
|
|
|
public:
|
2004-10-31 20:33:50 +03:00
|
|
|
HTMLColorRule() {}
|
2004-04-13 01:56:09 +04:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
2004-10-31 20:33:50 +03:00
|
|
|
// nsIStyleRule interface
|
2010-05-20 06:28:00 +04:00
|
|
|
virtual void MapRuleInfoInto(nsRuleData* aRuleData);
|
2004-04-13 01:56:09 +04:00
|
|
|
#ifdef DEBUG
|
2010-05-20 06:28:00 +04:00
|
|
|
virtual void List(FILE* out = stdout, PRInt32 aIndent = 0) const;
|
2004-04-13 01:56:09 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
nscolor mColor;
|
|
|
|
};
|
|
|
|
|
2010-06-18 20:23:05 +04:00
|
|
|
// Implementation of SetLink/VisitedLink/ActiveLinkColor
|
|
|
|
nsresult ImplLinkColorSetter(nsRefPtr<HTMLColorRule>& aRule, nscolor aColor);
|
2006-05-14 17:34:32 +04:00
|
|
|
|
2004-04-13 01:56:09 +04:00
|
|
|
class GenericTableRule;
|
|
|
|
friend class GenericTableRule;
|
|
|
|
class GenericTableRule: public nsIStyleRule {
|
|
|
|
public:
|
2004-10-31 20:33:50 +03:00
|
|
|
GenericTableRule() {}
|
2004-04-13 01:56:09 +04:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
2004-10-31 20:33:50 +03:00
|
|
|
// nsIStyleRule interface
|
2011-06-01 15:43:31 +04:00
|
|
|
virtual void MapRuleInfoInto(nsRuleData* aRuleData) = 0;
|
2004-04-13 01:56:09 +04:00
|
|
|
#ifdef DEBUG
|
2010-05-20 06:28:00 +04:00
|
|
|
virtual void List(FILE* out = stdout, PRInt32 aIndent = 0) const;
|
2004-04-13 01:56:09 +04:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
// this rule handles <th> inheritance
|
|
|
|
class TableTHRule;
|
|
|
|
friend class TableTHRule;
|
|
|
|
class TableTHRule: public GenericTableRule {
|
|
|
|
public:
|
2004-10-31 20:33:50 +03:00
|
|
|
TableTHRule() {}
|
2004-04-13 01:56:09 +04:00
|
|
|
|
2010-05-20 06:28:00 +04:00
|
|
|
virtual void MapRuleInfoInto(nsRuleData* aRuleData);
|
2004-04-13 01:56:09 +04:00
|
|
|
};
|
|
|
|
|
2011-06-01 15:43:31 +04:00
|
|
|
// Rule to handle quirk table colors
|
|
|
|
class TableQuirkColorRule : public GenericTableRule {
|
|
|
|
public:
|
|
|
|
TableQuirkColorRule() {}
|
|
|
|
|
|
|
|
virtual void MapRuleInfoInto(nsRuleData* aRuleData);
|
|
|
|
};
|
|
|
|
|
2010-05-18 08:00:39 +04:00
|
|
|
nsCOMPtr<nsIURI> mURL;
|
|
|
|
nsIDocument* mDocument;
|
|
|
|
nsRefPtr<HTMLColorRule> mLinkRule;
|
|
|
|
nsRefPtr<HTMLColorRule> mVisitedRule;
|
|
|
|
nsRefPtr<HTMLColorRule> mActiveRule;
|
2011-06-01 15:43:31 +04:00
|
|
|
nsRefPtr<TableQuirkColorRule> mTableQuirkColorRule;
|
2010-05-18 08:00:39 +04:00
|
|
|
nsRefPtr<TableTHRule> mTableTHRule;
|
2004-04-13 01:56:09 +04:00
|
|
|
|
2010-05-18 08:00:39 +04:00
|
|
|
PLDHashTable mMappedAttrTable;
|
2004-04-13 01:56:09 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
// XXX convenience method. Calls Initialize() automatically.
|
|
|
|
nsresult
|
|
|
|
NS_NewHTMLStyleSheet(nsHTMLStyleSheet** aInstancePtrResult, nsIURI* aURL,
|
|
|
|
nsIDocument* aDocument);
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
NS_NewHTMLStyleSheet(nsHTMLStyleSheet** aInstancePtrResult);
|
|
|
|
|
|
|
|
#endif /* !defined(nsHTMLStyleSheet_h_) */
|