2015-05-03 22:32:37 +03:00
|
|
|
/* -*- 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-01-29 01:24:29 +03:00
|
|
|
#ifndef nsHistory_h___
|
|
|
|
#define nsHistory_h___
|
|
|
|
|
2013-08-10 10:47:59 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
|
|
|
#include "mozilla/ErrorResult.h"
|
2015-12-26 13:59:09 +03:00
|
|
|
#include "mozilla/dom/HistoryBinding.h"
|
2018-02-02 01:35:47 +03:00
|
|
|
#include "mozilla/dom/ChildSHistory.h"
|
2013-09-06 10:43:16 +04:00
|
|
|
#include "nsCOMPtr.h"
|
2013-08-10 10:47:59 +04:00
|
|
|
#include "nsCycleCollectionParticipant.h"
|
2013-09-06 10:43:16 +04:00
|
|
|
#include "nsPIDOMWindow.h" // for GetParentObject
|
|
|
|
#include "nsStringFwd.h"
|
|
|
|
#include "nsWrapperCache.h"
|
1999-01-29 01:24:29 +03:00
|
|
|
|
2000-02-08 16:40:10 +03:00
|
|
|
class nsIDocShell;
|
2013-09-06 10:43:16 +04:00
|
|
|
class nsISHistory;
|
|
|
|
class nsIWeakReference;
|
2016-01-30 20:05:36 +03:00
|
|
|
class nsPIDOMWindowInner;
|
1999-01-29 01:24:29 +03:00
|
|
|
|
|
|
|
// Script "History" object
|
2018-02-09 00:33:10 +03:00
|
|
|
class nsHistory final : public nsISupports,
|
|
|
|
public nsWrapperCache
|
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
|
|
|
{
|
2013-08-10 10:47:59 +04:00
|
|
|
public:
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(nsHistory)
|
|
|
|
|
1999-01-29 01:24:29 +03:00
|
|
|
public:
|
2016-01-30 20:05:36 +03:00
|
|
|
explicit nsHistory(nsPIDOMWindowInner* aInnerWindow);
|
1999-01-29 01:24:29 +03:00
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
nsPIDOMWindowInner* GetParentObject() const;
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
1999-01-29 01:24:29 +03:00
|
|
|
|
2013-08-10 10:47:59 +04:00
|
|
|
uint32_t GetLength(mozilla::ErrorResult& aRv) const;
|
2015-12-26 13:59:09 +03:00
|
|
|
mozilla::dom::ScrollRestoration GetScrollRestoration(mozilla::ErrorResult& aRv);
|
|
|
|
void SetScrollRestoration(mozilla::dom::ScrollRestoration aMode,
|
|
|
|
mozilla::ErrorResult& aRv);
|
2014-06-12 00:26:52 +04:00
|
|
|
void GetState(JSContext* aCx, JS::MutableHandle<JS::Value> aResult,
|
|
|
|
mozilla::ErrorResult& aRv) const;
|
2013-08-10 10:47:59 +04:00
|
|
|
void Go(int32_t aDelta, mozilla::ErrorResult& aRv);
|
|
|
|
void Back(mozilla::ErrorResult& aRv);
|
|
|
|
void Forward(mozilla::ErrorResult& aRv);
|
|
|
|
void PushState(JSContext* aCx, JS::Handle<JS::Value> aData,
|
|
|
|
const nsAString& aTitle, const nsAString& aUrl,
|
|
|
|
mozilla::ErrorResult& aRv);
|
|
|
|
void ReplaceState(JSContext* aCx, JS::Handle<JS::Value> aData,
|
|
|
|
const nsAString& aTitle, const nsAString& aUrl,
|
|
|
|
mozilla::ErrorResult& aRv);
|
1999-01-29 01:24:29 +03:00
|
|
|
|
2013-08-10 10:47:59 +04:00
|
|
|
protected:
|
2014-06-23 23:56:07 +04:00
|
|
|
virtual ~nsHistory();
|
|
|
|
|
2013-09-06 10:43:16 +04:00
|
|
|
nsIDocShell* GetDocShell() const;
|
2011-02-01 20:19:35 +03:00
|
|
|
|
2013-08-24 04:23:37 +04:00
|
|
|
void PushOrReplaceState(JSContext* aCx, JS::Handle<JS::Value> aData,
|
2013-08-10 10:47:59 +04:00
|
|
|
const nsAString& aTitle, const nsAString& aUrl,
|
|
|
|
mozilla::ErrorResult& aRv, bool aReplace);
|
2000-11-28 02:10:09 +03:00
|
|
|
|
2018-02-02 01:35:47 +03:00
|
|
|
already_AddRefed<mozilla::dom::ChildSHistory> GetSessionHistory() const;
|
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
|
|
|
|
2018-10-31 23:39:03 +03:00
|
|
|
nsWeakPtr mInnerWindow;
|
1999-01-29 01:24:29 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsHistory_h___ */
|