Merge "[Release] Webkit2-efl-123997_0.11.65" into tizen_2.2
[framework/web/webkit-efl.git] / Source / WebKit2 / Shared / EditorState.cpp
1 /*
2  * Copyright (C) 2010, 2011 Apple 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
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
14  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
17  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23  * THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #include "config.h"
27 #include "EditorState.h"
28
29 #include "Arguments.h"
30 #include "WebCoreArgumentCoders.h"
31
32 namespace WebKit {
33
34 void EditorState::encode(CoreIPC::ArgumentEncoder* encoder) const
35 {
36     encoder->encode(shouldIgnoreCompositionSelectionChange);
37     encoder->encode(selectionIsNone);
38     encoder->encode(selectionIsRange);
39     encoder->encode(isContentEditable);
40     encoder->encode(isContentRichlyEditable);
41     encoder->encode(isInPasswordField);
42     encoder->encode(hasComposition);
43
44 #if ENABLE(TIZEN_ISF_PORT)
45     encoder->encode(isTapEventHandling);
46     encoder->encode(inputMethodContextID);
47     encoder->encode(inputMethodHints);
48     encoder->encode(surroundingText);
49     encoder->encode(cursorPosition);
50 #endif
51
52 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
53     encoder->encode(editorRect);
54     encoder->encode(updateEditorRectOnly);
55 #if ENABLE(TIZEN_WEBKIT2_GET_TEXT_STYLE_FOR_SELECTION)
56     encoder->encode(bgColor);
57     encoder->encode(color);
58 #endif
59 #endif
60
61 #if PLATFORM(QT)
62     encoder->encode(cursorPosition);
63     encoder->encode(anchorPosition);
64     encoder->encode(editorRect);
65     encoder->encode(cursorRect);
66     encoder->encode(compositionRect);
67     encoder->encode(inputMethodHints);
68     encoder->encode(selectedText);
69     encoder->encode(surroundingText);
70 #endif
71 }
72
73 bool EditorState::decode(CoreIPC::ArgumentDecoder* decoder, EditorState& result)
74 {
75     if (!decoder->decode(result.shouldIgnoreCompositionSelectionChange))
76         return false;
77
78     if (!decoder->decode(result.selectionIsNone))
79         return false;
80
81     if (!decoder->decode(result.selectionIsRange))
82         return false;
83
84     if (!decoder->decode(result.isContentEditable))
85         return false;
86
87     if (!decoder->decode(result.isContentRichlyEditable))
88         return false;
89
90     if (!decoder->decode(result.isInPasswordField))
91         return false;
92
93     if (!decoder->decode(result.hasComposition))
94         return false;
95
96 #if ENABLE(TIZEN_ISF_PORT)
97     if (!decoder->decode(result.isTapEventHandling))
98         return false;
99
100     if (!decoder->decode(result.inputMethodContextID))
101         return false;
102
103     if (!decoder->decode(result.inputMethodHints))
104         return false;
105
106     if (!decoder->decode(result.surroundingText))
107         return false;
108
109     if (!decoder->decode(result.cursorPosition))
110         return false;
111 #endif
112
113 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
114     if (!decoder->decode(result.editorRect))
115         return false;
116
117     if (!decoder->decode(result.updateEditorRectOnly))
118         return false;
119
120 #if ENABLE(TIZEN_WEBKIT2_GET_TEXT_STYLE_FOR_SELECTION)
121     if (!decoder->decode(result.bgColor))
122         return false;
123
124     if (!decoder->decode(result.color))
125         return false;
126 #endif
127 #endif
128
129 #if PLATFORM(QT)
130     if (!decoder->decode(result.cursorPosition))
131         return false;
132
133     if (!decoder->decode(result.anchorPosition))
134         return false;
135
136     if (!decoder->decode(result.editorRect))
137         return false;
138
139     if (!decoder->decode(result.cursorRect))
140         return false;
141
142     if (!decoder->decode(result.compositionRect))
143         return false;
144
145     if (!decoder->decode(result.inputMethodHints))
146         return false;
147
148     if (!decoder->decode(result.selectedText))
149         return false;
150
151     if (!decoder->decode(result.surroundingText))
152         return false;
153 #endif
154
155     return true;
156 }
157
158 }