Fix the incorrect behavior touch sound on single tap event.
[framework/web/webkit-efl.git] / Source / WebCore / editing / UndoManager.cpp
1 /*
2  * Copyright (C) 2012 Google Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  *     * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *     * Redistributions in binary form must reproduce the above
11  * copyright notice, this list of conditions and the following disclaimer
12  * in the documentation and/or other materials provided with the
13  * distribution.
14  *     * Neither the name of Google Inc. nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #include "config.h"
32 #include "UndoManager.h"
33
34 #if ENABLE(UNDO_MANAGER)
35
36 #include "Element.h"
37 #include "Node.h"
38
39 namespace WebCore {
40
41 PassRefPtr<UndoManager> UndoManager::create(Node* host)
42 {
43     return adoptRef(new UndoManager(host));
44 }
45
46 UndoManager::UndoManager(Node* host)
47     : m_undoScopeHost(host)
48 {
49 }
50
51 void UndoManager::disconnect()
52 {
53     m_undoScopeHost = 0;
54 }
55
56 void UndoManager::transact(const Dictionary&, bool, ExceptionCode& ec)
57 {
58     if (!isConnected()) {
59         ec = INVALID_ACCESS_ERR;
60         return;
61     }
62     RefPtr<UndoStep> step;
63     m_undoStack.append(step);
64 }
65
66 void UndoManager::undo(ExceptionCode& ec)
67 {
68     if (!isConnected()) {
69         ec = INVALID_ACCESS_ERR;
70         return;
71     }
72 }
73
74 void UndoManager::redo(ExceptionCode& ec)
75 {
76     if (!isConnected()) {
77         ec = INVALID_ACCESS_ERR;
78         return;
79     }
80 }
81
82 void UndoManager::clearUndo(ExceptionCode& ec)
83 {
84     if (!isConnected()) {
85         ec = INVALID_ACCESS_ERR;
86         return;
87     }
88     m_undoStack.clear();
89 }
90
91 void UndoManager::clearRedo(ExceptionCode& ec)
92 {
93     if (!isConnected()) {
94         ec = INVALID_ACCESS_ERR;
95         return;
96     }
97     m_redoStack.clear();
98 }
99
100 void UndoManager::clearUndoRedo()
101 {
102     m_undoStack.clear();
103     m_redoStack.clear();
104 }
105
106 bool UndoManager::isConnected()
107 {
108     if (!m_undoScopeHost)
109         return false;
110     if (!m_undoScopeHost->isElementNode())
111         return true;
112     Element* element = toElement(m_undoScopeHost);
113     ASSERT(element->undoScope());
114     if (element->isContentEditable() && !element->isRootEditableElement()) {
115         element->disconnectUndoManager();
116         return false;
117     }
118     return true;
119 }
120
121 }
122
123 #endif