~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/editor/libeditor/base/ChangeAttributeTxn.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 
2
/* ***** BEGIN LICENSE BLOCK *****
 
3
 * Version: NPL 1.1/GPL 2.0/LGPL 2.1
 
4
 *
 
5
 * The contents of this file are subject to the Netscape Public License
 
6
 * Version 1.1 (the "License"); you may not use this file except in
 
7
 * compliance with the License. You may obtain a copy of the License at
 
8
 * http://www.mozilla.org/NPL/
 
9
 *
 
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.
 
14
 *
 
15
 * The Original Code is mozilla.org code.
 
16
 *
 
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.
 
21
 *
 
22
 * Contributor(s):
 
23
 *
 
24
 *
 
25
 * Alternatively, the contents of this file may be used under the terms of
 
26
 * either the GNU General Public License Version 2 or later (the "GPL"), or
 
27
 * 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 NPL, 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 NPL, the GPL or the LGPL.
 
36
 *
 
37
 * ***** END LICENSE BLOCK ***** */
 
38
 
 
39
#include "ChangeAttributeTxn.h"
 
40
#include "nsIDOMElement.h"
 
41
 
 
42
ChangeAttributeTxn::ChangeAttributeTxn()
 
43
  : EditTxn()
 
44
{
 
45
}
 
46
 
 
47
ChangeAttributeTxn::~ChangeAttributeTxn()
 
48
{
 
49
}
 
50
 
 
51
NS_IMETHODIMP ChangeAttributeTxn::Init(nsIEditor      *aEditor,
 
52
                                       nsIDOMElement  *aElement,
 
53
                                       const nsAString& aAttribute,
 
54
                                       const nsAString& aValue,
 
55
                                       PRBool aRemoveAttribute)
 
56
{
 
57
  NS_ASSERTION(aEditor && aElement, "bad arg");
 
58
  if (!aEditor || !aElement) { return NS_ERROR_NULL_POINTER; }
 
59
 
 
60
  mEditor = aEditor;
 
61
  mElement = do_QueryInterface(aElement);
 
62
  mAttribute = aAttribute;
 
63
  mValue = aValue;
 
64
  mRemoveAttribute = aRemoveAttribute;
 
65
  mAttributeWasSet=PR_FALSE;
 
66
  mUndoValue.Truncate();
 
67
  return NS_OK;
 
68
}
 
69
 
 
70
NS_IMETHODIMP ChangeAttributeTxn::DoTransaction(void)
 
71
{
 
72
  NS_ASSERTION(mEditor && mElement, "bad state");
 
73
  if (!mEditor || !mElement) { return NS_ERROR_NOT_INITIALIZED; }
 
74
 
 
75
  // need to get the current value of the attribute and save it, and set mAttributeWasSet
 
76
  nsresult result = mEditor->GetAttributeValue(mElement, mAttribute, mUndoValue, &mAttributeWasSet);
 
77
  // XXX: hack until attribute-was-set code is implemented
 
78
  if (!mUndoValue.IsEmpty())
 
79
    mAttributeWasSet = PR_TRUE;
 
80
  // XXX: end hack
 
81
  
 
82
  // now set the attribute to the new value
 
83
  if (!mRemoveAttribute)
 
84
    result = mElement->SetAttribute(mAttribute, mValue);
 
85
  else
 
86
    result = mElement->RemoveAttribute(mAttribute);
 
87
 
 
88
  return result;
 
89
}
 
90
 
 
91
NS_IMETHODIMP ChangeAttributeTxn::UndoTransaction(void)
 
92
{
 
93
  NS_ASSERTION(mEditor && mElement, "bad state");
 
94
  if (!mEditor || !mElement) { return NS_ERROR_NOT_INITIALIZED; }
 
95
 
 
96
  nsresult result;
 
97
  if (mAttributeWasSet)
 
98
    result = mElement->SetAttribute(mAttribute, mUndoValue);
 
99
  else
 
100
    result = mElement->RemoveAttribute(mAttribute);
 
101
 
 
102
  return result;
 
103
}
 
104
 
 
105
NS_IMETHODIMP ChangeAttributeTxn::RedoTransaction(void)
 
106
{
 
107
  NS_ASSERTION(mEditor && mElement, "bad state");
 
108
  if (!mEditor || !mElement) { return NS_ERROR_NOT_INITIALIZED; }
 
109
 
 
110
  nsresult result;
 
111
  if (!mRemoveAttribute)
 
112
    result = mElement->SetAttribute(mAttribute, mValue);
 
113
  else
 
114
    result = mElement->RemoveAttribute(mAttribute);
 
115
 
 
116
  return result;
 
117
}
 
118
 
 
119
NS_IMETHODIMP ChangeAttributeTxn::Merge(nsITransaction *aTransaction, PRBool *aDidMerge)
 
120
{
 
121
  if (aDidMerge)
 
122
    *aDidMerge=PR_FALSE;
 
123
  return NS_OK;
 
124
}
 
125
 
 
126
NS_IMETHODIMP ChangeAttributeTxn::GetTxnDescription(nsAString& aString)
 
127
{
 
128
  aString.Assign(NS_LITERAL_STRING("ChangeAttributeTxn: [mRemoveAttribute == "));
 
129
 
 
130
  if (!mRemoveAttribute)
 
131
    aString += NS_LITERAL_STRING("false] ");
 
132
  else
 
133
    aString += NS_LITERAL_STRING("true] ");
 
134
  aString += mAttribute;
 
135
  return NS_OK;
 
136
}