2008-10-22 07:31:14 -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-07-08 23:19:27 -07:00
|
|
|
|
2008-10-22 07:31:14 -07:00
|
|
|
#ifndef nsIHTMLCollection_h___
|
|
|
|
#define nsIHTMLCollection_h___
|
2007-07-08 23:19:27 -07:00
|
|
|
|
2008-10-22 14:17:49 -07:00
|
|
|
#include "nsIDOMHTMLCollection.h"
|
2014-03-15 12:00:17 -07:00
|
|
|
#include "nsTArrayForwardDeclare.h"
|
2012-09-05 13:49:53 -07:00
|
|
|
#include "nsWrapperCache.h"
|
2013-08-27 19:59:14 -07:00
|
|
|
#include "js/TypeDecls.h"
|
2007-07-08 23:19:27 -07:00
|
|
|
|
2011-05-31 14:47:59 -07:00
|
|
|
class nsINode;
|
2013-03-17 00:55:17 -07:00
|
|
|
class nsString;
|
|
|
|
|
2012-09-05 13:49:53 -07:00
|
|
|
namespace mozilla {
|
|
|
|
class ErrorResult;
|
2012-11-14 14:10:07 -08:00
|
|
|
|
|
|
|
namespace dom {
|
|
|
|
class Element;
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2010-05-09 12:33:00 -07:00
|
|
|
|
2008-10-22 07:31:14 -07:00
|
|
|
// IID for the nsIHTMLCollection interface
|
|
|
|
#define NS_IHTMLCOLLECTION_IID \
|
2013-11-12 07:22:22 -08:00
|
|
|
{ 0x4e169191, 0x5196, 0x4e17, \
|
|
|
|
{ 0xa4, 0x79, 0xd5, 0x35, 0x0b, 0x5b, 0x0a, 0xcd } }
|
2008-10-22 07:31:14 -07:00
|
|
|
|
|
|
|
/**
|
2011-08-20 06:53:33 -07:00
|
|
|
* An internal interface
|
2008-10-22 07:31:14 -07:00
|
|
|
*/
|
|
|
|
class nsIHTMLCollection : public nsIDOMHTMLCollection
|
2007-07-08 23:19:27 -07:00
|
|
|
{
|
2008-10-22 07:31:14 -07:00
|
|
|
public:
|
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IHTMLCOLLECTION_IID)
|
|
|
|
|
2011-05-31 14:47:59 -07:00
|
|
|
/**
|
|
|
|
* Get the root node for this HTML collection.
|
|
|
|
*/
|
|
|
|
virtual nsINode* GetParentObject() = 0;
|
2012-09-05 13:49:53 -07:00
|
|
|
|
|
|
|
using nsIDOMHTMLCollection::Item;
|
|
|
|
using nsIDOMHTMLCollection::NamedItem;
|
|
|
|
|
|
|
|
uint32_t Length()
|
|
|
|
{
|
|
|
|
uint32_t length;
|
|
|
|
GetLength(&length);
|
|
|
|
return length;
|
|
|
|
}
|
2012-11-14 14:10:07 -08:00
|
|
|
virtual mozilla::dom::Element* GetElementAt(uint32_t index) = 0;
|
|
|
|
mozilla::dom::Element* Item(uint32_t index)
|
2012-09-05 13:49:53 -07:00
|
|
|
{
|
|
|
|
return GetElementAt(index);
|
|
|
|
}
|
2012-11-14 14:10:07 -08:00
|
|
|
mozilla::dom::Element* IndexedGetter(uint32_t index, bool& aFound)
|
2012-09-05 13:49:53 -07:00
|
|
|
{
|
2012-11-14 14:10:07 -08:00
|
|
|
mozilla::dom::Element* item = Item(index);
|
2012-09-05 13:49:53 -07:00
|
|
|
aFound = !!item;
|
|
|
|
return item;
|
|
|
|
}
|
2013-11-10 23:55:41 -08:00
|
|
|
mozilla::dom::Element* NamedItem(const nsAString& aName)
|
2012-09-05 13:49:53 -07:00
|
|
|
{
|
2013-11-10 23:55:41 -08:00
|
|
|
bool dummy;
|
|
|
|
return NamedGetter(aName, dummy);
|
2012-09-05 13:49:53 -07:00
|
|
|
}
|
2013-11-10 23:55:41 -08:00
|
|
|
mozilla::dom::Element* NamedGetter(const nsAString& aName, bool& aFound)
|
|
|
|
{
|
|
|
|
return GetFirstNamedElement(aName, aFound);
|
|
|
|
}
|
2014-04-15 19:58:44 -07:00
|
|
|
bool NameIsEnumerable(const nsAString& aName)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2013-11-10 23:55:41 -08:00
|
|
|
virtual mozilla::dom::Element*
|
|
|
|
GetFirstNamedElement(const nsAString& aName, bool& aFound) = 0;
|
2012-11-05 08:58:03 -08:00
|
|
|
|
2014-04-15 19:58:44 -07:00
|
|
|
virtual void GetSupportedNames(unsigned aFlags,
|
|
|
|
nsTArray<nsString>& aNames) = 0;
|
2012-10-16 04:51:00 -07:00
|
|
|
|
2012-11-22 03:09:43 -08:00
|
|
|
JSObject* GetWrapperPreserveColor()
|
2012-10-16 04:51:00 -07:00
|
|
|
{
|
2013-11-12 07:22:22 -08:00
|
|
|
return GetWrapperPreserveColorInternal();
|
2012-10-16 04:51:00 -07:00
|
|
|
}
|
2014-04-08 15:27:18 -07:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx) = 0;
|
2013-11-12 07:22:22 -08:00
|
|
|
protected:
|
|
|
|
virtual JSObject* GetWrapperPreserveColorInternal() = 0;
|
2007-07-08 23:19:27 -07:00
|
|
|
};
|
2008-10-22 07:31:14 -07:00
|
|
|
|
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsIHTMLCollection, NS_IHTMLCOLLECTION_IID)
|
|
|
|
|
|
|
|
#endif /* nsIHTMLCollection_h___ */
|