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