Show 'read only' in title of window if a pattern file in read only state.
--HG-- branch : feature
This commit is contained in:
parent
1f624ec69b
commit
11aae952cb
|
@ -4164,7 +4164,7 @@ QString MainWindow::GetPatternFileName()
|
||||||
{
|
{
|
||||||
shownName = StrippedName(curFile);
|
shownName = StrippedName(curFile);
|
||||||
}
|
}
|
||||||
shownName += "[*]";
|
shownName += QLatin1Literal("[*]");
|
||||||
return shownName;
|
return shownName;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4177,15 +4177,15 @@ QString MainWindow::GetMeasurementFileName()
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
QString shownName = " [";
|
QString shownName(" [");
|
||||||
shownName += StrippedName(AbsoluteMPath(curFile, doc->MPath()));
|
shownName += StrippedName(AbsoluteMPath(curFile, doc->MPath()));
|
||||||
|
|
||||||
if(mChanges)
|
if(mChanges)
|
||||||
{
|
{
|
||||||
shownName += "*";
|
shownName += QLatin1Literal("*");
|
||||||
}
|
}
|
||||||
|
|
||||||
shownName += "]";
|
shownName += QLatin1Literal("]");
|
||||||
return shownName;
|
return shownName;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4193,7 +4193,14 @@ QString MainWindow::GetMeasurementFileName()
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
void MainWindow::UpdateWindowTitle()
|
void MainWindow::UpdateWindowTitle()
|
||||||
{
|
{
|
||||||
setWindowTitle(GetPatternFileName()+GetMeasurementFileName());
|
if (not patternReadOnly)
|
||||||
|
{
|
||||||
|
setWindowTitle(GetPatternFileName()+GetMeasurementFileName());
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
setWindowTitle(GetPatternFileName()+GetMeasurementFileName() + " " + tr("(read only)"));
|
||||||
|
}
|
||||||
setWindowFilePath(curFile);
|
setWindowFilePath(curFile);
|
||||||
|
|
||||||
#if defined(Q_OS_MAC)
|
#if defined(Q_OS_MAC)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user