WebViewWidget.h.template 652 B

1234567891011121314151617181920212223242526272829303132
  1. // Copyright aXiuShen. All Rights Reserved.
  2. #pragma once
  3. #include "CoreMinimal.h"
  4. #include "Components/Widget.h"
  5. #include "Styling/SlateTypes.h"
  6. #include "WebBase.h"
  7. #include "WebViewWidget.generated.h"
  8. /**
  9. *
  10. */
  11. UCLASS(BlueprintType, Blueprintable)
  12. class WEBVIEW_API UWebViewWidget : public UWebBase
  13. {
  14. GENERATED_UCLASS_BODY()
  15. protected:
  16. virtual bool Asyn(const FString& Name, FString& Data, const FString& Callback) override;
  17. public:
  18. };
  19. UCLASS(BlueprintType, Blueprintable)
  20. class WEBVIEW_API UJLParse : public UObject {
  21. GENERATED_UCLASS_BODY()
  22. public:
  23. UFUNCTION(BlueprintCallable, Category = "Web View")
  24. void SyncParse(FString json);
  25. };