Fix input picker issue
[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(inputMethodContextID);
46     encoder->encode(inputMethodHints);
47     encoder->encode(surroundingText);
48     encoder->encode(cursorPosition);
49 #endif
50
51 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
52     encoder->encode(editorRect);
53     encoder->encode(updateEditorRectOnly);
54 #if ENABLE(TIZEN_WEBKIT2_GET_TEXT_STYLE_FOR_SELECTION)
55     encoder->encode(underlineState);
56     encoder->encode(italicState);
57     encoder->encode(boldState);
58     encoder->encode(bgColor);
59     encoder->encode(color);
60     encoder->encode(fontSize);
61 #endif
62 #endif
63
64 #if PLATFORM(QT)
65     encoder->encode(cursorPosition);
66     encoder->encode(anchorPosition);
67     encoder->encode(editorRect);
68     encoder->encode(cursorRect);
69     encoder->encode(compositionRect);
70     encoder->encode(inputMethodHints);
71     encoder->encode(selectedText);
72     encoder->encode(surroundingText);
73 #endif
74 }
75
76 bool EditorState::decode(CoreIPC::ArgumentDecoder* decoder, EditorState& result)
77 {
78     if (!decoder->decode(result.shouldIgnoreCompositionSelectionChange))
79         return false;
80
81     if (!decoder->decode(result.selectionIsNone))
82         return false;
83
84     if (!decoder->decode(result.selectionIsRange))
85         return false;
86
87     if (!decoder->decode(result.isContentEditable))
88         return false;
89
90     if (!decoder->decode(result.isContentRichlyEditable))
91         return false;
92
93     if (!decoder->decode(result.isInPasswordField))
94         return false;
95
96     if (!decoder->decode(result.hasComposition))
97         return false;
98
99 #if ENABLE(TIZEN_ISF_PORT)
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.underlineState))
122         return false;
123
124     if (!decoder->decode(result.italicState))
125         return false;
126
127     if (!decoder->decode(result.boldState))
128         return false;
129
130     if (!decoder->decode(result.bgColor))
131         return false;
132
133     if (!decoder->decode(result.color))
134         return false;
135
136     if (!decoder->decode(result.fontSize))
137         return false;
138 #endif
139 #endif
140
141 #if PLATFORM(QT)
142     if (!decoder->decode(result.cursorPosition))
143         return false;
144
145     if (!decoder->decode(result.anchorPosition))
146         return false;
147
148     if (!decoder->decode(result.editorRect))
149         return false;
150
151     if (!decoder->decode(result.cursorRect))
152         return false;
153
154     if (!decoder->decode(result.compositionRect))
155         return false;
156
157     if (!decoder->decode(result.inputMethodHints))
158         return false;
159
160     if (!decoder->decode(result.selectedText))
161         return false;
162
163     if (!decoder->decode(result.surroundingText))
164         return false;
165 #endif
166
167     return true;
168 }
169
170 }