mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
QML UI: Show log correctly
Correctly show the log messages. The log window will display all messages emitted by the QML Manager class. Signed-off-by: Grace Karanja <gracie.karanja89@gmail.com>
This commit is contained in:
parent
cd28082c39
commit
56771159a8
2 changed files with 18 additions and 4 deletions
|
@ -56,6 +56,7 @@ void QMLManager::savePreferences()
|
|||
void QMLManager::loadDives()
|
||||
{
|
||||
showMessage("Loading dives...");
|
||||
appendTextToLog("Loading dives...");
|
||||
QString url;
|
||||
if (getCloudURL(url)) {
|
||||
showMessage(get_error_string());
|
||||
|
@ -71,8 +72,10 @@ void QMLManager::loadDives()
|
|||
showMessage(get_error_string());
|
||||
appendTextToLog(get_error_string());
|
||||
set_filename(fileNamePrt.data(), true);
|
||||
appendTextToLog(fileNamePrt.data());
|
||||
} else {
|
||||
showMessage(get_error_string());
|
||||
appendTextToLog(get_error_string());
|
||||
}
|
||||
process_dives(false, false);
|
||||
|
||||
|
@ -148,11 +151,13 @@ QString QMLManager::logText() const
|
|||
void QMLManager::setLogText(const QString &logText)
|
||||
{
|
||||
m_logText = logText;
|
||||
emit logTextChanged();
|
||||
}
|
||||
|
||||
void QMLManager::appendTextToLog(const QString &newText)
|
||||
{
|
||||
m_logText += "\n" + newText;
|
||||
emit logTextChanged();
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue