5#include "Channel/ChannelWidget.h"
6#include "ChannelList/ChannelListWidget.h"
7#include "Components/Border.h"
8#include "Context/ClientContextWidget.h"
9#include "CoreMinimal.h"
10#include "StreamWidget.h"
12#include "TeamChatMobileWidget.generated.h"
18class STREAMCHATUI_API UTeamChatMobileWidget final : public UStreamWidget
23 UTeamChatMobileWidget();
24 UFUNCTION(BlueprintCallable, Category = "Stream Chat")
28 UFUNCTION(BlueprintCallable, Category = "Stream Chat")
29 void SwitchToChannelList();
30 UFUNCTION(BlueprintCallable, Category = "Stream Chat")
33 UPROPERTY(meta = (BindWidget))
34 UClientContextWidget* ClientContextWidget;
35 UPROPERTY(meta = (BindWidget))
38 UPROPERTY(EditAnywhere, NoClear, Category = Defaults)
39 TSubclassOf<UChannelListWidget> ChannelListWidgetClass = UChannelListWidget::StaticClass();
40 UPROPERTY(EditAnywhere, NoClear, Category = Defaults)
41 TSubclassOf<UChannelWidget> ChannelWidgetClass = UChannelWidget::StaticClass();
44 virtual
void OnSetup() override;
45 virtual
void NativePreConstruct() override;
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