2001-09-26 02:43:09 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
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___
|
|
|
|
|
2012-10-02 12:07:36 +04:00
|
|
|
#include "nsCOMPtr.h"
|
1999-02-01 20:16:17 +03:00
|
|
|
#include "nsIDOMWindowCollection.h"
|
2013-07-30 18:25:31 +04:00
|
|
|
#include <stdint.h>
|
2013-07-09 18:45:13 +04:00
|
|
|
#include "nsIDocShellTreeItem.h"
|
1999-02-01 20:16:17 +03:00
|
|
|
|
1999-12-18 01:25:22 +03:00
|
|
|
class nsIDocShell;
|
1999-02-01 20:16:17 +03: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 21:42:36 +04:00
|
|
|
class nsDOMWindowList : public nsIDOMWindowCollection
|
1999-02-01 20:16:17 +03:00
|
|
|
{
|
|
|
|
public:
|
1999-12-18 01:25:22 +03:00
|
|
|
nsDOMWindowList(nsIDocShell *aDocShell);
|
1999-02-01 20:16:17 +03:00
|
|
|
virtual ~nsDOMWindowList();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
2007-01-25 02:31:12 +03:00
|
|
|
NS_DECL_NSIDOMWINDOWCOLLECTION
|
1999-02-01 20:16:17 +03:00
|
|
|
|
2012-10-02 12:07:35 +04:00
|
|
|
uint32_t GetLength();
|
2012-10-02 12:07:36 +04:00
|
|
|
already_AddRefed<nsIDOMWindow> IndexedGetter(uint32_t aIndex, bool& aFound);
|
2012-10-02 12:07:35 +04:00
|
|
|
|
1999-02-01 20:16:17 +03:00
|
|
|
//local methods
|
1999-12-18 01:25:22 +03:00
|
|
|
NS_IMETHOD SetDocShell(nsIDocShell* aDocShell);
|
2013-07-09 18:45:13 +04: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 20:16:17 +03:00
|
|
|
|
|
|
|
protected:
|
2012-09-06 11:14:49 +04:00
|
|
|
// Note: this function may flush and cause mDocShellNode to become null.
|
|
|
|
void EnsureFresh();
|
|
|
|
|
1999-12-18 01:25:22 +03:00
|
|
|
nsIDocShellTreeNode* mDocShellNode; //Weak Reference
|
1999-02-01 20:16:17 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsDOMWindowList_h___
|