Unreal OpenAI API 1.0.0
ServiceWidget.h
1// OpenAI, Copyright LifeEXE. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "EditorUtilityWidget.h"
7#include "ChatGPT/ChatGPT.h"
8#include "ServiceWidget.generated.h"
9
10class UServiceWidget;
11DECLARE_MULTICAST_DELEGATE_ThreeParams(FOnServiceEnabled, bool, const TSubclassOf<UBaseService>&, const TObjectPtr<UServiceWidget>&);
12
13class UTextBlock;
14class UEditorUtilityCheckBox;
15class UBaseService;
16
17UCLASS()
18class OPENAIEDITOR_API UServiceWidget : public UEditorUtilityWidget
19{
20 GENERATED_BODY()
21
22public:
23 void SetServiceClass(const TSubclassOf<UBaseService>& Class);
24 bool IsEnabled() const;
25 void SetEnabled(bool IsEnabled);
26
27 FOnServiceEnabled& OnServiceEnabled() { return ServiceEnabled; }
28
29protected:
30 virtual void NativeConstruct() override;
31
32 UPROPERTY(meta = (BindWidget))
33 TObjectPtr<UTextBlock> ServiceName;
34
35 UPROPERTY(meta = (BindWidget))
36 TObjectPtr<UEditorUtilityCheckBox> EnableCheckBox;
37
38private:
39 TSubclassOf<UBaseService> ServiceClass;
40 FOnServiceEnabled ServiceEnabled;
41
42 UFUNCTION()
43 void OnCheckStateChanged(bool bIsChecked);
44};
Definition: BaseService.h:16
Definition: ServiceWidget.h:19