className
stringlengths 1
167
| headerPath
stringlengths 14
166
| description
stringlengths 0
1.62k
| module
stringlengths 0
76
| code
stringlengths 0
11.4k
| variables
listlengths 0
395
|
---|---|---|---|---|---|
FOnScrubPositionChanged | /Engine/Source/Developer/ToolWidgets/Public/SSimpleTimeSlider.h | ToolWidgets | typedef TBaseDelegate_TwoParams< void, double, bool > FOnScrubPositionChanged | []
|
|
SSimpleTimeSlider::FScrubRangeToScreen::InputToLocalX | /Engine/Source/Developer/ToolWidgets/Public/SSimpleTimeSlider.h | Curve Input domain -> local Widget Space | ToolWidgets | float InputToLocalX &40; float Input &41; const | []
|
SSimpleTimeSlider::FScrubRangeToScreen::LocalXToInput | /Engine/Source/Developer/ToolWidgets/Public/SSimpleTimeSlider.h | Local Widget Space -> Curve Input domain. | ToolWidgets | float LocalXToInput &40; float ScreenX &41; const | []
|
SSimpleTimeSlider::FScrubRangeToScreen::FScrubRangeToScreen | /Engine/Source/Developer/ToolWidgets/Public/SSimpleTimeSlider.h | ToolWidgets | FScrubRangeToScreen &40; TRange< double > InViewInput, const FVector2D & InWidgetSize &41; | []
|
|
FScrubRangeToScreen | /Engine/Source/Developer/ToolWidgets/Public/SSimpleTimeSlider.h | Utility struct for converting between scrub range space and local/absolute screen space | ToolWidgets | struct FScrubRangeToScreen | [
{
"type": "float",
"name": "PixelsPerInput",
"description": ""
},
{
"type": "TRange< double ...",
"name": "ViewInput",
"description": ""
},
{
"type": "float",
"name": "ViewInputRange",
"description": ""
},
{
"type": "FVector2D",
"name": "WidgetSize",
"description": ""
}
]
|
SSimpleTimeSlider::GetTimeAtCursorPosition | /Engine/Source/Developer/ToolWidgets/Public/SSimpleTimeSlider.h | ToolWidgets | float GetTimeAtCursorPosition ( const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) & MyGeometry, const [FPointerEvent](API\Runtime\SlateCore\Input\FPointerEvent) & MouseEvent ) const | []
|
|
SSimpleTimeSlider::GetTimeRange | /Engine/Source/Developer/ToolWidgets/Public/SSimpleTimeSlider.h | ToolWidgets | [TRange](API\Runtime\Core\Math\TRange)< double > GetTimeRange() | []
|
|
SSimpleTimeSlider::IsPanning | /Engine/Source/Developer/ToolWidgets/Public/SSimpleTimeSlider.h | ToolWidgets | bool IsPanning() | []
|
|
SSimpleTimeSlider::OnMouseButtonUp | /Engine/Source/Developer/ToolWidgets/Public/SSimpleTimeSlider.h | The system calls this method to notify the widget that a mouse button was release within it. This event is bubbled.
Whether the event was handled along with possible requests for the system to take action. | ToolWidgets | virtual [FReply](API\Runtime\SlateCore\Input\FReply) OnMouseButtonUp ( const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) & MyGeometry, const [FPointerEvent](API\Runtime\SlateCore\Input\FPointerEvent) & MouseEvent ) | []
|
SSimpleTimeSlider::OnMouseMove | /Engine/Source/Developer/ToolWidgets/Public/SSimpleTimeSlider.h | The system calls this method to notify the widget that a mouse moved within it. This event is bubbled.
Whether the event was handled along with possible requests for the system to take action. | ToolWidgets | virtual [FReply](API\Runtime\SlateCore\Input\FReply) OnMouseMove ( const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) & MyGeometry, const [FPointerEvent](API\Runtime\SlateCore\Input\FPointerEvent) & MouseEvent ) | []
|
SSimpleTimeSlider::OnMouseWheel | /Engine/Source/Developer/ToolWidgets/Public/SSimpleTimeSlider.h | Called when the mouse wheel is spun. This event is bubbled.
Returns whether the event was handled, along with other possible actions | ToolWidgets | virtual [FReply](API\Runtime\SlateCore\Input\FReply) OnMouseWheel ( const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) & MyGeometry, const [FPointerEvent](API\Runtime\SlateCore\Input\FPointerEvent) & MouseEvent ) | []
|
SSimpleTimeSlider::OnPaint | /Engine/Source/Developer/ToolWidgets/Public/SSimpleTimeSlider.h | The widget should respond by populating the OutDrawElements array with FDrawElements that represent it and any of its children. Called by the non-virtual OnPaint to enforce pre/post conditions during OnPaint.
The maximum layer ID attained by this widget or any of its children. | ToolWidgets | virtual int32 OnPaint ( const [FPaintArgs](API\Runtime\SlateCore\Types\FPaintArgs) & Args, const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) & AllottedGeometry, const [FSlateRect](API\Runtime\SlateCore\Layout\FSlateRect) & MyCullingRect, [FSlateWindowElementList](API\Runtime\SlateCore\Rendering\FSlateWindowElementList) & OutDrawElements, int32 LayerId, const [FWidgetStyle](API\Runtime\SlateCore\Styling\FWidgetStyle) & InWidgetStyle, bool bParentEnabled ) const | []
|
SSimpleTimeSlider::OnPaintTimeSlider | /Engine/Source/Developer/ToolWidgets/Public/SSimpleTimeSlider.h | ToolWidgets | int32 OnPaintTimeSlider ( bool bMirrorLabels, const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) & AllottedGeometry, const [FSlateRect](API\Runtime\SlateCore\Layout\FSlateRect) & MyCullingRect, [FSlateWindowElementList](API\Runtime\SlateCore\Rendering\FSlateWindowElementList) & OutDrawElements, int32 LayerId, const [FWidgetStyle](API\Runtime\SlateCore\Styling\FWidgetStyle) & InWidgetStyle, bool bParentEnabled ) const | []
|
|
SSimpleTimeSlider::OnPreviewMouseButtonDown | /Engine/Source/Developer/ToolWidgets/Public/SSimpleTimeSlider.h | Use this event sparingly as preview events generally make UIs more difficult to reason about. | ToolWidgets | virtual [FReply](API\Runtime\SlateCore\Input\FReply) OnPreviewMouseButtonDown ( const [FGeometry](API\Runtime\SlateCore\Layout\FGeometry) & MyGeometry, const [FPointerEvent](API\Runtime\SlateCore\Input\FPointerEvent) & MouseEvent ) | []
|
SSimpleTimeSlider::SetClampRange | /Engine/Source/Developer/ToolWidgets/Public/SSimpleTimeSlider.h | ToolWidgets | void SetClampRange ( double MinValue, double MaxValue ) | []
|
|
SSimpleTimeSlider::SetTimeRange | /Engine/Source/Developer/ToolWidgets/Public/SSimpleTimeSlider.h | ToolWidgets | void SetTimeRange ( double MinValue, double MaxValue ) | []
|
|
SSimpleTimeSlider | /Engine/Source/Developer/ToolWidgets/Public/SSimpleTimeSlider.h | ToolWidgets | class SSimpleTimeSlider : public [SCompoundWidget](API\Runtime\SlateCore\Widgets\SCompoundWidget) | [
{
"type": "TAttribute< boo...",
"name": "AllowPan",
"description": ""
},
{
"type": "TAttribute< boo...",
"name": "AllowZoom",
"description": ""
},
{
"type": "bool",
"name": "bDraggingScrubber",
"description": "If we are dragging the scrubber"
},
{
"type": "bool",
"name": "bPanning",
"description": "If we are currently panning the panel"
},
{
"type": "TAttribute<TRa...",
"name": "ClampRange",
"description": ""
},
{
"type": "TAttribute<FLi...",
"name": "ClampRangeHighlightColor",
"description": ""
},
{
"type": "TAttribute< flo...",
"name": "ClampRangeHighlightSize",
"description": ""
},
{
"type": "constFSlateBru...",
"name": "CursorBackground",
"description": "Brush for drawing cursor background to visualize cursor size"
},
{
"type": "TAttribute< flo...",
"name": "CursorSize",
"description": ""
},
{
"type": "FVector2D",
"name": "DesiredSize",
"description": ""
},
{
"type": "float",
"name": "DistanceDragged",
"description": "Total mouse delta during dragging"
},
{
"type": "TAttribute< boo...",
"name": "MirrorLabels",
"description": ""
},
{
"type": "FOnScrubPositio...",
"name": "OnScrubPositionChanged",
"description": ""
},
{
"type": "FOnRangeChanged",
"name": "OnViewRangeChanged",
"description": ""
},
{
"type": "TSharedPtr<SSc...",
"name": "Scrollbar",
"description": ""
},
{
"type": "constFSlateBru...",
"name": "ScrubHandleDown",
"description": "Brush for drawing a downwards facing scrub handle"
},
{
"type": "constFSlateBru...",
"name": "ScrubHandleUp",
"description": "Brush for drawing an upwards facing scrub handle"
},
{
"type": "TAttribute< dou...",
"name": "ScrubPosition",
"description": ""
},
{
"type": "FVector2D",
"name": "SoftwareCursorPosition",
"description": ""
},
{
"type": "TAttribute< dou...",
"name": "TimeSnapInterval",
"description": ""
},
{
"type": "TAttribute<TRa...",
"name": "ViewRange",
"description": ""
}
]
|
|
SWarningOrErrorBox::Construct | /Engine/Source/Developer/ToolWidgets/Public/SWarningOrErrorBox.h | ToolWidgets | void Construct ( const [FArguments](API\Developer\ToolWidgets\SWarningOrErrorBox\FArguments) & InArgs ) | []
|
|
SWarningOrErrorBox::FArguments::Content | /Engine/Source/Developer/ToolWidgets/Public/SWarningOrErrorBox.h | ToolWidgets | NamedSlotProperty< FArguments > Content&40;&41; | []
|
|
SWarningOrErrorBox::FArguments::IconSize | /Engine/Source/Developer/ToolWidgets/Public/SWarningOrErrorBox.h | ToolWidgets | WidgetArgsType & IconSize &40; FVector2D InArg &41; | []
|
|
SWarningOrErrorBox::FArguments::MessageStyle | /Engine/Source/Developer/ToolWidgets/Public/SWarningOrErrorBox.h | ToolWidgets | WidgetArgsType & MessageStyle &40; const TAttribute< EMessageStyle > & InAttribute &41; | []
|
|
SWarningOrErrorBox::FArguments::Message | /Engine/Source/Developer/ToolWidgets/Public/SWarningOrErrorBox.h | ToolWidgets | WidgetArgsType & Message &40; const TAttribute< FText > & InAttribute &41; | []
|
|
SWarningOrErrorBox::FArguments::operator[] | /Engine/Source/Developer/ToolWidgets/Public/SWarningOrErrorBox.h | ToolWidgets | FArguments & operator&91;&93; &40; const TSharedRef< SWidget > & InChild &41; | []
|
|
SWarningOrErrorBox::FArguments::Padding | /Engine/Source/Developer/ToolWidgets/Public/SWarningOrErrorBox.h | ToolWidgets | WidgetArgsType & Padding &40; FMargin InArg &41; | []
|
|
WidgetArgsType | /Engine/Source/Developer/ToolWidgets/Public/SWarningOrErrorBox.h | ToolWidgets | typedef FArguments WidgetArgsType | []
|
|
SWarningOrErrorBox::FArguments::FArguments | /Engine/Source/Developer/ToolWidgets/Public/SWarningOrErrorBox.h | ToolWidgets | FArguments&40;&41; | []
|
|
FArguments | /Engine/Source/Developer/ToolWidgets/Public/SWarningOrErrorBox.h | ToolWidgets | struct FArguments : public [TSlateBaseNamedArgs< SWarningOrErrorBox >](API\Runtime\SlateCore\Widgets\TSlateBaseNamedArgs) | []
|
|
SWarningOrErrorBox | /Engine/Source/Developer/ToolWidgets/Public/SWarningOrErrorBox.h | ToolWidgets | class SWarningOrErrorBox : public [SBorder](API\Runtime\Slate\Widgets\Layout\SBorder) | []
|
|
SWidgetDrawer::CloseDrawerImmediately | /Engine/Source/Developer/ToolWidgets/Public/SWidgetDrawer.h | Closes a drawer immediately with no closing animation. Needed for when UI is shutting down or to prevent conflicts where a drawer is open in two places at once. | ToolWidgets | void CloseDrawerImmediately ( [FName](API\Runtime\Core\UObject\FName) DrawerId ) | []
|
SWidgetDrawer::Construct | /Engine/Source/Developer/ToolWidgets/Public/SWidgetDrawer.h | ToolWidgets | void Construct ( const [FArguments](API\Developer\ToolWidgets\SWidgetDrawer\FArguments) & InArgs, [FName](API\Runtime\Core\UObject\FName) InStatusBarName ) | []
|
|
SWidgetDrawer::DismissDrawer | /Engine/Source/Developer/ToolWidgets/Public/SWidgetDrawer.h | Dismisses an open drawer with an animation. The drawer contents are removed once the animation is complete
true if any open drawer was dismissed | ToolWidgets | bool DismissDrawer ( const [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > & NewlyFocusedWidget ) | []
|
WidgetArgsType | /Engine/Source/Developer/ToolWidgets/Public/SWidgetDrawer.h | ToolWidgets | typedef FArguments WidgetArgsType | []
|
|
FArguments | /Engine/Source/Developer/ToolWidgets/Public/SWidgetDrawer.h | ToolWidgets | struct FArguments : public [TSlateBaseNamedArgs< SWidgetDrawer >](API\Runtime\SlateCore\Widgets\TSlateBaseNamedArgs) | []
|
|
SWidgetDrawer::FArguments::FArguments | /Engine/Source/Developer/ToolWidgets/Public/SWidgetDrawer.h | ToolWidgets | FArguments&40;&41; | []
|
|
SWidgetDrawer::GetDrawerName | /Engine/Source/Developer/ToolWidgets/Public/SWidgetDrawer.h | ToolWidgets | [FName](API\Runtime\Core\UObject\FName) GetDrawerName() const | []
|
|
SWidgetDrawer::GetSerializableName | /Engine/Source/Developer/ToolWidgets/Public/SWidgetDrawer.h | ToolWidgets | [FString](API\Runtime\Core\Containers\FString) GetSerializableName() const | []
|
|
SWidgetDrawer::IsAnyOtherDrawerOpened | /Engine/Source/Developer/ToolWidgets/Public/SWidgetDrawer.h | Is any drawer other than the one specified by DrawerId opened | ToolWidgets | bool IsAnyOtherDrawerOpened ( const [FName](API\Runtime\Core\UObject\FName) DrawerId ) const | []
|
SWidgetDrawer::IsDrawerOpened | /Engine/Source/Developer/ToolWidgets/Public/SWidgetDrawer.h | Is a specific registered drawer currently open | ToolWidgets | bool IsDrawerOpened ( const [FName](API\Runtime\Core\UObject\FName) DrawerId ) const | []
|
SWidgetDrawer::OpenDrawer | /Engine/Source/Developer/ToolWidgets/Public/SWidgetDrawer.h | Opens a drawer | ToolWidgets | void OpenDrawer ( const [FName](API\Runtime\Core\UObject\FName) DrawerId ) | []
|
SWidgetDrawer::RegisterDrawer | /Engine/Source/Developer/ToolWidgets/Public/SWidgetDrawer.h | Registers a new drawer with this status bar. Registering will add a button to open and close the drawer | ToolWidgets | void RegisterDrawer ( [FWidgetDrawerConfig](API\Developer\ToolWidgets\FWidgetDrawerConfig) && Drawer, int32 SlotIndex ) | []
|
SWidgetDrawer::SupportsKeyboardFocus | /Engine/Source/Developer/ToolWidgets/Public/SWidgetDrawer.h | Checks to see if this widget supports keyboard focus. Override this in derived classes.
True if this widget can take keyboard focus | ToolWidgets | virtual bool SupportsKeyboardFocus() const | []
|
SWidgetDrawer::UnregisterDrawer | /Engine/Source/Developer/ToolWidgets/Public/SWidgetDrawer.h | Unregisters drawer with the given DrawerId. This will dismiss the drawer immediately if its opened, and destroy the status bar widget that opens/closes the drawer | ToolWidgets | void UnregisterDrawer ( [FName](API\Runtime\Core\UObject\FName) DrawerId ) | []
|
SWidgetDrawer::~SWidgetDrawer | /Engine/Source/Developer/ToolWidgets/Public/SWidgetDrawer.h | ToolWidgets | ~SWidgetDrawer() | []
|
|
SWidgetDrawer | /Engine/Source/Developer/ToolWidgets/Public/SWidgetDrawer.h | ToolWidgets | class SWidgetDrawer : public [SCompoundWidget](API\Runtime\SlateCore\Widgets\SCompoundWidget) | []
|
|
FAnalysisContext::AddAnalyzer | /Engine/Source/Developer/TraceAnalysis/Public/Trace/Analysis.h | Adds an analyzer instance that will subscribe to and receive event data from the trace stream. | TraceAnalysis | void AddAnalyzer ( [IAnalyzer](API\Developer\TraceAnalysis\Trace\IAnalyzer) & Analyzer ) | []
|
FAnalysisContext::Process | /Engine/Source/Developer/TraceAnalysis/Public/Trace/Analysis.h | Creates and starts analysis returning anFAnalysisProcessorinstance which represents the analysis and affords some control over it. | TraceAnalysis | [FAnalysisProcessor](API\Developer\TraceAnalysis\Trace\FAnalysisProcessor) Process ( [IInDataStream](API\Developer\TraceAnalysis\Trace\IInDataStream) & DataStream ) | []
|
FAnalysisContext::SetMessageDelegate | /Engine/Source/Developer/TraceAnalysis/Public/Trace/Analysis.h | Adds a callback to recieve important messages. | TraceAnalysis | void SetMessageDelegate ( [FMessageDelegate](API\Developer\TraceAnalysis\Trace\FMessageDelegate) Delegate ) | []
|
FAnalysisContext | /Engine/Source/Developer/TraceAnalysis/Public/Trace/Analysis.h | Used to describe how a log of trace events should be analyzed and being the analysis on a particular trace stream. | TraceAnalysis | class FAnalysisContext | []
|
FAnalysisProcessor::FImpl::GetLog | /Engine/Source/Developer/TraceAnalysis/Private/Analysis/Processor.h | TraceAnalysis | FMessageLog &42; GetLog&40;&41; | []
|
|
FAnalysisProcessor::FImpl::IsActive | /Engine/Source/Developer/TraceAnalysis/Private/Analysis/Processor.h | TraceAnalysis | bool IsActive&40;&41; const | []
|
|
FAnalysisProcessor::FImpl::PauseAnalysis | /Engine/Source/Developer/TraceAnalysis/Private/Analysis/Processor.h | TraceAnalysis | void PauseAnalysis &40; bool bState &41; | []
|
|
FAnalysisProcessor::FImpl::Run | /Engine/Source/Developer/TraceAnalysis/Private/Analysis/Processor.h | Exit | TraceAnalysis | virtual uint32 Run&40;&41; | []
|
FAnalysisProcessor::FImpl::StopAnalysis | /Engine/Source/Developer/TraceAnalysis/Private/Analysis/Processor.h | TraceAnalysis | void StopAnalysis&40;&41; | []
|
|
FAnalysisProcessor::FImpl::WaitOnAnalysis | /Engine/Source/Developer/TraceAnalysis/Private/Analysis/Processor.h | TraceAnalysis | void WaitOnAnalysis&40;&41; | []
|
|
FAnalysisProcessor::FImpl::FImpl | /Engine/Source/Developer/TraceAnalysis/Private/Analysis/Processor.h | TraceAnalysis | FImpl &40; IInDataStream & DataStream, TArray< IAnalyzer &42; > && InAnalyzers, FMessageDelegate && InMessage &41; | []
|
|
FAnalysisProcessor::FImpl::~FImpl | /Engine/Source/Developer/TraceAnalysis/Private/Analysis/Processor.h | TraceAnalysis | &126;FImpl&40;&41; | []
|
|
FImpl | /Engine/Source/Developer/TraceAnalysis/Private/Analysis/Processor.h | TraceAnalysis | class FImpl : public [FRunnable](API\Runtime\Core\HAL\FRunnable) | []
|
|
FAnalysisProcessor::IsActive | /Engine/Source/Developer/TraceAnalysis/Public/Trace/Analysis.h | Checks if this object instance is valid and currently processing | TraceAnalysis | bool IsActive() const | []
|
FAnalysisProcessor::operator= | /Engine/Source/Developer/TraceAnalysis/Public/Trace/Analysis.h | TraceAnalysis | [FAnalysisProcessor](API\Developer\TraceAnalysis\Trace\FAnalysisProcessor) & operator= ( [FAnalysisProcessor](API\Developer\TraceAnalysis\Trace\FAnalysisProcessor) && ) | []
|
|
FAnalysisProcessor::operator= | /Engine/Source/Developer/TraceAnalysis/Public/Trace/Analysis.h | TraceAnalysis | FAnalysisProcessor & operator&61; &40; const FAnalysisProcessor & &41; | []
|
|
FAnalysisProcessor::Pause | /Engine/Source/Developer/TraceAnalysis/Public/Trace/Analysis.h | Pause or resume the processing. | TraceAnalysis | void Pause ( bool bState ) | []
|
FAnalysisProcessor::Stop | /Engine/Source/Developer/TraceAnalysis/Public/Trace/Analysis.h | End processing a trace stream. | TraceAnalysis | void Stop() | []
|
FAnalysisProcessor::FAnalysisProcessor | /Engine/Source/Developer/TraceAnalysis/Public/Trace/Analysis.h | TraceAnalysis | FAnalysisProcessor() | []
|
|
FAnalysisProcessor::Wait | /Engine/Source/Developer/TraceAnalysis/Public/Trace/Analysis.h | Wait for the entire stream to have been processed and analysed. | TraceAnalysis | void Wait() | []
|
FAnalysisProcessor::FAnalysisProcessor | /Engine/Source/Developer/TraceAnalysis/Public/Trace/Analysis.h | TraceAnalysis | FAnalysisProcessor ( [FAnalysisProcessor](API\Developer\TraceAnalysis\Trace\FAnalysisProcessor) && Rhs ) | []
|
|
FAnalysisProcessor::FAnalysisProcessor | /Engine/Source/Developer/TraceAnalysis/Public/Trace/Analysis.h | TraceAnalysis | FAnalysisProcessor &40; FAnalysisProcessor & &41; | []
|
|
FAnalysisProcessor | /Engine/Source/Developer/TraceAnalysis/Public/Trace/Analysis.h | Represents the processing (e.g. analysis) of a trace stream. Instances are created by constructing anFAnalysisContextobject to marry an event trace with how it should be analyzed. Note that the processing (and thus analysis) happens on another thread. | TraceAnalysis | class FAnalysisProcessor | []
|
FAnalysisProcessor::~FAnalysisProcessor | /Engine/Source/Developer/TraceAnalysis/Public/Trace/Analysis.h | TraceAnalysis | ~FAnalysisProcessor() | []
|
|
FControlClient::Connect | /Engine/Source/Developer/TraceAnalysis/Public/Trace/ControlClient.h | Initiates a connection to a runtime instance to control.
True if a connection was made successfully. | TraceAnalysis | bool Connect ( const TCHAR * Host, uint16 Port ) | []
|
FControlClient::IsConnected | /Engine/Source/Developer/TraceAnalysis/Public/Trace/ControlClient.h | Returns true if the client is currently connected to a runtime | TraceAnalysis | bool IsConnected() const | []
|
FControlClient::Disconnect | /Engine/Source/Developer/TraceAnalysis/Public/Trace/ControlClient.h | Disconnects the client from the runtime. | TraceAnalysis | void Disconnect() | []
|
FControlClient::Send | /Engine/Source/Developer/TraceAnalysis/Public/Trace/ControlClient.h | Sends a raw command to the instance. | TraceAnalysis | void Send ( const TCHAR * Command ) | []
|
FControlClient::SendSendTo | /Engine/Source/Developer/TraceAnalysis/Public/Trace/ControlClient.h | Tells the runtime to attempt to record its trace event log to a socket. | TraceAnalysis | void SendSendTo ( const TCHAR * Host ) | []
|
FControlClient::SendStop | /Engine/Source/Developer/TraceAnalysis/Public/Trace/ControlClient.h | Tells the runtime to stop tracing. | TraceAnalysis | void SendStop() | []
|
FControlClient::SendToggleChannel | /Engine/Source/Developer/TraceAnalysis/Public/Trace/ControlClient.h | Toggles one or more channels on and off. A channel or a comma separated list of channels can be controlled. | TraceAnalysis | void SendToggleChannel ( const TCHAR * Channels, bool bState ) | []
|
FControlClient::Connect | /Engine/Source/Developer/TraceAnalysis/Public/Trace/ControlClient.h | Initiates a connection to a runtime instance to control.
True if a connection was made successfully. | TraceAnalysis | bool Connect ( const [FInternetAddr](API\Runtime\Sockets\FInternetAddr) & Address ) | []
|
FControlClient::SendWriteTo | /Engine/Source/Developer/TraceAnalysis/Public/Trace/ControlClient.h | Tells the runtime to attempt to record its trace event log to a file. | TraceAnalysis | void SendWriteTo ( const TCHAR * Path ) | []
|
FControlClient::~FControlClient | /Engine/Source/Developer/TraceAnalysis/Public/Trace/ControlClient.h | The destructor will ensure disconnection theFControlClientclass goes out of scope. | TraceAnalysis | ~FControlClient() | []
|
FControlClient | /Engine/Source/Developer/TraceAnalysis/Public/Trace/ControlClient.h | Simple helper class for communicating with trace system of a running instance. | TraceAnalysis | class FControlClient | []
|
FFileDataStream::Close | /Engine/Source/Developer/TraceAnalysis/Public/Trace/DataStream.h | Close the file. | TraceAnalysis | virtual void Close() | []
|
FControlClient::Send | /Engine/Source/Developer/TraceAnalysis/Public/Trace/ControlClient.h | TraceAnalysis | void Send &40; const uint8 &42; Data, int Length &41; | []
|
|
FFileDataStream::Open | /Engine/Source/Developer/TraceAnalysis/Public/Trace/DataStream.h | Open the file.
True if the file was opened successfully. | TraceAnalysis | bool Open ( const TCHAR * Path ) | []
|
FFileDataStream::FFileDataStream | /Engine/Source/Developer/TraceAnalysis/Public/Trace/DataStream.h | TraceAnalysis | FFileDataStream() | []
|
|
FFileDataStream::Read | /Engine/Source/Developer/TraceAnalysis/Public/Trace/DataStream.h | Read from the file.
The number of bytes read from the file to Data, or zero in the case of a read failure. | TraceAnalysis | virtual int32 Read ( void * Data, uint32 Size ) | []
|
FFileDataStream::~FFileDataStream | /Engine/Source/Developer/TraceAnalysis/Public/Trace/DataStream.h | TraceAnalysis | ~FFileDataStream() | []
|
|
FFileDataStream | /Engine/Source/Developer/TraceAnalysis/Public/Trace/DataStream.h | An implementation ofIInDataStreamthat reads from a file on disk. | TraceAnalysis | class FFileDataStream : public [UE::Trace::IInDataStream](API\Developer\TraceAnalysis\Trace\IInDataStream) | []
|
FMessageDelegate | /Engine/Source/Developer/TraceAnalysis/Public/Trace/Analysis.h | TraceAnalysis | typedef TBaseDelegate_TwoParams< void, [EAnalysisMessageSeverity](API\Developer\TraceAnalysis\Trace\UE__Trace__EAnalysisMessageSever-), FStringView > FMessageDelegate | []
|
|
FStoreClient::Connect | /Engine/Source/Developer/TraceAnalysis/Public/Trace/StoreClient.h | TraceAnalysis | static [FStoreClient](API\Developer\TraceAnalysis\Trace\FStoreClient) * Connect ( const TCHAR * Host, uint32 Port ) | []
|
|
FStoreClient::FSessionInfo::GetControlPort | /Engine/Source/Developer/TraceAnalysis/Public/Trace/StoreClient.h | TraceAnalysis | uint32 GetControlPort&40;&41; const | []
|
|
FStoreClient::FSessionInfo::GetId | /Engine/Source/Developer/TraceAnalysis/Public/Trace/StoreClient.h | TraceAnalysis | uint32 GetId&40;&41; const | []
|
|
FStoreClient::FSessionInfo::GetIpAddress | /Engine/Source/Developer/TraceAnalysis/Public/Trace/StoreClient.h | TraceAnalysis | uint32 GetIpAddress&40;&41; const | []
|
|
FStoreClient::FSessionInfo::GetTraceId | /Engine/Source/Developer/TraceAnalysis/Public/Trace/StoreClient.h | TraceAnalysis | uint32 GetTraceId&40;&41; const | []
|
|
FSessionInfo | /Engine/Source/Developer/TraceAnalysis/Public/Trace/StoreClient.h | TraceAnalysis | struct FSessionInfo | []
|
|
FStoreClient::FStatus::GetChangeSerial | /Engine/Source/Developer/TraceAnalysis/Public/Trace/StoreClient.h | TraceAnalysis | uint32 GetChangeSerial&40;&41; const | []
|
|
FStoreClient::FStatus::GetRecorderPort | /Engine/Source/Developer/TraceAnalysis/Public/Trace/StoreClient.h | TraceAnalysis | uint32 GetRecorderPort&40;&41; const | []
|
|
FStoreClient::FStatus::GetSettingsSerial | /Engine/Source/Developer/TraceAnalysis/Public/Trace/StoreClient.h | TraceAnalysis | uint32 GetSettingsSerial&40;&41; const | []
|
|
FStoreClient::FStatus::GetStoreDir | /Engine/Source/Developer/TraceAnalysis/Public/Trace/StoreClient.h | TraceAnalysis | FUtf8StringView GetStoreDir&40;&41; const | []
|
|
FStoreClient::FStatus::GetWatchDirectories | /Engine/Source/Developer/TraceAnalysis/Public/Trace/StoreClient.h | TraceAnalysis | void GetWatchDirectories &40; TArray< FString > & OutDirs &41; const | []
|
|
FStatus | /Engine/Source/Developer/TraceAnalysis/Public/Trace/StoreClient.h | TraceAnalysis | struct FStatus | []
|
|
FTraceData | /Engine/Source/Developer/TraceAnalysis/Public/Trace/StoreClient.h | TraceAnalysis | struct FTraceData : public [TUniquePtr< IInDataStream >](API\Runtime\Core\Templates\TUniquePtr) | []
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.