2017-10-27 20:33:53 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
2012-05-21 15:12:37 +04:00
|
|
|
* 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_
|
|
|
|
|
2013-03-22 04:05:20 +04:00
|
|
|
#include "nsColor.h"
|
|
|
|
#include "nsCOMPtr.h"
|
2017-10-03 01:05:19 +03:00
|
|
|
#include "nsAtom.h"
|
2015-09-16 06:49:53 +03:00
|
|
|
#include "PLDHashTable.h"
|
2012-06-19 07:26:34 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-06-23 16:03:39 +04:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2013-05-30 12:00:20 +04:00
|
|
|
#include "nsString.h"
|
2012-06-19 07:26:34 +04:00
|
|
|
|
2004-04-13 01:56:09 +04:00
|
|
|
class nsMappedAttributes;
|
2017-06-01 21:37:02 +03:00
|
|
|
struct RawServoDeclarationBlock;
|
2004-04-13 01:56:09 +04:00
|
|
|
|
2018-02-01 07:04:04 +03:00
|
|
|
class nsHTMLStyleSheet final {
|
2004-04-13 01:56:09 +04:00
|
|
|
public:
|
2019-01-02 16:05:23 +03:00
|
|
|
explicit nsHTMLStyleSheet(mozilla::dom::Document* aDocument);
|
2004-04-13 01:56:09 +04:00
|
|
|
|
2019-01-02 16:05:23 +03:00
|
|
|
void SetOwningDocument(mozilla::dom::Document* aDocument);
|
2004-04-13 01:56:09 +04:00
|
|
|
|
2018-02-01 07:04:04 +03:00
|
|
|
NS_INLINE_DECL_REFCOUNTING(nsHTMLStyleSheet)
|
|
|
|
|
2013-06-23 16:03:39 +04:00
|
|
|
size_t DOMSizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf) const;
|
2004-04-13 01:56:09 +04:00
|
|
|
|
2013-06-14 09:34:37 +04:00
|
|
|
void Reset();
|
2004-04-13 01:56:09 +04:00
|
|
|
nsresult SetLinkColor(nscolor aColor);
|
|
|
|
nsresult SetActiveLinkColor(nscolor aColor);
|
|
|
|
nsresult SetVisitedLinkColor(nscolor aColor);
|
|
|
|
|
2017-06-01 21:37:02 +03:00
|
|
|
const RefPtr<RawServoDeclarationBlock>& GetServoUnvisitedLinkDecl() const {
|
|
|
|
return mServoUnvisitedLinkDecl;
|
|
|
|
}
|
|
|
|
const RefPtr<RawServoDeclarationBlock>& GetServoVisitedLinkDecl() const {
|
|
|
|
return mServoVisitedLinkDecl;
|
|
|
|
}
|
|
|
|
const RefPtr<RawServoDeclarationBlock>& GetServoActiveLinkDecl() const {
|
|
|
|
return mServoActiveLinkDecl;
|
|
|
|
}
|
|
|
|
|
2004-04-13 01:56:09 +04:00
|
|
|
// Mapped Attribute management methods
|
|
|
|
already_AddRefed<nsMappedAttributes> UniqueMappedAttributes(
|
|
|
|
nsMappedAttributes* aMapped);
|
|
|
|
void DropMappedAttributes(nsMappedAttributes* aMapped);
|
2017-01-20 02:56:53 +03:00
|
|
|
// For each mapped presentation attribute in the cache, resolve
|
2018-05-30 19:15:25 +03:00
|
|
|
// the attached DeclarationBlock by running the mapping
|
2017-01-20 02:56:53 +03:00
|
|
|
// and converting the ruledata to Servo specified values.
|
2018-01-05 15:47:04 +03:00
|
|
|
void CalculateMappedServoDeclarations();
|
2004-04-13 01:56:09 +04:00
|
|
|
|
2017-06-17 00:59:08 +03:00
|
|
|
private:
|
2015-01-07 02:35:02 +03:00
|
|
|
nsHTMLStyleSheet(const nsHTMLStyleSheet& aCopy) = delete;
|
|
|
|
nsHTMLStyleSheet& operator=(const nsHTMLStyleSheet& aCopy) = delete;
|
2004-04-13 01:56:09 +04:00
|
|
|
|
2015-05-19 06:43:18 +03:00
|
|
|
~nsHTMLStyleSheet() {}
|
2004-04-13 01:56:09 +04:00
|
|
|
|
2018-02-01 07:04:04 +03:00
|
|
|
// Implementation of SetLink/VisitedLink/ActiveLinkColor
|
|
|
|
nsresult ImplLinkColorSetter(RefPtr<RawServoDeclarationBlock>& aDecl,
|
|
|
|
nscolor aColor);
|
2013-05-30 12:00:20 +04:00
|
|
|
|
|
|
|
public: // for mLangRuleTable structures only
|
|
|
|
private:
|
2019-01-02 16:05:23 +03:00
|
|
|
mozilla::dom::Document* mDocument;
|
2017-06-01 21:37:02 +03:00
|
|
|
RefPtr<RawServoDeclarationBlock> mServoUnvisitedLinkDecl;
|
|
|
|
RefPtr<RawServoDeclarationBlock> mServoVisitedLinkDecl;
|
|
|
|
RefPtr<RawServoDeclarationBlock> mServoActiveLinkDecl;
|
2004-04-13 01:56:09 +04:00
|
|
|
|
2015-05-20 02:46:17 +03:00
|
|
|
PLDHashTable mMappedAttrTable;
|
2017-01-20 02:56:53 +03:00
|
|
|
// Whether or not the mapped attributes table
|
|
|
|
// has been changed since the last call to
|
|
|
|
// CalculateMappedServoDeclarations()
|
|
|
|
bool mMappedAttrsDirty;
|
2004-04-13 01:56:09 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* !defined(nsHTMLStyleSheet_h_) */
|