Navigation
Unreal Engine C++ API Reference > Developer > MessageLog
Inheritance Hierarchy
References
Module | MessageLog |
Header | /Engine/Source/Developer/MessageLog/Public/IMessageLogListing.h |
Include | #include "IMessageLogListing.h" |
Syntax
class IMessageLogListing : public [IMessageLog](API\Runtime\Core\Logging\IMessageLog)
Remarks
A message log listing, such as the Compiler Log, or the Map Check Log.
Functions
Type | Name | Description |
---|---|---|
void | ClearMessages () | Clears messages (if paged, in the current page) |
void | ClearSelectedMessages () | Clears the message selection |
void | ExecuteToken ( const TSharedRef< class IMessageTok... ) | Performs an operation depending on the token (execute hyperlink etc.) |
FString | GetAllMessagesAsString () | Gets all the unfiltered messages as a single piece of text |
const TArray... | GetFilteredMessages () | Gets a list of the filtered messages for the specific log listing |
const FText ... | GetLabel () | Gets the message log listing label |
const TArray... | GetMessageFilters () | Gets the set of message filters used when displaying messages |
const FName ... | GetName () | Gets the message log listing unique name |
const TArray... | GetSelectedMessages () | Gets a list of the selected messages for the specific log listing |
FString | GetSelectedMessagesAsString () | Gets all the unfiltered selected messages as a single piece of text |
void | InvertSelectedMessages () | Inverts the message selection |
bool | IsMessageSelected ( const TSharedRef< class FTokenizedM... ) | Get the message selection state |
IMessageLogL... | OnDataChanged () | |
IMessageToke... | OnMessageTokenClicked () | |
IMessageLogL... | OnPageSelectionChanged () | |
IMessageLogL... | OnSelectionChanged () | |
void | SelectMessage ( const TSharedRef< class FTokenizedM..., bool bSelected ) | Set the message selection state |
void | SelectMessages ( const TArray< TSharedRef< class FTo... ) | Sets multiple selected messages |
void | SetLabel ( const FText& InLogLabel ) | Sets the message log listing label |
Classes
Type | Name | Description |
---|---|---|
Public class | FChangedEvent | Broadcasts whenever we are informed of a change in the IMessageLogListing |
Public class | FOnPageSelectionChangedEvent | Broadcasts whenever page selection state is changed |
Public class | FOnSelectionChangedEvent | Broadcasts whenever selection state is changed |
Public class | IMessageTokenClickedEvent | Broadcasts when a token is clicked/executed |