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 UFUNCTION(BlueprintCallable, Category = "Stream Chat")
24 static UClientContextWidget* Get(const UWidget* Widget);
31 DECLARE_DYNAMIC_MULTICAST_DELEGATE(FBackDelegate);
32 UPROPERTY(BlueprintAssignable)
35 DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FChannelSelected,
UChatChannel*, Channel);
36 UPROPERTY(BlueprintAssignable)
37 FChannelSelected OnChannelSelected;
39 UPROPERTY(BlueprintReadOnly, Transient, Category = "Stream Chat")
The client-side representation of a Stream Chat channel.
Definition: ChatChannel.h:74
A component which allows for connecting to the Stream Chat API. Should be added to a client-side acto...
Definition: StreamChatClientComponent.h:42