gecko-dev/editor/base/JoinTableCellsTxn.h

105 строки
2.9 KiB
C++

/* -*- 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 JoinTableCells_h__
#define JoinTableCells_h__
#include "EditTxn.h"
#include "nsIEditor.h"
#include "nsIDOMCharacterData.h"
#include "nsCOMPtr.h"
#define JOIN_CELLS_TXN_IID \
{/*50956DE6-C843-11d2-B1C3-004095E27A10*/ \
0x50956de6, 0xc843, 0x11d2, \
{ 0xb1, 0xc3, 0x0, 0x40, 0x95, 0xe2, 0x7a, 0x10 } }
class nsIPresShell;
/**
* A transaction that inserts Table into a content node.
*/
class JoinTableCellsTxn : public EditTxn
{
public:
virtual ~JoinTableCellsTxn();
/** used to name aggregate transactions that consist only of a single JoinTableCellsTxn,
* or a DeleteSelection followed by an JoinTableCellsTxn.
*/
static nsIAtom *gJoinTableCellsTxnName;
/** initialize the transaction
* @param aElement the current content node
* @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:
JoinTableCellsTxn();
public:
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 JoinTableCellsTxn request
NS_IMETHOD QueryInterface(const nsIID& aIID, void** aInstancePtr);
static const nsIID& GetIID() { static nsIID iid = JOIN_CELLS_TXN_IID; return iid; }
/** return the string data associated with this transaction */
// NS_IMETHOD GetData(nsString& aResult);
/** must be called before any JoinTableCellsTxn is instantiated */
static nsresult ClassInit();
protected:
// /* return PR_TRUE if aOtherTxn immediately follows this txn */
// virtual PRBool IsSequentialInsert(JoinTableCellsTxn *aOtherTxn);
/** the element to operate upon */
nsCOMPtr<nsIDOMCharacterData> mElement;
nsIDOMNode *mNodeToInsert;
/** the presentation shell, which we'll need to get the selection */
nsIPresShell* mPresShell;
friend class TransactionFactory;
};
#endif