blob: 6b63d3413fa6d0f61b9fe0061fbd8e90cf5899ef [file] [log] [blame]
Torne (Richard Coles)5c87bf82012-11-14 11:46:17 +00001/*
2 * Copyright (C) 2009 Google 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 are
6 * met:
7 *
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
13 * distribution.
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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.
29 */
30
31#ifndef WebPopupMenuImpl_h
32#define WebPopupMenuImpl_h
33
Torne (Richard Coles)5c87bf82012-11-14 11:46:17 +000034#include "WebPopupMenu.h"
Torne (Richard Coles)09380292014-02-21 12:17:33 +000035#include "platform/scroll/FramelessScrollViewClient.h"
36#include "public/platform/WebContentLayerClient.h"
Torne (Richard Coles)5267f702013-06-11 10:57:24 +010037#include "public/platform/WebPoint.h"
38#include "public/platform/WebSize.h"
Ben Murdoch591b9582013-07-10 11:41:44 +010039#include "wtf/OwnPtr.h"
40#include "wtf/RefCounted.h"
Torne (Richard Coles)5c87bf82012-11-14 11:46:17 +000041
42namespace WebCore {
Torne (Richard Coles)d5428f32014-03-18 10:21:16 +000043class LocalFrame;
Torne (Richard Coles)5c87bf82012-11-14 11:46:17 +000044class FramelessScrollView;
45class KeyboardEvent;
46class Page;
Torne (Richard Coles)5c87bf82012-11-14 11:46:17 +000047class PlatformKeyboardEvent;
48class Range;
49class Widget;
50}
51
Torne (Richard Coles)51b29062013-11-28 11:56:03 +000052namespace blink {
Torne (Richard Coles)09380292014-02-21 12:17:33 +000053class WebContentLayer;
Torne (Richard Coles)5c87bf82012-11-14 11:46:17 +000054class WebGestureEvent;
55class WebKeyboardEvent;
Torne (Richard Coles)09380292014-02-21 12:17:33 +000056class WebLayerTreeView;
Torne (Richard Coles)5c87bf82012-11-14 11:46:17 +000057class WebMouseEvent;
58class WebMouseWheelEvent;
59class WebRange;
60struct WebRect;
61class WebTouchEvent;
62
Torne (Richard Coles)09380292014-02-21 12:17:33 +000063class WebPopupMenuImpl : public WebPopupMenu, public WebCore::FramelessScrollViewClient, public WebContentLayerClient, public RefCounted<WebPopupMenuImpl> {
Torne (Richard Coles)5c87bf82012-11-14 11:46:17 +000064 WTF_MAKE_FAST_ALLOCATED;
65public:
66 // WebWidget functions:
Torne (Richard Coles)09380292014-02-21 12:17:33 +000067 virtual void close() OVERRIDE FINAL;
68 virtual WebSize size() OVERRIDE FINAL { return m_size; }
69 virtual void willStartLiveResize() OVERRIDE FINAL;
70 virtual void resize(const WebSize&) OVERRIDE FINAL;
71 virtual void willEndLiveResize() OVERRIDE FINAL;
72 virtual void animate(double frameBeginTime) OVERRIDE FINAL;
73 virtual void layout() OVERRIDE FINAL;
74 virtual void enterForceCompositingMode(bool enable) OVERRIDE FINAL;
75 virtual void didExitCompositingMode() OVERRIDE FINAL;
76 virtual void paint(WebCanvas*, const WebRect&, PaintOptions = ReadbackFromCompositorIfAvailable) OVERRIDE FINAL;
77 virtual void themeChanged() OVERRIDE FINAL;
78 virtual bool handleInputEvent(const WebInputEvent&) OVERRIDE FINAL;
79 virtual void mouseCaptureLost() OVERRIDE FINAL;
80 virtual void setFocus(bool enable) OVERRIDE FINAL;
Torne (Richard Coles)5c87bf82012-11-14 11:46:17 +000081 virtual bool setComposition(
82 const WebString& text,
83 const WebVector<WebCompositionUnderline>& underlines,
Torne (Richard Coles)09380292014-02-21 12:17:33 +000084 int selectionStart, int selectionEnd) OVERRIDE FINAL;
85 virtual bool confirmComposition() OVERRIDE FINAL;
86 virtual bool confirmComposition(ConfirmCompositionBehavior selectionBehavior) OVERRIDE FINAL;
87 virtual bool confirmComposition(const WebString& text) OVERRIDE FINAL;
88 virtual bool compositionRange(size_t* location, size_t* length) OVERRIDE FINAL;
89 virtual bool caretOrSelectionRange(size_t* location, size_t* length) OVERRIDE FINAL;
90 virtual void setTextDirection(WebTextDirection) OVERRIDE FINAL;
91 virtual bool isAcceleratedCompositingActive() const OVERRIDE FINAL { return false; }
92 virtual bool isPopupMenu() const OVERRIDE FINAL { return true; }
93 virtual void willCloseLayerTreeView() OVERRIDE FINAL;
94
95 // WebContentLayerClient
96 virtual void paintContents(WebCanvas*, const WebRect& clip, bool canPaintLCDTest, WebFloatRect& opaque) OVERRIDE FINAL;
Torne (Richard Coles)5c87bf82012-11-14 11:46:17 +000097
98 // WebPopupMenuImpl
Torne (Richard Coles)926b0012013-03-28 15:32:48 +000099 void initialize(WebCore::FramelessScrollView* widget, const WebRect& bounds);
Torne (Richard Coles)5c87bf82012-11-14 11:46:17 +0000100
101 WebWidgetClient* client() { return m_client; }
102
103 void handleMouseMove(const WebMouseEvent&);
104 void handleMouseLeave(const WebMouseEvent&);
105 void handleMouseDown(const WebMouseEvent&);
106 void handleMouseUp(const WebMouseEvent&);
107 void handleMouseDoubleClick(const WebMouseEvent&);
108 void handleMouseWheel(const WebMouseWheelEvent&);
109 bool handleGestureEvent(const WebGestureEvent&);
110 bool handleTouchEvent(const WebTouchEvent&);
111 bool handleKeyEvent(const WebKeyboardEvent&);
112
113 protected:
114 friend class WebPopupMenu; // For WebPopupMenu::create.
115 friend class WTF::RefCounted<WebPopupMenuImpl>;
116
117 WebPopupMenuImpl(WebWidgetClient*);
118 ~WebPopupMenuImpl();
119
120 // WebCore::HostWindow methods:
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000121 virtual void invalidateContentsAndRootView(const WebCore::IntRect&) OVERRIDE FINAL;
122 virtual void invalidateContentsForSlowScroll(const WebCore::IntRect&) OVERRIDE FINAL;
123 virtual void scheduleAnimation() OVERRIDE FINAL;
Torne (Richard Coles)5c87bf82012-11-14 11:46:17 +0000124 virtual void scroll(
125 const WebCore::IntSize& scrollDelta, const WebCore::IntRect& scrollRect,
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000126 const WebCore::IntRect& clipRect) OVERRIDE FINAL;
127 virtual WebCore::IntRect rootViewToScreen(const WebCore::IntRect&) const OVERRIDE FINAL;
128 virtual WebScreenInfo screenInfo() const OVERRIDE FINAL;
Torne (Richard Coles)5c87bf82012-11-14 11:46:17 +0000129
130 // WebCore::FramelessScrollViewClient methods:
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000131 virtual void popupClosed(WebCore::FramelessScrollView*) OVERRIDE FINAL;
Torne (Richard Coles)5c87bf82012-11-14 11:46:17 +0000132
133 WebWidgetClient* m_client;
134 WebSize m_size;
135
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000136 WebLayerTreeView* m_layerTreeView;
137 OwnPtr<WebContentLayer> m_rootLayer;
138 bool m_isAcceleratedCompositingActive;
139
Torne (Richard Coles)5c87bf82012-11-14 11:46:17 +0000140 WebPoint m_lastMousePosition;
141
142 // This is a non-owning ref. The popup will notify us via popupClosed()
143 // before it is destroyed.
144 WebCore::FramelessScrollView* m_widget;
145};
146
Torne (Richard Coles)09380292014-02-21 12:17:33 +0000147DEFINE_TYPE_CASTS(WebPopupMenuImpl, WebWidget, widget, widget->isPopupMenu(), widget.isPopupMenu());
148// WebPopupMenuImpl is the only implementation of FramelessScrollViewClient, so
149// no need for further checking.
150DEFINE_TYPE_CASTS(WebPopupMenuImpl, WebCore::FramelessScrollViewClient, client, true, true);
Torne (Richard Coles)1e202182013-10-18 15:46:42 +0100151
Torne (Richard Coles)51b29062013-11-28 11:56:03 +0000152} // namespace blink
Torne (Richard Coles)5c87bf82012-11-14 11:46:17 +0000153
154#endif