123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- /*
- * Copyright (C) 2006, 2007 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- #include "config.h"
- #include "WebContextMenuClient.h"
- #include "UserGestureIndicator.h"
- #include "WebElementPropertyBag.h"
- #include "WebLocalizableStrings.h"
- #include "WebView.h"
- #include <WebCore/ContextMenu.h>
- #include <WebCore/ContextMenuController.h>
- #include <WebCore/Editor.h>
- #include <WebCore/Event.h>
- #include <WebCore/Frame.h>
- #include <WebCore/FrameLoader.h>
- #include <WebCore/FrameLoadRequest.h>
- #include <WebCore/Page.h>
- #include <WebCore/ResourceRequest.h>
- #include <WebCore/NotImplemented.h>
- using namespace WebCore;
- WebContextMenuClient::WebContextMenuClient(WebView* webView)
- : m_webView(webView)
- {
- }
- void WebContextMenuClient::contextMenuDestroyed()
- {
- delete this;
- }
- PassOwnPtr<ContextMenu> WebContextMenuClient::customizeMenu(PassOwnPtr<ContextMenu> popMenu)
- {
- OwnPtr<ContextMenu> menu = popMenu;
- COMPtr<IWebUIDelegate> uiDelegate;
- if (FAILED(m_webView->uiDelegate(&uiDelegate)))
- return menu.release();
- ASSERT(uiDelegate);
- HMENU nativeMenu = menu->platformContextMenu();
- COMPtr<WebElementPropertyBag> propertyBag;
- propertyBag.adoptRef(WebElementPropertyBag::createInstance(m_webView->page()->contextMenuController()->hitTestResult()));
- // FIXME: We need to decide whether to do the default before calling this delegate method
- if (FAILED(uiDelegate->contextMenuItemsForElement(m_webView, propertyBag.get(), (OLE_HANDLE)(ULONG64)nativeMenu, (OLE_HANDLE*)&nativeMenu))) {
- ::DestroyMenu(nativeMenu);
- return menu.release();
- }
-
- OwnPtr<ContextMenu> customizedMenu = adoptPtr(new ContextMenu(nativeMenu));
- ::DestroyMenu(nativeMenu);
- return customizedMenu.release();
- }
- void WebContextMenuClient::contextMenuItemSelected(ContextMenuItem* item, const ContextMenu* parentMenu)
- {
- ASSERT(item->type() == ActionType || item->type() == CheckableActionType);
- COMPtr<IWebUIDelegate> uiDelegate;
- if (FAILED(m_webView->uiDelegate(&uiDelegate)))
- return;
- ASSERT(uiDelegate);
- COMPtr<WebElementPropertyBag> propertyBag;
- propertyBag.adoptRef(WebElementPropertyBag::createInstance(m_webView->page()->contextMenuController()->hitTestResult()));
- // This call would leak the MENUITEMINFO's subMenu if it had one, but on Windows, subMenus can't be selected, so there is
- // no way we would get to this point. Also, it can't be a separator, because separators cannot be selected.
- ASSERT(item->type() != SubmenuType);
- ASSERT(item->type() != SeparatorType);
- // ContextMenuItem::platformContextMenuItem doesn't set the dwTypeData of the MENUITEMINFO, but no WebKit clients
- // use the title in IWebUIDelegate::contextMenuItemSelected, so we don't need to populate it here.
- MENUITEMINFO selectedItem = item->platformContextMenuItem();
- uiDelegate->contextMenuItemSelected(m_webView, &selectedItem, propertyBag.get());
- }
- void WebContextMenuClient::downloadURL(const KURL& url)
- {
- m_webView->downloadURL(url);
- }
- void WebContextMenuClient::searchWithGoogle(const Frame* frame)
- {
- String searchString = frame->editor().selectedText();
- searchString.stripWhiteSpace();
- String encoded = encodeWithURLEscapeSequences(searchString);
- encoded.replace("%20", "+");
-
- String url("http://www.google.com/search?q=");
- url.append(encoded);
- url.append("&ie=UTF-8&oe=UTF-8");
- if (Page* page = frame->page()) {
- UserGestureIndicator indicator(DefinitelyProcessingNewUserGesture);
- page->mainFrame()->loader()->urlSelected(KURL(ParsedURLString, url), String(), 0, false, false, MaybeSendReferrer);
- }
- }
- void WebContextMenuClient::lookUpInDictionary(Frame*)
- {
- notImplemented();
- }
- void WebContextMenuClient::speak(const String&)
- {
- notImplemented();
- }
- void WebContextMenuClient::stopSpeaking()
- {
- notImplemented();
- }
- bool WebContextMenuClient::isSpeaking()
- {
- notImplemented();
- return false;
- }
|