7#include "ContextWidget.h"
8#include "CoreMinimal.h"
9#include "StreamChatClientComponent.h"
11#include "ClientContextWidget.generated.h"
17class STREAMCHATUI_API UClientContextWidget final : public UContextWidget
22 UClientContextWidget();
24 UFUNCTION(BlueprintCallable, Category = "Stream Chat")
26 static UClientContextWidget* Get(const UWidget* Widget);
33 DECLARE_DYNAMIC_MULTICAST_DELEGATE(FBackDelegate);
34 UPROPERTY(BlueprintAssignable)
37 DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FChannelSelected,
UChatChannel*, Channel);
38 UPROPERTY(BlueprintAssignable)
39 FChannelSelected OnChannelSelected;
41 UPROPERTY(BlueprintReadOnly, Transient, Category = "Stream Chat")
The client-side representation of a Stream Chat channel.
Definition ChatChannel.h:75
A component which allows for connecting to the Stream Chat API. Should be added to a client-side acto...
Definition StreamChatClientComponent.h:43