[qet] qet/qet: [4882] Remove files protect to settings |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/qet Archives
]
Revision: 4882
Author: scorpio810
Date: 2017-01-27 18:42:58 +0100 (Fri, 27 Jan 2017)
Log Message:
-----------
Remove files protect to settings
Modified Paths:
--------------
trunk/sources/configpages.cpp
trunk/sources/configpages.h
trunk/sources/qetproject.cpp
Modified: trunk/sources/configpages.cpp
===================================================================
--- trunk/sources/configpages.cpp 2017-01-26 21:01:26 UTC (rev 4881)
+++ trunk/sources/configpages.cpp 2017-01-27 17:42:58 UTC (rev 4882)
@@ -238,7 +238,6 @@
bool highlight_integrated_elements = settings.value("diagrameditor/highlight-integrated-elements", true).toBool();
bool terminal_exportlist = settings.value("nomenclature-exportlist", true).toBool();
QString default_element_informations = settings.value("elementeditor/default-informations", "").toString();
- bool readonly = settings.value("qetproject/readonly", false).toBool();
appearance_ = new QGroupBox(tr("Apparence"), this);
use_system_colors_ = new QCheckBox(tr("Utiliser les couleurs du système"), appearance_);
@@ -250,7 +249,6 @@
folio_panel_ = new QCheckBox(tr("Utiliser les labels de folio à la place de leurs ID"), projects_view_mode_);
terminal_exportlist_ = new QCheckBox(tr("Exporter les bornes dans la nomenclature"), projects_view_mode_);
m_zoom_out_beyond_folio = new QCheckBox(tr("Autoriser le dézoom au delà du folio"), this);
- readonly_ = new QCheckBox(tr("Keep projects in read-only, their files will cannot be over written"), this);
elements_management_ = new QGroupBox(tr("Gestion des éléments"), this);
highlight_integrated_elements_ = new QCheckBox(tr("Mettre en valeur dans le panel les éléments fraîchement intégrés", "configuration option"));
@@ -270,7 +268,6 @@
save_label_paste_ -> setChecked(save_label_paste);
folio_panel_ ->setChecked(panel_folio);
terminal_exportlist_ ->setChecked(terminal_exportlist);
- readonly_ ->setChecked(readonly);
if (tabbed) {
tabbed_mode_ -> setChecked(true);
@@ -295,7 +292,6 @@
projects_view_mode_layout -> addWidget(save_label_paste_);
projects_view_mode_layout -> addWidget(folio_panel_);
projects_view_mode_layout -> addWidget(terminal_exportlist_);
- projects_view_mode_layout -> addWidget(readonly_);
projects_view_mode_ -> setLayout(projects_view_mode_layout);
@@ -363,7 +359,6 @@
settings.setValue("diagrameditor/zoom-out-beyond-of-folio", m_zoom_out_beyond_folio->isChecked());
settings.setValue("genericpanel/folio",folio_panel_->isChecked());
settings.setValue("nomenclature/terminal-exportlist",terminal_exportlist_->isChecked());
- settings.setValue("qetproject/readonly",readonly_->isChecked());
}
/// @return l'icone de cette page
Modified: trunk/sources/configpages.h
===================================================================
--- trunk/sources/configpages.h 2017-01-26 21:01:26 UTC (rev 4881)
+++ trunk/sources/configpages.h 2017-01-27 17:42:58 UTC (rev 4882)
@@ -100,7 +100,6 @@
QCheckBox *save_label_paste_;
QCheckBox *folio_panel_;
QCheckBox *terminal_exportlist_;
- QCheckBox *readonly_;
QGroupBox *projects_view_mode_;
QRadioButton *windowed_mode_;
QRadioButton *tabbed_mode_;
Modified: trunk/sources/qetproject.cpp
===================================================================
--- trunk/sources/qetproject.cpp 2017-01-26 21:01:26 UTC (rev 4881)
+++ trunk/sources/qetproject.cpp 2017-01-27 17:42:58 UTC (rev 4882)
@@ -791,7 +791,6 @@
*/
QETResult QETProject::write()
{
- QSettings settings;
// this operation requires a filepath
if (file_path_.isEmpty())
return(QString("unable to save project to file: no filepath was specified"));
@@ -799,11 +798,8 @@
// 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, see QET settings for disable files protection").arg(file_path_));
- }
+
//Get the project in xml
QDomDocument xml_project;
xml_project.appendChild(xml_project.importNode(toXml().documentElement(), true));
@@ -832,7 +828,7 @@
if (read_only_ != read_only)
{
//keep the file to which this project is read-only
- read_only_file_path_ = file_path_;
+ read_only_file_path_ = file_path_;
read_only_ = read_only;
emit(readOnlyChanged(this, read_only));
}