forked from mirrors/gecko-dev
		
	MozReview-Commit-ID: DmfaYCe9QAY --HG-- extra : rebase_source : 6a89bd910de053c4535bdfbdf7df551bf9c83472
		
			
				
	
	
		
			88 lines
		
	
	
	
		
			2.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
	
		
			2.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/* -*- 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
 | 
						|
 * 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/. */
 | 
						|
 | 
						|
/* representation of CSSRuleList for stylo */
 | 
						|
 | 
						|
#ifndef mozilla_ServoCSSRuleList_h
 | 
						|
#define mozilla_ServoCSSRuleList_h
 | 
						|
 | 
						|
#include "mozilla/ServoBindingTypes.h"
 | 
						|
#include "mozilla/dom/CSSRuleList.h"
 | 
						|
#include "nsDataHashtable.h"
 | 
						|
 | 
						|
namespace mozilla {
 | 
						|
 | 
						|
class ServoStyleRule;
 | 
						|
class ServoStyleSheet;
 | 
						|
namespace css {
 | 
						|
class GroupRule;
 | 
						|
class Rule;
 | 
						|
} // namespace css
 | 
						|
 | 
						|
class ServoCSSRuleList final : public dom::CSSRuleList
 | 
						|
{
 | 
						|
public:
 | 
						|
  // @param aDirectOwnerStyleSheet should be set to the owner stylesheet
 | 
						|
  // if this rule list is owned directly by a stylesheet, which means it
 | 
						|
  // is a top level CSSRuleList. If it's owned by a group rule, nullptr.
 | 
						|
  // If this param is set, the caller doesn't need to call SetStyleSheet.
 | 
						|
  ServoCSSRuleList(already_AddRefed<ServoCssRules> aRawRules,
 | 
						|
                   ServoStyleSheet* aDirectOwnerStyleSheet);
 | 
						|
  css::GroupRule* GetParentRule() const { return mParentRule; }
 | 
						|
  void SetParentRule(css::GroupRule* aParentRule);
 | 
						|
  void SetStyleSheet(StyleSheet* aSheet);
 | 
						|
 | 
						|
  NS_DECL_ISUPPORTS_INHERITED
 | 
						|
  NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(ServoCSSRuleList, dom::CSSRuleList)
 | 
						|
 | 
						|
  ServoStyleSheet* GetParentObject() final { return mStyleSheet; }
 | 
						|
 | 
						|
  css::Rule* IndexedGetter(uint32_t aIndex, bool& aFound) final;
 | 
						|
  uint32_t Length() final { return mRules.Length(); }
 | 
						|
 | 
						|
  void DropReference();
 | 
						|
 | 
						|
  css::Rule* GetRule(uint32_t aIndex);
 | 
						|
  nsresult InsertRule(const nsAString& aRule, uint32_t aIndex);
 | 
						|
  nsresult DeleteRule(uint32_t aIndex);
 | 
						|
 | 
						|
  uint16_t GetDOMCSSRuleType(uint32_t aIndex) const;
 | 
						|
 | 
						|
private:
 | 
						|
  virtual ~ServoCSSRuleList();
 | 
						|
 | 
						|
  // XXX Is it possible to have an address lower than or equal to 255?
 | 
						|
  //     Is it possible to have more than 255 CSS rule types?
 | 
						|
  static const uintptr_t kMaxRuleType = UINT8_MAX;
 | 
						|
 | 
						|
  static uintptr_t CastToUint(css::Rule* aPtr) {
 | 
						|
    return reinterpret_cast<uintptr_t>(aPtr);
 | 
						|
  }
 | 
						|
  static css::Rule* CastToPtr(uintptr_t aInt) {
 | 
						|
    MOZ_ASSERT(aInt > kMaxRuleType);
 | 
						|
    return reinterpret_cast<css::Rule*>(aInt);
 | 
						|
  }
 | 
						|
 | 
						|
  template<typename Func>
 | 
						|
  void EnumerateInstantiatedRules(Func aCallback);
 | 
						|
 | 
						|
  void DropAllRules();
 | 
						|
 | 
						|
  // mStyleSheet may be nullptr when it drops the reference to us.
 | 
						|
  ServoStyleSheet* mStyleSheet = nullptr;
 | 
						|
  // mParentRule is nullptr if it isn't a nested rule list.
 | 
						|
  css::GroupRule* mParentRule = nullptr;
 | 
						|
  RefPtr<ServoCssRules> mRawRules;
 | 
						|
  // Array stores either a number indicating rule type, or a pointer to
 | 
						|
  // css::Rule. If the value is less than kMaxRuleType, the given rule
 | 
						|
  // instance has not been constructed, and the value means the type
 | 
						|
  // of the rule. Otherwise, it is a pointer.
 | 
						|
  nsTArray<uintptr_t> mRules;
 | 
						|
};
 | 
						|
 | 
						|
} // namespace mozilla
 | 
						|
 | 
						|
#endif // mozilla_ServoCSSRuleList_h
 |