mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-01 21:56:43 +08:00
Ref T515, some minor adjustments
* use validation status messages for prerequisites * SwiftGuiStd::onRequestedConsoleMessage * displayInOverlayWindow for HTML messages
This commit is contained in:
committed by
Mat Sutcliffe
parent
cea6611656
commit
85cf339e04
@@ -53,4 +53,12 @@ namespace BlackGui
|
||||
m_mwaOverlayFrame->showOverlayMessages(messages, false, timeOutMs);
|
||||
return true;
|
||||
}
|
||||
|
||||
bool IMainWindowAccess::displayInOverlayWindow(const QString &html, int timeOutMs)
|
||||
{
|
||||
if (html.isEmpty()) { return false; }
|
||||
if (!m_mwaOverlayFrame) { return false; }
|
||||
m_mwaOverlayFrame->showOverlayHTMLMessage(html, timeOutMs);
|
||||
return true;
|
||||
}
|
||||
} // ns
|
||||
|
||||
Reference in New Issue
Block a user