WebViewEvents.h 368 B

1234567891011121314151617181920212223
  1. #pragma once
  2. #include <Atomic/Core/Object.h>
  3. namespace Atomic
  4. {
  5. /// WebView load start
  6. EVENT(E_WEBVIEWLOADSTART, WebViewLoadStart)
  7. {
  8. PARAM(P_CLIENT, Client); // WebClient*
  9. PARAM(P_URL, Url); // String
  10. }
  11. /// WebView load end
  12. EVENT(E_WEBVIEWLOADEND, WebViewLoadEnd)
  13. {
  14. PARAM(P_CLIENT, Client); // WebClient*
  15. PARAM(P_URL, Url); // String
  16. }
  17. }