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 "nsISupports.h"
|
|
|
|
#include "nsIDOMWindowCollection.h"
|
|
|
|
#include "nsString.h"
|
2012-10-02 08:07:36 +00:00
|
|
|
#include "mozilla/StandardInteger.h"
|
1999-02-01 17:16:17 +00:00
|
|
|
|
1999-12-17 22:25:22 +00:00
|
|
|
class nsIDocShellTreeNode;
|
|
|
|
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
|
|
|
virtual ~nsDOMWindowList();
|
|
|
|
|
|
|
|
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);
|
1999-02-01 17:16:17 +00:00
|
|
|
|
|
|
|
protected:
|
2012-09-06 07:14:49 +00:00
|
|
|
// Note: this function may flush and cause mDocShellNode to become null.
|
|
|
|
void EnsureFresh();
|
|
|
|
|
1999-12-17 22:25:22 +00:00
|
|
|
nsIDocShellTreeNode* mDocShellNode; //Weak Reference
|
1999-02-01 17:16:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsDOMWindowList_h___
|