mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
QML UI: Add QML Log viewer
Add the ability to preview the application log in QML. Signed-off-by: Grace Karanja <gracie.karanja89@gmail.com>
This commit is contained in:
parent
ab7db605e5
commit
ee13c5c282
3 changed files with 56 additions and 0 deletions
|
@ -58,6 +58,7 @@ void QMLManager::loadDives()
|
|||
QString url;
|
||||
if (getCloudURL(url)) {
|
||||
showMessage(get_error_string());
|
||||
appendTextToLog(get_error_string());
|
||||
return;
|
||||
}
|
||||
clear_dive_file_data();
|
||||
|
@ -67,6 +68,7 @@ void QMLManager::loadDives()
|
|||
if (!error) {
|
||||
report_error("filename is now %s", fileNamePrt.data());
|
||||
showMessage(get_error_string());
|
||||
appendTextToLog(get_error_string());
|
||||
set_filename(fileNamePrt.data(), true);
|
||||
} else {
|
||||
showMessage(get_error_string());
|
||||
|
@ -114,15 +116,18 @@ void QMLManager::saveChanges()
|
|||
QString fileName;
|
||||
if (getCloudURL(fileName)) {
|
||||
showMessage(get_error_string());
|
||||
appendTextToLog(get_error_string());
|
||||
return;
|
||||
}
|
||||
|
||||
if (save_dives(fileName.toUtf8().data())) {
|
||||
showMessage(get_error_string());
|
||||
appendTextToLog(get_error_string());
|
||||
return;
|
||||
}
|
||||
|
||||
showMessage("Dives saved.");
|
||||
appendTextToLog("Dive saved.");
|
||||
set_filename(fileName.toUtf8().data(), true);
|
||||
mark_divelist_changed(false);
|
||||
}
|
||||
|
@ -130,9 +135,26 @@ void QMLManager::saveChanges()
|
|||
void QMLManager::addDive()
|
||||
{
|
||||
showMessage("Adding new dive.");
|
||||
appendTextToLog("Adding new dive.");
|
||||
DiveListModel::instance()->startAddDive();
|
||||
}
|
||||
|
||||
QString QMLManager::logText() const
|
||||
{
|
||||
return m_logText;
|
||||
}
|
||||
|
||||
void QMLManager::setLogText(const QString &logText)
|
||||
{
|
||||
m_logText = logText;
|
||||
}
|
||||
|
||||
void QMLManager::appendTextToLog(const QString &newText)
|
||||
{
|
||||
m_logText += "\n" + newText;
|
||||
}
|
||||
|
||||
|
||||
bool QMLManager::saveCloudPassword() const
|
||||
{
|
||||
return m_saveCloudPassword;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue