gecko-dev/dom/base/nsDOMWindowList.h

50 строки
1.3 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: */
2012-05-21 15:12:37 +04: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 20:16:17 +03:00
#ifndef nsDOMWindowList_h___
#define nsDOMWindowList_h___
#include "nsCOMPtr.h"
1999-02-01 20:16:17 +03:00
#include "nsIDOMWindowCollection.h"
#include <stdint.h>
#include "nsIDocShell.h"
1999-02-01 20:16:17 +03:00
class nsIDocShell;
1999-02-01 20:16:17 +03:00
class nsIDOMWindow;
class nsDOMWindowList : public nsIDOMWindowCollection
1999-02-01 20:16:17 +03:00
{
public:
explicit nsDOMWindowList(nsIDocShell* aDocShell);
1999-02-01 20:16:17 +03:00
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMWINDOWCOLLECTION
1999-02-01 20:16:17 +03:00
uint32_t GetLength();
already_AddRefed<nsPIDOMWindowOuter> IndexedGetter(uint32_t aIndex);
1999-02-01 20:16:17 +03: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 20:16:17 +03:00
protected:
virtual ~nsDOMWindowList();
// Note: this function may flush and cause mDocShellNode to become null.
void EnsureFresh();
nsIDocShell* mDocShellNode; //Weak Reference
1999-02-01 20:16:17 +03:00
};
#endif // nsDOMWindowList_h___