Merge branch 'web-request'

Add wxWebViewRequest and related classes allowing to use HTTPS and
HTTP/2.

See https://github.com/wxWidgets/wxWidgets/pull/977
This commit is contained in:
Vadim Zeitlin 2021-01-17 18:19:47 +01:00
commit febd185fc6
100 changed files with 29554 additions and 185 deletions

View file

@ -749,13 +749,13 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
<set var="NET_OSX_SRC" hints="files">
src/osx/core/sockosx.cpp
src/osx/webrequest_urlsession.mm
</set>
<set var="NET_WIN32_SRC" hints="files">
src/msw/sockmsw.cpp
src/msw/urlmsw.cpp
</set>
<set var="NET_WIN32_HDR" hints="files">
src/msw/webrequest_winhttp.cpp
</set>
@ -770,6 +770,8 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
src/common/sckstrm.cpp
src/common/socket.cpp
src/common/url.cpp
src/common/webrequest.cpp
src/common/webrequest_curl.cpp
</set>
<set var="NET_CMN_HDR" hints="files">
wx/fs_inet.h
@ -783,6 +785,7 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
wx/sckstrm.h
wx/socket.h
wx/url.h
wx/webrequest.h
</set>
<!-- ====================================================================== -->
@ -1004,6 +1007,7 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
src/generic/editlbox.cpp
src/generic/laywin.cpp
src/generic/calctrlg.cpp
src/generic/creddlgg.cpp
src/generic/rowheightcache.cpp
</set>
<set var="GUI_CMN_HDR" hints="files">
@ -1294,6 +1298,8 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
wx/generic/dvrenderer.h
wx/calctrl.h
wx/propdlg.h
wx/generic/creddlgg.h
wx/creddlg.h
</set>
<!-- ====================================================================== -->
@ -3512,9 +3518,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
<if cond="PLATFORM_WIN32=='1'">$(NET_WIN32_SRC)</if>
<if cond="PLATFORM_MACOSX=='1'">$(NET_UNIX_SRC) $(NET_OSX_SRC)</if>
</set>
<set var="NET_PLATFORM_HDR" hints="files">
<if cond="PLATFORM_WIN32=='1'">$(NET_WIN32_HDR)</if>
</set>
<set var="NET_SRC" hints="files">
$(NET_CMN_SRC) $(NET_PLATFORM_SRC)