2000-10-28 22:17:53 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
1999-08-30 22:38:58 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* The contents of this file are subject to the Netscape Public
|
|
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.mozilla.org/NPL/
|
1999-08-30 22:38:58 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS
|
|
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
* implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
1999-08-30 22:38:58 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-08-30 22:38:58 +00:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 03:40:37 +00:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
2000-02-02 22:24:56 +00:00
|
|
|
* Pierre Phaneuf <pp@ludusdesign.com>
|
1999-08-30 22:38:58 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsILayoutHistoryState.h"
|
|
|
|
#include "nsHashtable.h"
|
1999-09-14 01:59:33 +00:00
|
|
|
#include "nsIStatefulFrame.h" // Get StateType enum
|
1999-08-30 22:38:58 +00:00
|
|
|
|
2001-01-27 23:06:33 +00:00
|
|
|
MOZ_DECL_CTOR_COUNTER(HistoryKey)
|
1999-10-08 20:41:19 +00:00
|
|
|
|
2000-08-10 06:19:37 +00:00
|
|
|
class HistoryKey: public nsVoidKey {
|
1999-09-03 22:10:57 +00:00
|
|
|
public:
|
2000-08-10 06:19:37 +00:00
|
|
|
HistoryKey(PRUint32 aContentID, nsIStatefulFrame::StateType aStateType)
|
|
|
|
: nsVoidKey((void*)(aContentID * nsIStatefulFrame::eNumStateTypes + aStateType)) {
|
1999-09-03 22:10:57 +00:00
|
|
|
}
|
|
|
|
|
2000-08-10 06:19:37 +00:00
|
|
|
HistoryKey(PRUint32 aKey)
|
|
|
|
: nsVoidKey((void*)aKey) {
|
1999-09-03 22:10:57 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
1999-08-30 22:38:58 +00:00
|
|
|
class nsLayoutHistoryState : public nsILayoutHistoryState
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsLayoutHistoryState();
|
|
|
|
virtual ~nsLayoutHistoryState();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
// nsILayoutHistoryState
|
|
|
|
NS_IMETHOD AddState(PRUint32 aContentID,
|
2000-01-14 09:28:54 +00:00
|
|
|
nsIPresState* aState,
|
1999-09-15 02:30:39 +00:00
|
|
|
nsIStatefulFrame::StateType aStateType = nsIStatefulFrame::eNoType);
|
1999-08-30 22:38:58 +00:00
|
|
|
NS_IMETHOD GetState(PRUint32 aContentID,
|
2000-01-14 09:28:54 +00:00
|
|
|
nsIPresState** aState,
|
1999-09-15 02:30:39 +00:00
|
|
|
nsIStatefulFrame::StateType aStateType = nsIStatefulFrame::eNoType);
|
2000-01-14 09:28:54 +00:00
|
|
|
NS_IMETHOD RemoveState(PRUint32 aContentID,
|
|
|
|
nsIStatefulFrame::StateType aStateType = nsIStatefulFrame::eNoType);
|
|
|
|
|
1999-08-30 22:38:58 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
nsSupportsHashtable mStates;
|
|
|
|
};
|
|
|
|
|
1999-09-03 22:10:57 +00:00
|
|
|
|
1999-08-30 22:38:58 +00:00
|
|
|
nsresult
|
|
|
|
NS_NewLayoutHistoryState(nsILayoutHistoryState** aState)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aState != nsnull, "null ptr");
|
|
|
|
if (! aState)
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
|
|
|
|
*aState = new nsLayoutHistoryState();
|
|
|
|
if (! *aState)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
NS_ADDREF(*aState);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsLayoutHistoryState::nsLayoutHistoryState()
|
|
|
|
{
|
|
|
|
NS_INIT_REFCNT();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsLayoutHistoryState::~nsLayoutHistoryState()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS(nsLayoutHistoryState,
|
2000-02-02 22:24:56 +00:00
|
|
|
NS_GET_IID(nsILayoutHistoryState));
|
1999-08-30 22:38:58 +00:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsLayoutHistoryState::AddState(PRUint32 aContentID,
|
2000-01-14 09:28:54 +00:00
|
|
|
nsIPresState* aState,
|
1999-09-15 02:30:39 +00:00
|
|
|
nsIStatefulFrame::StateType aStateType)
|
1999-08-30 22:38:58 +00:00
|
|
|
{
|
1999-09-15 02:30:39 +00:00
|
|
|
HistoryKey key(aContentID, aStateType);
|
2000-06-06 22:06:56 +00:00
|
|
|
/*
|
|
|
|
* nsSupportsHashtable::Put() returns false when no object has been
|
|
|
|
* replaced when inserting the new one, true if it some one was.
|
|
|
|
*
|
1999-09-15 02:30:39 +00:00
|
|
|
*/
|
2000-06-06 22:06:56 +00:00
|
|
|
PRBool replaced = mStates.Put (&key, aState);
|
|
|
|
if (replaced)
|
|
|
|
{
|
2000-10-28 22:17:53 +00:00
|
|
|
// done this way by indication of warren@netscape.com [ipg]
|
|
|
|
#if 0
|
|
|
|
printf("nsLayoutHistoryState::AddState OOPS!. There was already a state in the hash table for the key\n");
|
|
|
|
#endif
|
1999-09-15 02:30:39 +00:00
|
|
|
}
|
|
|
|
|
2000-06-06 22:06:56 +00:00
|
|
|
return NS_OK;
|
1999-08-30 22:38:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsLayoutHistoryState::GetState(PRUint32 aContentID,
|
2000-01-14 09:28:54 +00:00
|
|
|
nsIPresState** aState,
|
1999-09-15 02:30:39 +00:00
|
|
|
nsIStatefulFrame::StateType aStateType)
|
1999-08-30 22:38:58 +00:00
|
|
|
{
|
1999-09-15 02:30:39 +00:00
|
|
|
nsresult rv = NS_OK;
|
|
|
|
HistoryKey key(aContentID, aStateType);
|
2000-06-06 22:06:56 +00:00
|
|
|
nsISupports *state = nsnull;
|
1999-09-15 02:30:39 +00:00
|
|
|
state = mStates.Get(&key);
|
|
|
|
if (state) {
|
2000-01-14 09:28:54 +00:00
|
|
|
*aState = (nsIPresState *)state;
|
1999-09-15 02:30:39 +00:00
|
|
|
}
|
|
|
|
else {
|
2000-10-28 22:17:53 +00:00
|
|
|
#if 0
|
|
|
|
printf("nsLayoutHistoryState::GetState, ERROR getting History state for the key\n");
|
|
|
|
#endif
|
1999-09-15 02:30:39 +00:00
|
|
|
*aState = nsnull;
|
2000-01-25 06:35:27 +00:00
|
|
|
rv = NS_OK;
|
1999-09-15 02:30:39 +00:00
|
|
|
}
|
1999-09-03 22:10:57 +00:00
|
|
|
return rv;
|
1999-08-30 22:38:58 +00:00
|
|
|
}
|
2000-01-14 09:28:54 +00:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsLayoutHistoryState::RemoveState(PRUint32 aContentID,
|
|
|
|
nsIStatefulFrame::StateType aStateType)
|
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
HistoryKey key(aContentID, aStateType);
|
2000-06-06 22:06:56 +00:00
|
|
|
mStates.Remove(&key);
|
2000-01-14 09:28:54 +00:00
|
|
|
return rv;
|
|
|
|
}
|