Navigation
API > API/Plugins > API/Plugins/NetcodeUnitTest > API/Plugins/NetcodeUnitTest/UI
References
| Module | NetcodeUnitTest |
| Header | /Engine/Plugins/NetcodeUnitTest/NetcodeUnitTest/Source/NetcodeUnitTest/Public/UI/SLogWidget.h |
| Include | #include "UI/SLogWidget.h" |
Syntax
struct FLogTabInfo
Remarks
Struct containing tab-specific information
Variables
| Type | Name | Description | |
|---|---|---|---|
| bool | bHighlightFind | Whether or not to highlight text, from searches | |
| bool | bLastFindWasUp | Whether or not the last search direction was upwards | |
| bool | bTabOpen | Whether or not the tab is presently open (some tabs, such as the 'debug' tab, start off closed if not explicitly enabled) | |
| ELogType | Filter | The log line filter the tab should use | |
| TSharedPtr< SEditableTextBox > | FindBox | The text box for the 'Find' bar | |
| TSharedPtr< SBorder > | FindErrorLabel | The label that's displayed when there's an error searching, or searching past the start/end of the list | |
| TSharedPtr< STextBlock > | FindErrorText | The text block for the above label | |
| TArray< TSharedPtr< SWidget > > | FindWidgets | The list of widgets for the 'Find' bar | |
| FString | Label | The label to apply to the tab | |
| FString | LastFind | Caches the text of the last search | |
| TSharedPtr< SListView< TSharedRef< FLogLine > > > | LogListView | Reference to the log list view for the tab | |
| uint8 | Priority | When a logged line requests focus, this determines the priority for selecting what tab to focus (lower = higher priority) | |
| FName | TabIdName | Automatically generated name given to the tab | |
| TArray< TSharedRef< FLogLine > > | TabLogLines | The list of log lines for this particular tab | |
| TWeakPtr< SDockTab > | TabWidget | Stores a reference to the created tab (a weak reference, so it does not block destruction, or require cleanup) | |
| FString | ToolTip | The tooltip/description to apply to the tab |
Constructors
| Type | Name | Description | |
|---|---|---|---|
FLogTabInfo
(
FString InLabel, |