Cancel composition when focused node was changed
[framework/web/webkit-efl.git] / Source / WebKit2 / WebProcess / WebCoreSupport / WebSearchPopupMenu.cpp
1 /*
2  * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
3  * Copyright (C) 2010, 2011 Apple Inc. All rights reserved.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public License
16  * along with this library; see the file COPYING.LIB.  If not, write to
17  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  *
20  */
21
22
23 #include "config.h"
24 #include "WebSearchPopupMenu.h"
25
26 #include "WebPage.h"
27 #include "WebPageProxyMessages.h"
28 #include "WebProcess.h"
29 #include <wtf/text/AtomicString.h>
30
31 using namespace WebCore;
32
33 namespace WebKit {
34
35 PassRefPtr<WebSearchPopupMenu> WebSearchPopupMenu::create(WebPage* page, PopupMenuClient* client)
36 {
37     return adoptRef(new WebSearchPopupMenu(page, client));
38 }
39
40 WebSearchPopupMenu::WebSearchPopupMenu(WebPage* page, PopupMenuClient* client)
41     : m_popup(WebPopupMenu::create(page, client))
42 {
43 }
44
45 PopupMenu* WebSearchPopupMenu::popupMenu()
46 {
47     return m_popup.get();
48 }
49
50 void WebSearchPopupMenu::saveRecentSearches(const AtomicString& name, const Vector<String>& searchItems)
51 {
52     if (name.isEmpty())
53         return;
54
55     WebPage* page = m_popup->page();
56     if (!page)
57         return;
58
59     WebProcess::shared().connection()->send(Messages::WebPageProxy::SaveRecentSearches(name, searchItems), page->pageID());
60 }
61
62 void WebSearchPopupMenu::loadRecentSearches(const AtomicString& name, Vector<String>& resultItems)
63 {
64     if (name.isEmpty())
65         return;
66
67     WebPage* page = m_popup->page();
68     if (!page)
69         return;
70
71     WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::LoadRecentSearches(name), Messages::WebPageProxy::LoadRecentSearches::Reply(resultItems), page->pageID());
72 }
73
74 bool WebSearchPopupMenu::enabled()
75 {
76     return true;
77 }
78
79 } // namespace WebKit