| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 | 155 |
| 156 // Called to inform the WebWidget to confirm an ongoing composition. | 156 // Called to inform the WebWidget to confirm an ongoing composition. |
| 157 // This method is same as confirmComposition(WebString()); | 157 // This method is same as confirmComposition(WebString()); |
| 158 // Returns true if there is an ongoing composition. | 158 // Returns true if there is an ongoing composition. |
| 159 virtual bool confirmComposition() { return false; } // Deprecated | 159 virtual bool confirmComposition() { return false; } // Deprecated |
| 160 virtual bool confirmComposition(ConfirmCompositionBehavior selectionBehavior
) { return false; } | 160 virtual bool confirmComposition(ConfirmCompositionBehavior selectionBehavior
) { return false; } |
| 161 | 161 |
| 162 // Called to inform the WebWidget to confirm an ongoing composition with a | 162 // Called to inform the WebWidget to confirm an ongoing composition with a |
| 163 // new composition text. If the text is empty then the current composition | 163 // new composition text. If the text is empty then the current composition |
| 164 // text is confirmed. If there is no ongoing composition, then deletes the | 164 // text is confirmed. If there is no ongoing composition, then deletes the |
| 165 // current selection and inserts the text. This method has no effect if | 165 // current selection and inserts the text. This method will change the |
| 166 // selection according to relativeCaretPosition, which is relative to the |
| 167 // end of the composing or inserting text.This method has no effect if |
| 166 // there is no ongoing composition and the text is empty. | 168 // there is no ongoing composition and the text is empty. |
| 167 // Returns true if there is an ongoing composition or the text is inserted. | 169 // Returns true if there is an ongoing composition or the text is inserted. |
| 168 virtual bool confirmComposition(const WebString& text) { return false; } | 170 virtual bool confirmComposition(const WebString& text, int relativeCaretPosi
tion) { return false; } |
| 169 | 171 |
| 170 // Fetches the character range of the current composition, also called the | 172 // Fetches the character range of the current composition, also called the |
| 171 // "marked range." Returns true and fills the out-paramters on success; | 173 // "marked range." Returns true and fills the out-paramters on success; |
| 172 // returns false on failure. | 174 // returns false on failure. |
| 173 virtual bool compositionRange(size_t* location, size_t* length) { return fal
se; } | 175 virtual bool compositionRange(size_t* location, size_t* length) { return fal
se; } |
| 174 | 176 |
| 175 // Returns information about the current text input of this WebWidget. | 177 // Returns information about the current text input of this WebWidget. |
| 176 // Note that this query can be expensive for long fields, as it returns the | 178 // Note that this query can be expensive for long fields, as it returns the |
| 177 // plain-text representation of the current editable element. Consider using | 179 // plain-text representation of the current editable element. Consider using |
| 178 // the lighter-weight textInputType() when appropriate. | 180 // the lighter-weight textInputType() when appropriate. |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 // Applies the range from |start| to |start + length| on the foucsed frame s
o that the text will later be replaced. | 257 // Applies the range from |start| to |start + length| on the foucsed frame s
o that the text will later be replaced. |
| 256 virtual void applyReplacementRange(int start, int length) {} | 258 virtual void applyReplacementRange(int start, int length) {} |
| 257 | 259 |
| 258 protected: | 260 protected: |
| 259 ~WebWidget() { } | 261 ~WebWidget() { } |
| 260 }; | 262 }; |
| 261 | 263 |
| 262 } // namespace blink | 264 } // namespace blink |
| 263 | 265 |
| 264 #endif | 266 #endif |
| OLD | NEW |