adfc0e52ceeca04ca95c171a74f532a9283ebc9e
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / page / ContextMenuController.cpp
1 /*
2  * Copyright (C) 2006, 2007 Apple Inc. All rights reserved.
3  * Copyright (C) 2010 Igalia S.L
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
15  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
18  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
19  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
20  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
21  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
22  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26
27 #include "config.h"
28 #include "core/page/ContextMenuController.h"
29
30 #include "core/dom/Document.h"
31 #include "core/events/Event.h"
32 #include "core/events/MouseEvent.h"
33 #include "core/dom/Node.h"
34 #include "core/frame/LocalFrame.h"
35 #include "core/page/ContextMenuClient.h"
36 #include "core/page/ContextMenuProvider.h"
37 #include "core/page/EventHandler.h"
38 #include "platform/ContextMenu.h"
39 #include "platform/ContextMenuItem.h"
40
41 namespace WebCore {
42
43 ContextMenuController::ContextMenuController(Page*, ContextMenuClient* client)
44     : m_client(client)
45 {
46     ASSERT_ARG(client, client);
47 }
48
49 ContextMenuController::~ContextMenuController()
50 {
51 }
52
53 PassOwnPtrWillBeRawPtr<ContextMenuController> ContextMenuController::create(Page* page, ContextMenuClient* client)
54 {
55     return adoptPtrWillBeNoop(new ContextMenuController(page, client));
56 }
57
58 void ContextMenuController::trace(Visitor* visitor)
59 {
60     visitor->trace(m_hitTestResult);
61 }
62
63 void ContextMenuController::clearContextMenu()
64 {
65     m_contextMenu.clear();
66     if (m_menuProvider)
67         m_menuProvider->contextMenuCleared();
68     m_menuProvider = nullptr;
69     m_client->clearContextMenu();
70     m_hitTestResult = HitTestResult();
71 }
72
73 void ContextMenuController::documentDetached(Document* document)
74 {
75     if (Node* innerNode = m_hitTestResult.innerNode()) {
76         // Invalidate the context menu info if its target document is detached.
77         if (innerNode->document() == document)
78             clearContextMenu();
79     }
80 }
81
82 void ContextMenuController::handleContextMenuEvent(Event* event)
83 {
84     m_contextMenu = createContextMenu(event);
85     if (!m_contextMenu)
86         return;
87
88     showContextMenu(event);
89 }
90
91 void ContextMenuController::showContextMenu(Event* event, PassRefPtr<ContextMenuProvider> menuProvider)
92 {
93     m_menuProvider = menuProvider;
94
95     m_contextMenu = createContextMenu(event);
96     if (!m_contextMenu) {
97         clearContextMenu();
98         return;
99     }
100
101     m_menuProvider->populateContextMenu(m_contextMenu.get());
102     showContextMenu(event);
103 }
104
105 PassOwnPtr<ContextMenu> ContextMenuController::createContextMenu(Event* event)
106 {
107     ASSERT(event);
108
109     if (!event->isMouseEvent())
110         return nullptr;
111
112     MouseEvent* mouseEvent = toMouseEvent(event);
113     HitTestResult result(mouseEvent->absoluteLocation());
114
115     if (LocalFrame* frame = event->target()->toNode()->document().frame())
116         result = frame->eventHandler().hitTestResultAtPoint(mouseEvent->absoluteLocation(), HitTestRequest::ReadOnly | HitTestRequest::Active | HitTestRequest::ConfusingAndOftenMisusedDisallowShadowContent);
117
118     if (!result.innerNonSharedNode())
119         return nullptr;
120
121     m_hitTestResult = result;
122
123     return adoptPtr(new ContextMenu);
124 }
125
126 void ContextMenuController::showContextMenu(Event* event)
127 {
128     m_client->showContextMenu(m_contextMenu.get());
129     event->setDefaultHandled();
130 }
131
132 void ContextMenuController::contextMenuItemSelected(const ContextMenuItem* item)
133 {
134     ASSERT(item->type() == ActionType || item->type() == CheckableActionType);
135
136     if (item->action() < ContextMenuItemBaseCustomTag || item->action() > ContextMenuItemLastCustomTag)
137         return;
138
139     ASSERT(m_menuProvider);
140     m_menuProvider->contextMenuItemSelected(item);
141 }
142
143 } // namespace WebCore