OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2016 Google Inc. All rights reserved. | 2 * Copyright (C) 2016 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 10 matching lines...) Expand all Loading... |
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 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. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef DOMVisualViewport_h | 31 #ifndef WebInputMethodControllerImpl_h |
32 #define DOMVisualViewport_h | 32 #define WebInputMethodControllerImpl_h |
33 | 33 |
34 #include "bindings/core/v8/ScriptWrappable.h" | |
35 #include "core/dom/ExecutionContext.h" | |
36 #include "core/events/EventTarget.h" | |
37 #include "platform/heap/Handle.h" | 34 #include "platform/heap/Handle.h" |
| 35 #include "public/web/WebCompositionUnderline.h" |
| 36 #include "public/web/WebInputMethodController.h" |
| 37 #include "public/web/WebWidget.h" |
38 | 38 |
39 namespace blink { | 39 namespace blink { |
40 | 40 |
41 class LocalDOMWindow; | 41 class InputMethodController; |
42 class ExecutionContext; | 42 class LocalFrame; |
| 43 class WebLocalFrameImpl; |
| 44 class WebPlugin; |
| 45 class WebString; |
43 | 46 |
44 class DOMVisualViewport final : public EventTargetWithInlineData { | 47 class WebInputMethodControllerImpl : public WebInputMethodController { |
45 DEFINE_WRAPPERTYPEINFO(); | |
46 public: | 48 public: |
47 static DOMVisualViewport* create(LocalDOMWindow* window) | 49 explicit WebInputMethodControllerImpl(WebLocalFrameImpl* ownerFrame); |
48 { | 50 ~WebInputMethodControllerImpl(); |
49 return new DOMVisualViewport(window); | |
50 } | |
51 | 51 |
52 ~DOMVisualViewport() override; | 52 static WebInputMethodControllerImpl* fromFrame(LocalFrame*); |
53 | 53 |
54 DECLARE_VIRTUAL_TRACE(); | 54 // WebInputMethodController overrides. |
| 55 bool setComposition( |
| 56 const WebString& text, |
| 57 const WebVector<WebCompositionUnderline>& underlines, |
| 58 int selectionStart, int selectionEnd) override; |
55 | 59 |
56 // EventTarget overrides: | 60 // Used to ask the WebInputMethodController to either delete and ongoing |
57 const AtomicString& interfaceName() const override; | 61 // composition, or insert the specified text, or move the caret according to |
58 ExecutionContext* getExecutionContext() const override; | 62 // relativeCaretPosition. |
| 63 bool commitText(const WebString& text, int relativeCaretPosition) override; |
59 | 64 |
60 double scrollLeft(); | 65 // Called to ask the WebInputMethodController to confirm an ongoing |
61 double scrollTop(); | 66 // composition. |
62 double pageX(); | 67 bool finishComposingText(WebWidget::ConfirmCompositionBehavior selectionBeha
vior) override; |
63 double pageY(); | 68 |
64 double clientWidth(); | 69 void setSuppressNextKeypressEvent(bool suppress) { m_suppressNextKeypressEve
nt = suppress; } |
65 double clientHeight(); | 70 |
66 double scale(); | 71 DECLARE_TRACE(); |
67 | 72 |
68 private: | 73 private: |
69 explicit DOMVisualViewport(LocalDOMWindow*); | 74 LocalFrame* frame() const; |
| 75 InputMethodController& inputMethodController() const; |
| 76 WebPlugin* focusedPluginIfInputMethodSupported() const; |
70 | 77 |
71 Member<LocalDOMWindow> m_window; | 78 WeakMember<WebLocalFrameImpl> m_webLocalFrame; |
| 79 bool m_suppressNextKeypressEvent; |
72 }; | 80 }; |
73 | |
74 } // namespace blink | 81 } // namespace blink |
75 | 82 |
76 #endif // DOMVisualViewport_h | 83 #endif |
OLD | NEW |