summaryrefslogtreecommitdiffstats
path: root/qt-ui
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-06-12 06:48:51 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-06-12 10:21:16 -0700
commitef95bd9a2784db7468df01bebf0166f73179e7a4 (patch)
tree5be3eec97240e182a4e199c996b3493fc5cdaf68 /qt-ui
parent57f2c81125f45b1f07122ad9c0295a6c76a5e4fe (diff)
downloadsubsurface-ef95bd9a2784db7468df01bebf0166f73179e7a4.tar.gz
Indicate that there are unsaved changes with a '*' in the window title
This seems to be a fairly common way to indicate this property. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
-rw-r--r--qt-ui/mainwindow.cpp3
-rw-r--r--qt-ui/mainwindow.h2
2 files changed, 3 insertions, 2 deletions
diff --git a/qt-ui/mainwindow.cpp b/qt-ui/mainwindow.cpp
index 80f9fc9f1..571eb15f1 100644
--- a/qt-ui/mainwindow.cpp
+++ b/qt-ui/mainwindow.cpp
@@ -1429,7 +1429,8 @@ void MainWindow::setTitle(enum MainWindowTitleFormat format)
QFile f(existing_filename);
QFileInfo fileInfo(f);
QString fileName(fileInfo.fileName());
- setWindowTitle("Subsurface: " + fileName);
+ QString unsaved = (unsaved_changes() ? " *" : "");
+ setWindowTitle("Subsurface: " + fileName + unsaved);
break;
}
}
diff --git a/qt-ui/mainwindow.h b/qt-ui/mainwindow.h
index 6a5f95921..9bed1d05f 100644
--- a/qt-ui/mainwindow.h
+++ b/qt-ui/mainwindow.h
@@ -72,7 +72,7 @@ public:
DivePlannerWidget *divePlannerWidget();
PlannerSettingsWidget *divePlannerSettingsWidget();
LocationInformationWidget *locationInformationWidget();
- void setTitle(enum MainWindowTitleFormat format);
+ void setTitle(enum MainWindowTitleFormat format = MWTF_FILENAME);
// Some shortcuts like "change DC" or "copy/paste dive components"
// should only be enabled when the profile's visible.