Navigation
API > API/Plugins > API/Plugins/NetcodeUnitTest
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TSharedRef< SWindow > OpenLogDialog_NonModal
(
EAppMsgType::Type InMessageType, |
Opens a non-modal/non-blocking message box, which returns its result through a delegate/callback, using a reference to the created window, to identify which dialog has returned a result (in case there are multiple dialog windows) | UI/SLogDialog.h | |
TSharedRef< SWindow > OpenLogDialog_NonModal
(
EAppMsgType::Type InMessageType, |
UI/SLogDialog.h |
OpenLogDialog_NonModal(EAppMsgType::Type, const FText &, const FText &, FOnLogDialogResult)
Description
Opens a non-modal/non-blocking message box, which returns its result through a delegate/callback, using a reference to the created window, to identify which dialog has returned a result (in case there are multiple dialog windows)
| Name | OpenLogDialog_NonModal |
| Type | function |
| Header File | /Engine/Plugins/NetcodeUnitTest/NetcodeUnitTest/Source/NetcodeUnitTest/Public/UI/SLogDialog.h |
| Include Path | #include "UI/SLogDialog.h" |
| Source | /Engine/Plugins/NetcodeUnitTest/NetcodeUnitTest/Source/NetcodeUnitTest/Private/UI/SLogDialog.cpp |
TSharedRef < SWindow > OpenLogDialog_NonModal
(
EAppMsgType::Type InMessageType,
const FText & InMessage,
const FText & InTitle,
FOnLogDialogResult ResultCallback
)
Returns the dialog window reference, which the calling code should store, to identify which dialog returned
Parameters
| Name | Remarks |
|---|---|
| InMessageType | The type of message box to display (e.g. 'ok', or 'yes'/'no' etc.) |
| InMessage | The message to display in the message box |
| InTitle | The title to display for the message box |
| ResultCallback | Optionally, specify a delegate/callback instance, where results should be returned |
OpenLogDialog_NonModal(EAppMsgType::Type, const FString &, const FString &, FOnLogDialogResult)
| Name | OpenLogDialog_NonModal |
| Type | function |
| Header File | /Engine/Plugins/NetcodeUnitTest/NetcodeUnitTest/Source/NetcodeUnitTest/Public/UI/SLogDialog.h |
| Include Path | #include "UI/SLogDialog.h" |
TSharedRef < SWindow > OpenLogDialog_NonModal
(
EAppMsgType::Type InMessageType,
const FString & InMessage,
const FString & InTitle,
FOnLogDialogResult ResultCallback
)