2001-09-25 01:32:19 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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/. */
|
1999-06-10 05:32:38 +00:00
|
|
|
|
2011-03-17 17:41:52 +00:00
|
|
|
/* class for CSS @namespace rules */
|
2006-03-25 05:47:31 +00:00
|
|
|
|
2011-03-17 17:41:52 +00:00
|
|
|
#ifndef mozilla_css_NameSpaceRule_h__
|
|
|
|
#define mozilla_css_NameSpaceRule_h__
|
2006-03-25 07:14:13 +00:00
|
|
|
|
2011-12-19 18:48:15 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-06-23 12:03:39 +00:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2011-04-08 01:23:46 +00:00
|
|
|
#include "mozilla/css/Rule.h"
|
2011-12-19 18:48:15 +00:00
|
|
|
|
2011-03-17 17:41:52 +00:00
|
|
|
#include "nsIDOMCSSRule.h"
|
1999-06-10 05:32:38 +00:00
|
|
|
|
|
|
|
class nsIAtom;
|
|
|
|
|
2011-04-08 01:23:46 +00:00
|
|
|
// IID for the NameSpaceRule class {f0b0dbe1-5031-4a21-b06a-dc141ef2af98}
|
2011-03-17 17:41:52 +00:00
|
|
|
#define NS_CSS_NAMESPACE_RULE_IMPL_CID \
|
|
|
|
{0xf0b0dbe1, 0x5031, 0x4a21, {0xb0, 0x6a, 0xdc, 0x14, 0x1e, 0xf2, 0xaf, 0x98}}
|
2010-05-20 02:28:00 +00:00
|
|
|
|
1999-06-10 05:32:38 +00:00
|
|
|
|
2011-03-17 17:41:52 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace css {
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class NameSpaceRule final : public Rule,
|
2015-03-27 18:52:19 +00:00
|
|
|
public nsIDOMCSSRule
|
2011-03-17 17:41:52 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-07-14 22:57:54 +00:00
|
|
|
NameSpaceRule(nsIAtom* aPrefix, const nsString& aURLSpec,
|
|
|
|
uint32_t aLineNumber, uint32_t aColumnNumber);
|
2011-03-17 17:41:52 +00:00
|
|
|
private:
|
|
|
|
// for |Clone|
|
|
|
|
NameSpaceRule(const NameSpaceRule& aCopy);
|
|
|
|
~NameSpaceRule();
|
1999-06-10 05:32:38 +00:00
|
|
|
public:
|
2011-03-17 17:41:52 +00:00
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_CSS_NAMESPACE_RULE_IMPL_CID)
|
|
|
|
|
2012-10-08 02:39:09 +00:00
|
|
|
NS_DECL_ISUPPORTS
|
2011-03-17 17:41:52 +00:00
|
|
|
|
|
|
|
DECL_STYLE_RULE_INHERIT
|
|
|
|
|
|
|
|
// nsIStyleRule methods
|
|
|
|
#ifdef DEBUG
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual void List(FILE* out = stdout, int32_t aIndent = 0) const override;
|
2011-03-17 17:41:52 +00:00
|
|
|
#endif
|
1999-06-10 05:32:38 +00:00
|
|
|
|
2011-04-08 01:23:46 +00:00
|
|
|
// Rule methods
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual int32_t GetType() const override;
|
|
|
|
virtual already_AddRefed<Rule> Clone() const override;
|
1999-06-10 05:32:38 +00:00
|
|
|
|
2011-03-17 17:41:52 +00:00
|
|
|
nsIAtom* GetPrefix() const { return mPrefix; }
|
2011-03-17 17:41:52 +00:00
|
|
|
|
2011-03-17 17:41:52 +00:00
|
|
|
void GetURLSpec(nsString& aURLSpec) const { aURLSpec = mURLSpec; }
|
2011-03-17 17:41:52 +00:00
|
|
|
|
2013-06-23 12:03:39 +00:00
|
|
|
virtual size_t SizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf) const
|
2015-03-21 16:28:04 +00:00
|
|
|
override MOZ_MUST_OVERRIDE;
|
2012-01-03 02:19:14 +00:00
|
|
|
|
2011-03-17 17:41:52 +00:00
|
|
|
// nsIDOMCSSRule interface
|
|
|
|
NS_DECL_NSIDOMCSSRULE
|
|
|
|
|
|
|
|
private:
|
2011-03-17 17:41:52 +00:00
|
|
|
nsCOMPtr<nsIAtom> mPrefix;
|
2011-03-17 17:41:52 +00:00
|
|
|
nsString mURLSpec;
|
1999-06-10 05:32:38 +00:00
|
|
|
};
|
|
|
|
|
2014-03-28 08:45:02 +00:00
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(NameSpaceRule, NS_CSS_NAMESPACE_RULE_IMPL_CID)
|
|
|
|
|
2011-03-17 17:41:52 +00:00
|
|
|
} // namespace css
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif /* mozilla_css_NameSpaceRule_h__ */
|