mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-04 10:05:51 +00:00
40 lines
1.1 KiB
C
40 lines
1.1 KiB
C
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||
|
/* 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/. */
|
||
|
|
||
|
#ifndef nsTransactionStack_h__
|
||
|
#define nsTransactionStack_h__
|
||
|
|
||
|
#include <deque>
|
||
|
#include "nsAutoPtr.h"
|
||
|
|
||
|
class nsCycleCollectionTraversalCallback;
|
||
|
class nsTransactionItem;
|
||
|
|
||
|
class nsTransactionStack
|
||
|
{
|
||
|
public:
|
||
|
enum Type { FOR_UNDO, FOR_REDO };
|
||
|
|
||
|
explicit nsTransactionStack(Type aType);
|
||
|
~nsTransactionStack();
|
||
|
|
||
|
void Push(nsTransactionItem *aTransactionItem);
|
||
|
already_AddRefed<nsTransactionItem> Pop();
|
||
|
already_AddRefed<nsTransactionItem> PopBottom();
|
||
|
already_AddRefed<nsTransactionItem> Peek();
|
||
|
already_AddRefed<nsTransactionItem> GetItem(int32_t aIndex);
|
||
|
void Clear();
|
||
|
int32_t GetSize() { return mDeque.size(); }
|
||
|
|
||
|
void DoUnlink() { Clear(); }
|
||
|
void DoTraverse(nsCycleCollectionTraversalCallback &cb);
|
||
|
|
||
|
private:
|
||
|
std::deque<RefPtr<nsTransactionItem> > mDeque;
|
||
|
const Type mType;
|
||
|
};
|
||
|
|
||
|
#endif // nsTransactionStack_h__
|