gecko-dev/dom/base/nsDOMWindowList.h

49 lines
1.3 KiB
C
Raw Normal View History

/* -*- 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-02-01 17:16:17 +00:00
#ifndef nsDOMWindowList_h___
#define nsDOMWindowList_h___
#include "nsCOMPtr.h"
1999-02-01 17:16:17 +00:00
#include "nsIDOMWindowCollection.h"
#include <stdint.h>
#include "nsIDocShell.h"
1999-02-01 17:16:17 +00:00
class nsIDocShell;
1999-02-01 17:16:17 +00:00
class nsIDOMWindow;
class nsDOMWindowList : public nsIDOMWindowCollection
1999-02-01 17:16:17 +00:00
{
public:
nsDOMWindowList(nsIDocShell *aDocShell);
1999-02-01 17:16:17 +00:00
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMWINDOWCOLLECTION
1999-02-01 17:16:17 +00:00
uint32_t GetLength();
already_AddRefed<nsIDOMWindow> IndexedGetter(uint32_t aIndex, bool& aFound);
1999-02-01 17:16:17 +00:00
//local methods
NS_IMETHOD SetDocShell(nsIDocShell* aDocShell);
already_AddRefed<nsIDocShellTreeItem> GetDocShellTreeItemAt(uint32_t aIndex)
{
EnsureFresh();
nsCOMPtr<nsIDocShellTreeItem> item;
if (mDocShellNode) {
mDocShellNode->GetChildAt(aIndex, getter_AddRefs(item));
}
return item.forget();
}
1999-02-01 17:16:17 +00:00
protected:
virtual ~nsDOMWindowList();
// Note: this function may flush and cause mDocShellNode to become null.
void EnsureFresh();
nsIDocShell* mDocShellNode; //Weak Reference
1999-02-01 17:16:17 +00:00
};
#endif // nsDOMWindowList_h___