2019-11-23 20:27:39 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2014-2016 Chukong Technologies Inc.
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2022-01-04 12:36:20 +08:00
|
|
|
https://adxeproject.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
|
|
|
|
/// @cond DO_NOT_SHOW
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <iosfwd>
|
2021-12-31 12:12:40 +08:00
|
|
|
#include <string>
|
|
|
|
#include <string_view>
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
@class UIWebViewWrapper;
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
namespace cocos2d
|
|
|
|
{
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
class Data;
|
|
|
|
class Renderer;
|
|
|
|
class Mat4;
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
namespace ui
|
|
|
|
{
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
class WebView;
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
class WebViewImpl
|
|
|
|
{
|
2019-11-23 20:27:39 +08:00
|
|
|
public:
|
2021-12-25 10:04:45 +08:00
|
|
|
WebViewImpl(WebView* webView);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
virtual ~WebViewImpl();
|
|
|
|
|
2021-12-31 12:12:40 +08:00
|
|
|
void setJavascriptInterfaceScheme(std::string_view scheme);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
void loadData(const cocos2d::Data& data,
|
2021-12-31 12:12:40 +08:00
|
|
|
std::string_view MIMEType,
|
|
|
|
std::string_view encoding,
|
|
|
|
std::string_view baseURL);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
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
|
|
|
|
2021-12-31 12:12:40 +08:00
|
|
|
void loadURL(std::string_view url);
|
|
|
|
void loadURL(std::string_view url, bool cleanCachedData);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2021-12-31 12:12:40 +08:00
|
|
|
void loadFile(std::string_view fileName);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
void stopLoading();
|
|
|
|
|
|
|
|
void reload();
|
|
|
|
|
|
|
|
bool canGoBack();
|
|
|
|
|
|
|
|
bool canGoForward();
|
|
|
|
|
|
|
|
void goBack();
|
|
|
|
|
|
|
|
void goForward();
|
|
|
|
|
2021-12-31 12:12:40 +08:00
|
|
|
void evaluateJS(std::string_view js);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
void setScalesPageToFit(const bool scalesPageToFit);
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
virtual void draw(cocos2d::Renderer* renderer, cocos2d::Mat4 const& transform, uint32_t flags);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
virtual void setVisible(bool visible);
|
|
|
|
|
|
|
|
void setBounces(bool bounces);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
virtual void setOpacityWebView(float opacity);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
virtual float getOpacityWebView() const;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
virtual void setBackgroundTransparent();
|
|
|
|
|
|
|
|
private:
|
2021-12-25 10:04:45 +08:00
|
|
|
UIWebViewWrapper* _uiWebViewWrapper;
|
|
|
|
WebView* _webView;
|
2019-11-23 20:27:39 +08:00
|
|
|
};
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
} // namespace ui
|
|
|
|
} // namespace cocos2d
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/// @endcond
|