Skip to content

Commit 64c8f46

Browse files
authored
Update NetWebView2Lib.au3 === EVENT HANDLERS === #TODO
1 parent ada7213 commit 64c8f46

1 file changed

Lines changed: 44 additions & 0 deletions

File tree

NetWebView2Lib.au3

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
; Global objects
2323
Global $_g_bNetWebView2_DebugInfo = True
2424

25+
#Region ; ENUMS
26+
2527
;~ Global Enum _
2628
;~ $NETWEBVIEW2_ERR__INIT_FAILED, _
2729
;~ $NETWEBVIEW2_ERR__PROFILE_NOT_READY, _
@@ -1830,4 +1832,46 @@ Volatile Func __NetWebView2_Events__OnBasicAuthenticationRequested($oWebV2M, $hG
18301832
; Note: User should handle $oArgs.UserName / $oArgs.Password and call $oArgs.Complete() in their script.
18311833
$oArgs = 0
18321834
EndFunc ;==>__NetWebView2_Events__OnBasicAuthenticationRequested
1835+
1836+
#Region ; NetWebView2Lib UDF - === EVENT HANDLERS === #TODO
1837+
1838+
1839+
#Region ; NetWebView2Lib UDF - === EVENT HANDLERS === FRAME RELATED
1840+
Volatile Func __NetWebView2_Events__OnFrameCreated()
1841+
;~ https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/winrt/microsoft_web_webview2_core/corewebview2frame?view=webview2-winrt-1.0.3595.46#framecreated
1842+
EndFunc ;==>__NetWebView2_Events__OnFrameCreated
1843+
1844+
Volatile Func __NetWebView2_Events__OnContentLoading()
1845+
;~ https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/winrt/microsoft_web_webview2_core/corewebview2frame?view=webview2-winrt-1.0.3595.46#contentloading
1846+
EndFunc ;==>__NetWebView2_Events__OnContentLoading
1847+
1848+
Volatile Func __NetWebView2_Events__OnDOMContentLoaded()
1849+
;~ https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/winrt/microsoft_web_webview2_core/corewebview2frame?view=webview2-winrt-1.0.3595.46#domcontentloaded
1850+
EndFunc ;==>__NetWebView2_Events__OnDOMContentLoaded
1851+
1852+
Volatile Func __NetWebView2_Events__OnDestroyed()
1853+
;~ https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/winrt/microsoft_web_webview2_core/corewebview2frame?view=webview2-winrt-1.0.3595.46#destroyed
1854+
EndFunc ;==>__NetWebView2_Events__OnDestroyed
1855+
1856+
Volatile Func __NetWebView2_Events__OnNameChanged()
1857+
;~ https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/winrt/microsoft_web_webview2_core/corewebview2frame?view=webview2-winrt-1.0.3595.46#namechanged
1858+
EndFunc ;==>__NetWebView2_Events__OnNameChanged
1859+
1860+
;~ is this followed navigationcompleted are the same as __NetWebView2_Events__OnNavigationCompleted() ?
1861+
;~ https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/winrt/microsoft_web_webview2_core/corewebview2frame?view=webview2-winrt-1.0.3595.46#navigationcompleted
1862+
1863+
;~ is this followed navigationstarting are the same as __NetWebView2_Events__OnNavigationStarting() ?
1864+
;~ https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/winrt/microsoft_web_webview2_core/corewebview2frame?view=webview2-winrt-1.0.3595.46#navigationstarting
1865+
1866+
Volatile Func __NetWebView2_Events__OnScreenCaptureStarting()
1867+
;~ https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/winrt/microsoft_web_webview2_core/corewebview2frame?view=webview2-winrt-1.0.3595.46#screencapturestarting
1868+
EndFunc ;==>__NetWebView2_Events__OnScreenCaptureStarting
1869+
1870+
;~ is this followed webmessagereceived are the same as __NetWebView2_Events__OnMessageReceived() ?
1871+
;~ https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/winrt/microsoft_web_webview2_core/corewebview2frame?view=webview2-winrt-1.0.3595.46#webmessagereceived
1872+
1873+
#EndRegion ; NetWebView2Lib UDF - === EVENT HANDLERS === FRAME RELATED
1874+
1875+
#EndRegion ; NetWebView2Lib UDF - === EVENT HANDLERS === #TODO
1876+
18331877
#EndRegion ; NetWebView2Lib UDF - === EVENT HANDLERS ===

0 commit comments

Comments
 (0)