Merge mozilla-central and tracemonkey. (a=blockers)
[mozilla-central.git] / layout / base / nsLayoutHistoryState.cpp
blob5c5a28710d68b628fa8b1cb5cf854127523565b4
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998
20 * the Initial Developer. All Rights Reserved.
22 * Contributor(s):
23 * Pierre Phaneuf <pp@ludusdesign.com>
25 * Alternatively, the contents of this file may be used under the terms of
26 * either of the GNU General Public License Version 2 or later (the "GPL"),
27 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 * in which case the provisions of the GPL or the LGPL are applicable instead
29 * of those above. If you wish to allow use of your version of this file only
30 * under the terms of either the GPL or the LGPL, and not to allow others to
31 * use your version of this file under the terms of the MPL, indicate your
32 * decision by deleting the provisions above and replace them with the notice
33 * and other provisions required by the GPL or the LGPL. If you do not delete
34 * the provisions above, a recipient may use your version of this file under
35 * the terms of any one of the MPL, the GPL or the LGPL.
37 * ***** END LICENSE BLOCK ***** */
40 * container for information saved in session history when the document
41 * is not
44 #include "nsILayoutHistoryState.h"
45 #include "nsWeakReference.h"
46 #include "nsClassHashtable.h"
47 #include "nsPresState.h"
49 class nsLayoutHistoryState : public nsILayoutHistoryState,
50 public nsSupportsWeakReference
52 public:
53 NS_HIDDEN_(nsresult) Init();
55 NS_DECL_ISUPPORTS
57 // nsILayoutHistoryState
58 NS_IMETHOD AddState(const nsCString& aKey, nsPresState* aState);
59 NS_IMETHOD GetState(const nsCString& aKey, nsPresState** aState);
60 NS_IMETHOD RemoveState(const nsCString& aKey);
61 NS_IMETHOD_(PRBool) HasStates() const;
62 NS_IMETHOD SetScrollPositionOnly(const PRBool aFlag);
65 private:
66 ~nsLayoutHistoryState() {}
67 PRBool mScrollPositionOnly;
69 nsClassHashtable<nsCStringHashKey,nsPresState> mStates;
73 nsresult
74 NS_NewLayoutHistoryState(nsILayoutHistoryState** aState)
76 nsLayoutHistoryState *state;
78 *aState = nsnull;
79 state = new nsLayoutHistoryState();
80 if (!state)
81 return NS_ERROR_OUT_OF_MEMORY;
83 NS_ADDREF(state);
84 nsresult rv = state->Init();
85 if (NS_SUCCEEDED(rv))
86 *aState = state;
87 else
88 NS_RELEASE(state);
90 return rv;
93 NS_IMPL_ISUPPORTS2(nsLayoutHistoryState,
94 nsILayoutHistoryState,
95 nsISupportsWeakReference)
97 nsresult
98 nsLayoutHistoryState::Init()
100 mScrollPositionOnly = PR_FALSE;
101 return mStates.Init() ? NS_OK : NS_ERROR_FAILURE;
104 NS_IMETHODIMP
105 nsLayoutHistoryState::AddState(const nsCString& aStateKey, nsPresState* aState)
107 return mStates.Put(aStateKey, aState) ? NS_OK : NS_ERROR_OUT_OF_MEMORY;
110 NS_IMETHODIMP
111 nsLayoutHistoryState::GetState(const nsCString& aKey, nsPresState** aState)
113 PRBool entryExists = mStates.Get(aKey, aState);
115 if (entryExists && mScrollPositionOnly) {
116 // Ensure any state that shouldn't be restored is removed
117 (*aState)->ClearNonScrollState();
120 return NS_OK;
123 NS_IMETHODIMP
124 nsLayoutHistoryState::RemoveState(const nsCString& aKey)
126 mStates.Remove(aKey);
127 return NS_OK;
130 NS_IMETHODIMP_(PRBool)
131 nsLayoutHistoryState::HasStates() const
133 return mStates.Count() != 0;
136 NS_IMETHODIMP
137 nsLayoutHistoryState::SetScrollPositionOnly(const PRBool aFlag)
139 mScrollPositionOnly = aFlag;
140 return NS_OK;