mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-21 16:50:53 +01:00
Add new QCheckBox in QET settings for Keep projects in read-only, their
files will cannot be over written git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4872 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
@@ -83,6 +83,7 @@ QETProject::QETProject(const QString &path, QObject *parent) :
|
||||
m_auto_conductor (true ),
|
||||
m_elements_collection (nullptr)
|
||||
{
|
||||
QSettings settings;
|
||||
//Open the file
|
||||
QFile project_file(path);
|
||||
if (!project_file.open(QIODevice::ReadOnly | QIODevice::Text))
|
||||
@@ -798,6 +799,10 @@ QETResult QETProject::write()
|
||||
// if the project was opened read-only and the file is still non-writable, do not save the project
|
||||
if (isReadOnly() && !QFileInfo(file_path_).isWritable())
|
||||
return(QString("the file %1 was opened read-only and thus will not be written").arg(file_path_));
|
||||
|
||||
if (settings.value("qetproject/readonly", true).toBool()){
|
||||
return(QString("the file %1 was opened read-only and thus will not be written").arg(file_path_));
|
||||
}
|
||||
|
||||
//Get the project in xml
|
||||
QDomDocument xml_project;
|
||||
|
||||
Reference in New Issue
Block a user