Stream Chat Unreal SDK
Loading...
Searching...
No Matches
ThreadReplyContextMenuAction.h
1// Copyright 2026 Stream.IO, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "ContextMenu/ContextMenuAction.h"
6#include "CoreMinimal.h"
7
8#include "ThreadReplyContextMenuAction.generated.h"
9
15UCLASS()
16class STREAMCHATUI_API UThreadReplyContextMenuAction final : public UContextMenuAction
17{
18 GENERATED_BODY()
19
20public:
22
23protected:
24 virtual void OnPerform(const FMessage&, UWidget* OwningWidget) override;
25 virtual bool OnShouldDisplay(EMessageSide, const FMessage&) const override;
26};
Message action which opens the message's thread to reply in it.
Definition ThreadReplyContextMenuAction.h:17
Represents a Stream Chat message.
Definition Message.h:70