/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- * * The contents of this file are subject to the Netscape Public License * Version 1.0 (the "NPL"); you may not use this file except in * compliance with the NPL. You may obtain a copy of the NPL at * http://www.mozilla.org/NPL/ * * Software distributed under the NPL is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL * for the specific language governing rights and limitations under the * NPL. * * The Initial Developer of this code under the NPL is Netscape * Communications Corporation. Portions created by Netscape are * Copyright (C) 1998 Netscape Communications Corporation. All Rights * Reserved. */ #ifndef DeleteTableColumn_h__ #define DeleteTableColumn_h__ #include "EditTxn.h" #include "nsIEditor.h" #include "nsIDOMCharacterData.h" #include "nsCOMPtr.h" #define DELETE_COLUMN_TXN_IID \ {/*50956DE4-C843-11d2-B1C3-004095E27A10*/ \ 0x50956de4, 0xc843, 0x11d2, \ { 0xb1, 0xc3, 0x0, 0x40, 0x95, 0xe2, 0x7a, 0x10 } } class nsIPresShell; /** * A transaction that inserts Table into a content node. */ class DeleteTableColumnTxn : public EditTxn { public: /** used to name aggregate transactions that consist only of a single DeleteTableColumnTxn, * or a DeleteSelection followed by an DeleteTableColumnTxn. */ static nsIAtom *gDeleteTableColumnTxnName; /** initialize the transaction * @param aElement the current content node * @param aOffset the location in aElement to do the insertion * @param aNode the new Table to insert * @param aPresShell used to get and set the selection */ NS_IMETHOD Init(nsIDOMCharacterData *aElement, nsIDOMNode *aNode, nsIPresShell* aPresShell); private: DeleteTableColumnTxn(); public: virtual ~DeleteTableColumnTxn(); NS_IMETHOD Do(void); NS_IMETHOD Undo(void); //NS_IMETHOD Merge(PRBool *aDidMerge, nsITransaction *aTransaction); NS_IMETHOD Write(nsIOutputStream *aOutputStream); NS_IMETHOD GetUndoString(nsString **aString); NS_IMETHOD GetRedoString(nsString **aString); // nsISupports declarations // override QueryInterface to handle DeleteTableColumnTxn request NS_IMETHOD QueryInterface(const nsIID& aIID, void** aInstancePtr); static const nsIID& GetIID() { static nsIID iid = DELETE_COLUMN_TXN_IID; return iid; } /** return the string data associated with this transaction */ // NS_IMETHOD GetData(nsString& aResult); /** must be called before any DeleteTableColumnTxn is instantiated */ static nsresult ClassInit(); protected: // /* return PR_TRUE if aOtherTxn immediately follows this txn */ // virtual PRBool IsSequentialInsert(DeleteTableColumnTxn *aOtherTxn); /** the element to operate upon */ nsCOMPtr mElement; /** the element to insert into mElement */ nsIDOMNode *mNodeToInsert; /** the presentation shell, which we'll need to get the selection */ nsIPresShell* mPresShell; friend class TransactionFactory; }; #endif