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/. */
|
2006-03-25 05:47:31 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* internal interface representing CSS style rules that contain other
|
|
|
|
* rules, such as @media rules
|
|
|
|
*/
|
|
|
|
|
2010-08-08 05:28:33 +00:00
|
|
|
#ifndef mozilla_css_GroupRule_h__
|
|
|
|
#define mozilla_css_GroupRule_h__
|
1999-06-10 05:32:38 +00:00
|
|
|
|
2013-05-14 16:33:23 +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"
|
2005-10-15 20:21:20 +00:00
|
|
|
#include "nsCOMArray.h"
|
2010-08-08 05:28:33 +00:00
|
|
|
#include "nsAutoPtr.h"
|
2012-10-08 02:39:09 +00:00
|
|
|
#include "nsCycleCollectionParticipant.h"
|
1999-06-10 05:32:38 +00:00
|
|
|
|
2004-08-05 18:26:14 +00:00
|
|
|
class nsPresContext;
|
2008-07-26 16:14:48 +00:00
|
|
|
class nsMediaQueryResultCacheKey;
|
1999-06-10 05:32:38 +00:00
|
|
|
|
2010-08-08 05:28:33 +00:00
|
|
|
namespace mozilla {
|
2014-06-20 10:32:49 +00:00
|
|
|
|
|
|
|
class CSSStyleSheet;
|
|
|
|
|
2010-08-08 05:28:33 +00:00
|
|
|
namespace css {
|
2010-05-20 02:28:00 +00:00
|
|
|
|
2010-08-08 05:28:33 +00:00
|
|
|
class GroupRuleRuleList;
|
1999-06-10 05:32:38 +00:00
|
|
|
|
2011-03-07 03:59:03 +00:00
|
|
|
// inherits from Rule so it can be shared between
|
2011-03-18 05:18:08 +00:00
|
|
|
// MediaRule and DocumentRule
|
2011-03-07 03:59:03 +00:00
|
|
|
class GroupRule : public Rule
|
2010-08-08 05:28:33 +00:00
|
|
|
{
|
|
|
|
protected:
|
|
|
|
GroupRule();
|
|
|
|
GroupRule(const GroupRule& aCopy);
|
|
|
|
virtual ~GroupRule();
|
1999-06-10 05:32:38 +00:00
|
|
|
public:
|
|
|
|
|
2012-10-08 02:39:09 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS(GroupRule)
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
|
2011-04-08 01:23:46 +00:00
|
|
|
// implement part of nsIStyleRule and Rule
|
2010-08-08 05:28:33 +00:00
|
|
|
DECL_STYLE_RULE_INHERIT_NO_DOMRULE
|
2014-06-20 10:32:49 +00:00
|
|
|
virtual void SetStyleSheet(CSSStyleSheet* aSheet);
|
2010-08-08 05:28:33 +00:00
|
|
|
|
|
|
|
// to help implement nsIStyleRule
|
|
|
|
#ifdef DEBUG
|
2013-05-14 16:33:23 +00:00
|
|
|
virtual void List(FILE* out = stdout, int32_t aIndent = 0) const MOZ_OVERRIDE;
|
2010-08-08 05:28:33 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
public:
|
2011-04-08 01:23:46 +00:00
|
|
|
void AppendStyleRule(Rule* aRule);
|
1999-06-10 05:32:38 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t StyleRuleCount() const { return mRules.Count(); }
|
|
|
|
Rule* GetStyleRuleAt(int32_t aIndex) const;
|
1999-06-10 05:32:38 +00:00
|
|
|
|
2011-04-08 01:23:46 +00:00
|
|
|
typedef nsCOMArray<Rule>::nsCOMArrayEnumFunc RuleEnumFunc;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool EnumerateRulesForwards(RuleEnumFunc aFunc, void * aData) const;
|
2001-09-05 00:00:18 +00:00
|
|
|
|
|
|
|
/*
|
2003-06-18 01:59:57 +00:00
|
|
|
* The next three methods should never be called unless you have first
|
|
|
|
* called WillDirty() on the parent stylesheet. After they are
|
|
|
|
* called, DidDirty() needs to be called on the sheet.
|
2001-09-05 00:00:18 +00:00
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
nsresult DeleteStyleRuleAt(uint32_t aIndex);
|
2013-02-10 06:56:49 +00:00
|
|
|
nsresult InsertStyleRuleAt(uint32_t aIndex, Rule* aRule);
|
2011-04-08 01:23:46 +00:00
|
|
|
nsresult ReplaceStyleRule(Rule *aOld, Rule *aNew);
|
2004-08-05 18:26:14 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual bool UseForPresentation(nsPresContext* aPresContext,
|
2010-08-08 05:29:28 +00:00
|
|
|
nsMediaQueryResultCacheKey& aKey) = 0;
|
2010-08-08 05:28:33 +00:00
|
|
|
|
2013-03-24 02:14:43 +00:00
|
|
|
// non-virtual -- it is only called by subclasses
|
2013-06-23 12:03:39 +00:00
|
|
|
size_t SizeOfExcludingThis(mozilla::MallocSizeOf aMallocSizeOf) const;
|
|
|
|
virtual size_t SizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf) const = 0;
|
2012-01-03 02:19:14 +00:00
|
|
|
|
2013-11-15 02:42:57 +00:00
|
|
|
static bool
|
|
|
|
CloneRuleInto(Rule* aRule, void* aArray)
|
|
|
|
{
|
|
|
|
nsRefPtr<Rule> clone = aRule->Clone();
|
|
|
|
static_cast<nsCOMArray<Rule>*>(aArray)->AppendObject(clone);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-08-08 05:28:33 +00:00
|
|
|
protected:
|
|
|
|
// to help implement nsIDOMCSSRule
|
2013-08-02 07:04:31 +00:00
|
|
|
void AppendRulesToCssText(nsAString& aCssText);
|
2010-08-08 05:28:33 +00:00
|
|
|
|
|
|
|
// to implement common methods on nsIDOMCSSMediaRule and
|
|
|
|
// nsIDOMCSSMozDocumentRule
|
2011-04-12 02:46:35 +00:00
|
|
|
nsresult GetCssRules(nsIDOMCSSRuleList* *aRuleList);
|
2012-08-22 15:56:38 +00:00
|
|
|
nsresult InsertRule(const nsAString & aRule, uint32_t aIndex,
|
|
|
|
uint32_t* _retval);
|
|
|
|
nsresult DeleteRule(uint32_t aIndex);
|
2010-08-08 05:28:33 +00:00
|
|
|
|
2011-04-08 01:23:46 +00:00
|
|
|
nsCOMArray<Rule> mRules;
|
2010-08-08 05:28:33 +00:00
|
|
|
nsRefPtr<GroupRuleRuleList> mRuleCollection; // lazily constructed
|
1999-06-10 05:32:38 +00:00
|
|
|
};
|
|
|
|
|
2010-08-08 05:28:33 +00:00
|
|
|
} // namespace css
|
|
|
|
} // namespace mozilla
|
2005-11-11 14:36:26 +00:00
|
|
|
|
2010-08-08 05:28:33 +00:00
|
|
|
#endif /* mozilla_css_GroupRule_h__ */
|