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" |
38 | 37 |
39 namespace blink { | 38 namespace blink { |
40 | 39 |
41 class LocalDOMWindow; | 40 class InputMethodController; |
42 class ExecutionContext; | 41 class LocalFrame; |
| 42 class WebLocalFrameImpl; |
| 43 class WebPlugin; |
| 44 class WebString; |
43 | 45 |
44 class DOMVisualViewport final : public EventTargetWithInlineData { | 46 class WebInputMethodControllerImpl : public WebInputMethodController { |
45 DEFINE_WRAPPERTYPEINFO(); | 47 WTF_MAKE_NONCOPYABLE(WebInputMethodControllerImpl); |
| 48 |
46 public: | 49 public: |
47 static DOMVisualViewport* create(LocalDOMWindow* window) | 50 explicit WebInputMethodControllerImpl(WebLocalFrameImpl* ownerFrame); |
48 { | 51 ~WebInputMethodControllerImpl() override; |
49 return new DOMVisualViewport(window); | |
50 } | |
51 | 52 |
52 ~DOMVisualViewport() override; | 53 static WebInputMethodControllerImpl* fromFrame(LocalFrame*); |
53 | 54 |
54 DECLARE_VIRTUAL_TRACE(); | 55 // WebInputMethodController overrides. |
| 56 bool setComposition( |
| 57 const WebString& text, |
| 58 const WebVector<WebCompositionUnderline>& underlines, |
| 59 int selectionStart, int selectionEnd) override; |
55 | 60 |
56 // EventTarget overrides: | 61 // Used to ask the WebInputMethodController to either delete and ongoing |
57 const AtomicString& interfaceName() const override; | 62 // composition, or insert the specified text, or move the caret according to |
58 ExecutionContext* getExecutionContext() const override; | 63 // relativeCaretPosition. |
| 64 bool commitText(const WebString& text, int relativeCaretPosition) override; |
59 | 65 |
60 double scrollLeft(); | 66 // Called to ask the WebInputMethodController to confirm an ongoing |
61 double scrollTop(); | 67 // composition. |
62 double pageX(); | 68 bool finishComposingText(ConfirmCompositionBehavior selectionBehavior) overr
ide; |
63 double pageY(); | 69 |
64 double clientWidth(); | 70 void setSuppressNextKeypressEvent(bool suppress) { m_suppressNextKeypressEve
nt = suppress; } |
65 double clientHeight(); | 71 |
66 double scale(); | 72 DECLARE_TRACE(); |
67 | 73 |
68 private: | 74 private: |
69 explicit DOMVisualViewport(LocalDOMWindow*); | 75 LocalFrame* frame() const; |
| 76 InputMethodController& inputMethodController() const; |
| 77 WebPlugin* focusedPluginIfInputMethodSupported() const; |
70 | 78 |
71 Member<LocalDOMWindow> m_window; | 79 WeakMember<WebLocalFrameImpl> m_webLocalFrame; |
| 80 bool m_suppressNextKeypressEvent; |
72 }; | 81 }; |
73 | |
74 } // namespace blink | 82 } // namespace blink |
75 | 83 |
76 #endif // DOMVisualViewport_h | 84 #endif |
OLD | NEW |