2019-11-23 20:27:39 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2014-2016 Chukong Technologies Inc.
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
2022-04-02 13:50:53 +08:00
|
|
|
Copyright (c) 2022 Bytedance Inc.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2022-10-01 16:24:52 +08:00
|
|
|
https://axmolengine.github.io/
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "ui/UIWidget.h"
|
|
|
|
#include "ui/GUIExport.h"
|
|
|
|
#include "base/CCData.h"
|
|
|
|
|
2022-07-16 10:43:05 +08:00
|
|
|
#if defined(_WIN32) || (AX_TARGET_PLATFORM == AX_PLATFORM_ANDROID || AX_TARGET_PLATFORM == AX_PLATFORM_IOS)
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* @addtogroup ui
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
NS_AX_BEGIN
|
2021-12-25 10:04:45 +08:00
|
|
|
namespace ui
|
|
|
|
{
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
class WebViewImpl;
|
|
|
|
|
|
|
|
/**
|
2021-12-25 10:04:45 +08:00
|
|
|
* @brief A View that displays web pages.
|
2019-11-23 20:27:39 +08:00
|
|
|
*
|
|
|
|
* @note WebView displays web pages base on system widget.
|
|
|
|
* It's mean WebView displays web pages above all graphical elements of cocos2d-x.
|
|
|
|
* @js NA
|
|
|
|
*/
|
2022-08-08 18:02:17 +08:00
|
|
|
class AX_GUI_DLL WebView : public ax::ui::Widget
|
2021-12-25 10:04:45 +08:00
|
|
|
{
|
2019-11-23 20:27:39 +08:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Allocates and initializes a WebView.
|
|
|
|
*/
|
2021-12-25 10:04:45 +08:00
|
|
|
static WebView* create();
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set javascript interface scheme.
|
|
|
|
*
|
|
|
|
* @see WebView::setOnJSCallback()
|
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
void setJavascriptInterfaceScheme(std::string_view scheme);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the main page contents, MIME type, content encoding, and base URL.
|
|
|
|
*
|
|
|
|
* @param data The content for the main page.
|
|
|
|
* @param MIMEType The MIME type of the data.
|
|
|
|
* @param encoding The encoding of the data.
|
|
|
|
* @param baseURL The base URL for the content.
|
|
|
|
*/
|
2022-08-08 18:02:17 +08:00
|
|
|
void loadData(const ax::Data& data,
|
2021-12-31 12:12:40 +08:00
|
|
|
std::string_view MIMEType,
|
|
|
|
std::string_view encoding,
|
|
|
|
std::string_view baseURL);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Sets the main page content and base URL.
|
|
|
|
*
|
|
|
|
* @param string The content for the main page.
|
|
|
|
* @param baseURL The base URL for the content.
|
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
void loadHTMLString(std::string_view string, std::string_view baseURL = "");
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads the given URL. It doesn't clean cached data.
|
|
|
|
*
|
|
|
|
* @param url Content URL.
|
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
void loadURL(std::string_view url);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads the given URL with cleaning cached data or not.
|
|
|
|
* @param url Content URL.
|
|
|
|
* @cleanCachedData Whether to clean cached data.
|
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
void loadURL(std::string_view url, bool cleanCachedData);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads the given fileName.
|
|
|
|
*
|
|
|
|
* @param fileName Content fileName.
|
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
void loadFile(std::string_view fileName);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Stops the current load.
|
|
|
|
*/
|
|
|
|
void stopLoading();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reloads the current URL.
|
|
|
|
*/
|
|
|
|
void reload();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets whether this WebView has a back history item.
|
|
|
|
*
|
|
|
|
* @return WebView has a back history item.
|
|
|
|
*/
|
|
|
|
bool canGoBack();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets whether this WebView has a forward history item.
|
|
|
|
*
|
|
|
|
* @return WebView has a forward history item.
|
|
|
|
*/
|
|
|
|
bool canGoForward();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Goes back in the history.
|
|
|
|
*/
|
|
|
|
void goBack();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Goes forward in the history.
|
|
|
|
*/
|
|
|
|
void goForward();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Evaluates JavaScript in the context of the currently displayed page.
|
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
void evaluateJS(std::string_view js);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set WebView should support zooming. The default value is false.
|
|
|
|
*/
|
|
|
|
void setScalesPageToFit(const bool scalesPageToFit);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Call before a web view begins loading.
|
|
|
|
*
|
|
|
|
* @param callback The web view that is about to load new content.
|
|
|
|
* @return YES if the web view should begin loading content; otherwise, NO.
|
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
void setOnShouldStartLoading(const std::function<bool(WebView* sender, std::string_view url)>& callback);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* A callback which will be called when a WebView event happens.
|
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
typedef std::function<void(WebView* sender, std::string_view url)> ccWebViewCallback;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Call after a web view finishes loading.
|
|
|
|
*
|
|
|
|
* @param callback The web view that has finished loading.
|
|
|
|
*/
|
|
|
|
void setOnDidFinishLoading(const ccWebViewCallback& callback);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Call if a web view failed to load content.
|
|
|
|
*
|
|
|
|
* @param callback The web view that has failed loading.
|
|
|
|
*/
|
|
|
|
void setOnDidFailLoading(const ccWebViewCallback& callback);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* This callback called when load URL that start with javascript interface scheme.
|
|
|
|
*/
|
|
|
|
void setOnJSCallback(const ccWebViewCallback& callback);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Get the callback when WebView is about to start.
|
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
std::function<bool(WebView* sender, std::string_view url)> getOnShouldStartLoading() const;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Get the callback when WebView has finished loading.
|
|
|
|
*/
|
2021-12-25 10:04:45 +08:00
|
|
|
ccWebViewCallback getOnDidFinishLoading() const;
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Get the callback when WebView has failed loading.
|
|
|
|
*/
|
2021-12-25 10:04:45 +08:00
|
|
|
ccWebViewCallback getOnDidFailLoading() const;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
*Get the Javascript callback.
|
|
|
|
*/
|
2021-12-25 10:04:45 +08:00
|
|
|
ccWebViewCallback getOnJSCallback() const;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set whether the webview bounces at end of scroll of WebView.
|
|
|
|
*/
|
|
|
|
void setBounces(bool bounce);
|
|
|
|
|
2022-08-08 18:02:17 +08:00
|
|
|
virtual void draw(ax::Renderer* renderer, ax::Mat4 const& transform, uint32_t flags) override;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Toggle visibility of WebView.
|
|
|
|
*/
|
|
|
|
virtual void setVisible(bool visible) override;
|
|
|
|
/**
|
|
|
|
* SetOpacity of webview.
|
|
|
|
*/
|
|
|
|
virtual void setOpacityWebView(float opacity);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* getOpacity of webview.
|
|
|
|
*/
|
|
|
|
virtual float getOpacityWebView() const;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* set the background transparent
|
|
|
|
*/
|
|
|
|
virtual void setBackgroundTransparent();
|
|
|
|
virtual void onEnter() override;
|
|
|
|
virtual void onExit() override;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2022-03-18 21:46:07 +08:00
|
|
|
/**
|
|
|
|
* Default constructor.
|
|
|
|
*/
|
|
|
|
WebView();
|
|
|
|
virtual ~WebView();
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
protected:
|
2022-08-08 18:02:17 +08:00
|
|
|
virtual ax::ui::Widget* createCloneInstance() override;
|
2019-11-23 20:27:39 +08:00
|
|
|
virtual void copySpecialProperties(Widget* model) override;
|
|
|
|
|
2021-12-31 12:12:40 +08:00
|
|
|
std::function<bool(WebView* sender, std::string_view url)> _onShouldStartLoading = nullptr;
|
|
|
|
ccWebViewCallback _onDidFinishLoading = nullptr;
|
|
|
|
ccWebViewCallback _onDidFailLoading = nullptr;
|
|
|
|
ccWebViewCallback _onJSCallback = nullptr;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
private:
|
2021-12-25 10:04:45 +08:00
|
|
|
WebViewImpl* _impl = nullptr;
|
2019-11-23 20:27:39 +08:00
|
|
|
friend class WebViewImpl;
|
|
|
|
};
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
} // namespace ui
|
2022-08-29 20:51:22 +08:00
|
|
|
NS_AX_END // namespace ax
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2022-04-02 13:50:53 +08:00
|
|
|
#endif
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
// end group
|
|
|
|
/// @}
|