| /* |
| * Copyright (C) 2014 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 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 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 "PageLoadTestClient.h" |
| #include <WebKit/WebKit.h> |
| #include <memory> |
| #include <vector> |
| |
| typedef _com_ptr_t<_com_IIID<IWebFrame, &__uuidof(IWebFrame)>> IWebFramePtr; |
| typedef _com_ptr_t<_com_IIID<IWebView, &__uuidof(IWebView)>> IWebViewPtr; |
| typedef _com_ptr_t<_com_IIID<IWebViewPrivate, &__uuidof(IWebViewPrivate)>> IWebViewPrivatePtr; |
| typedef _com_ptr_t<_com_IIID<IWebFrameLoadDelegate, &__uuidof(IWebFrameLoadDelegate)>> IWebFrameLoadDelegatePtr; |
| typedef _com_ptr_t<_com_IIID<IWebHistory, &__uuidof(IWebHistory)>> IWebHistoryPtr; |
| typedef _com_ptr_t<_com_IIID<IWebHistoryItem, &__uuidof(IWebHistoryItem)>> IWebHistoryItemPtr; |
| typedef _com_ptr_t<_com_IIID<IWebPreferences, &__uuidof(IWebPreferences)>> IWebPreferencesPtr; |
| typedef _com_ptr_t<_com_IIID<IWebPreferencesPrivate, &__uuidof(IWebPreferencesPrivate)>> IWebPreferencesPrivatePtr; |
| typedef _com_ptr_t<_com_IIID<IWebUIDelegate, &__uuidof(IWebUIDelegate)>> IWebUIDelegatePtr; |
| typedef _com_ptr_t<_com_IIID<IAccessibilityDelegate, &__uuidof(IAccessibilityDelegate)>> IAccessibilityDelegatePtr; |
| typedef _com_ptr_t<_com_IIID<IWebInspector, &__uuidof(IWebInspector)>> IWebInspectorPtr; |
| typedef _com_ptr_t<_com_IIID<IWebCoreStatistics, &__uuidof(IWebCoreStatistics)>> IWebCoreStatisticsPtr; |
| typedef _com_ptr_t<_com_IIID<IWebCache, &__uuidof(IWebCache)>> IWebCachePtr; |
| typedef _com_ptr_t<_com_IIID<IWebResourceLoadDelegate, &__uuidof(IWebResourceLoadDelegate)>> IWebResourceLoadDelegatePtr; |
| |
| class WinLauncher { |
| public: |
| WinLauncher(HWND mainWnd, HWND urlBarWnd, bool useLayeredWebView = false, bool pageLoadTesting = false); |
| |
| HRESULT init(); |
| HRESULT prepareViews(HWND mainWnd, const RECT& clientRect, const BSTR& requestedURL, HWND& viewWnd); |
| |
| HRESULT loadURL(const BSTR& passedURL); |
| |
| void showLastVisitedSites(IWebView&); |
| void launchInspector(); |
| void navigateForwardOrBackward(HWND hWnd, UINT menuID); |
| void navigateToHistory(HWND hWnd, UINT menuID); |
| void exitProgram(); |
| bool seedInitialDefaultPreferences(); |
| bool setToDefaultPreferences(); |
| |
| HRESULT setFrameLoadDelegate(IWebFrameLoadDelegate*); |
| HRESULT setFrameLoadDelegatePrivate(IWebFrameLoadDelegatePrivate*); |
| HRESULT setUIDelegate(IWebUIDelegate*); |
| HRESULT setAccessibilityDelegate(IAccessibilityDelegate*); |
| HRESULT setResourceLoadDelegate(IWebResourceLoadDelegate*); |
| |
| IWebPreferencesPtr standardPreferences() { return m_standardPreferences; } |
| IWebPreferencesPrivatePtr privatePreferences() { return m_prefsPrivate; } |
| IWebFramePtr mainFrame(); |
| IWebCoreStatisticsPtr statistics() { return m_statistics; } |
| IWebCachePtr webCache() { return m_webCache; } |
| IWebViewPtr webView() { return m_webView; } |
| |
| bool hasWebView() const { return !!m_webView; } |
| bool usesLayeredWebView() const { return m_useLayeredWebView; } |
| bool goBack(); |
| bool goForward(); |
| |
| void setUserAgent(UINT menuID); |
| void setUserAgent(_bstr_t& customUAString); |
| _bstr_t userAgent(); |
| |
| PageLoadTestClient& pageLoadTestClient() { return *m_pageLoadTestClient; } |
| |
| void resetZoom(); |
| void zoomIn(); |
| void zoomOut(); |
| |
| private: |
| std::vector<IWebHistoryItemPtr> m_historyItems; |
| |
| std::unique_ptr<PageLoadTestClient> m_pageLoadTestClient; |
| |
| IWebViewPtr m_webView; |
| IWebViewPrivatePtr m_webViewPrivate; |
| |
| IWebHistoryPtr m_webHistory; |
| IWebInspectorPtr m_inspector; |
| IWebPreferencesPtr m_standardPreferences; |
| IWebPreferencesPrivatePtr m_prefsPrivate; |
| |
| IWebFrameLoadDelegatePtr m_frameLoadDelegate; |
| IWebUIDelegatePtr m_uiDelegate; |
| IAccessibilityDelegatePtr m_accessibilityDelegate; |
| IWebResourceLoadDelegatePtr m_resourceLoadDelegate; |
| |
| IWebCoreStatisticsPtr m_statistics; |
| IWebCachePtr m_webCache; |
| |
| HWND m_hMainWnd; |
| HWND m_hURLBarWnd; |
| |
| bool m_useLayeredWebView; |
| }; |