2001-09-25 22:43:09 +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/. */
|
1999-02-01 17:16:17 +00:00
|
|
|
#ifndef nsDOMWindowList_h___
|
|
|
|
#define nsDOMWindowList_h___
|
|
|
|
|
2012-10-02 08:07:36 +00:00
|
|
|
#include "nsCOMPtr.h"
|
1999-02-01 17:16:17 +00:00
|
|
|
#include "nsIDOMWindowCollection.h"
|
2013-07-30 14:25:31 +00:00
|
|
|
#include <stdint.h>
|
2014-01-06 22:34:15 +00:00
|
|
|
#include "nsIDocShell.h"
|
1999-02-01 17:16:17 +00:00
|
|
|
|
1999-12-17 22:25:22 +00:00
|
|
|
class nsIDocShell;
|
1999-02-01 17:16:17 +00:00
|
|
|
class nsIDOMWindow;
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
class nsDOMWindowList : public nsIDOMWindowCollection
|
1999-02-01 17:16:17 +00:00
|
|
|
{
|
|
|
|
public:
|
1999-12-17 22:25:22 +00:00
|
|
|
nsDOMWindowList(nsIDocShell *aDocShell);
|
1999-02-01 17:16:17 +00:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
2007-01-24 23:31:12 +00:00
|
|
|
NS_DECL_NSIDOMWINDOWCOLLECTION
|
1999-02-01 17:16:17 +00:00
|
|
|
|
2012-10-02 08:07:35 +00:00
|
|
|
uint32_t GetLength();
|
2012-10-02 08:07:36 +00:00
|
|
|
already_AddRefed<nsIDOMWindow> IndexedGetter(uint32_t aIndex, bool& aFound);
|
2012-10-02 08:07:35 +00:00
|
|
|
|
1999-02-01 17:16:17 +00:00
|
|
|
//local methods
|
1999-12-17 22:25:22 +00:00
|
|
|
NS_IMETHOD SetDocShell(nsIDocShell* aDocShell);
|
2013-07-09 14:45:13 +00:00
|
|
|
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:
|
2014-06-23 19:56:07 +00:00
|
|
|
virtual ~nsDOMWindowList();
|
|
|
|
|
2012-09-06 07:14:49 +00:00
|
|
|
// Note: this function may flush and cause mDocShellNode to become null.
|
|
|
|
void EnsureFresh();
|
|
|
|
|
2014-01-06 22:34:15 +00:00
|
|
|
nsIDocShell* mDocShellNode; //Weak Reference
|
1999-02-01 17:16:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsDOMWindowList_h___
|