1 // Copyright (C) 2014-2019 CEA/DEN, EDF R&D
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #include "ModuleBase_Preferences.h"
21 //#include "ModuleBase_Constants.h"
23 #include <Config_PropManager.h>
25 #include <TopAbs_ShapeEnum.hxx>
27 #include <SUIT_ResourceMgr.h>
28 #include <SUIT_PreferenceMgr.h>
32 #include <QApplication>
33 #include <QDialogButtonBox>
34 #include <QPushButton>
36 const QString ModuleBase_Preferences::VIEWER_SECTION = "Viewer";
37 const QString ModuleBase_Preferences::MENU_SECTION = "Menu";
39 SUIT_ResourceMgr* ModuleBase_Preferences::myResourceMgr = 0;
41 SUIT_ResourceMgr* ModuleBase_Preferences::resourceMgr()
44 myResourceMgr = new SUIT_ResourceMgr("SHAPER");
45 myResourceMgr->setCurrentFormat("xml");
50 bool ModuleBase_Preferences::editPreferences(ModuleBase_Prefs& theModified)
52 ModuleBase_PreferencesDlg aDlg(resourceMgr(), QApplication::activeWindow());
54 if (aDlg.isChanged()) {
55 aDlg.modified(theModified);
56 resourceMgr()->save();
62 void ModuleBase_Preferences::updateConfigByResources()
64 Config_Properties aProps = Config_PropManager::getProperties();
65 Config_Properties::iterator aIt;
66 for (aIt = aProps.begin(); aIt != aProps.end(); ++aIt) {
67 Config_Prop* aProp = (*aIt);
68 QString aVal = myResourceMgr->stringValue(QString(aProp->section().c_str()),
69 QString(aProp->name().c_str()));
70 if (!aVal.isEmpty()) {
71 aProp->setValue(aVal.toStdString());
76 void ModuleBase_Preferences::updateResourcesByConfig()
78 Config_Properties aProps = Config_PropManager::getProperties();
79 Config_Properties::iterator aIt;
80 for (aIt = aProps.begin(); aIt != aProps.end(); ++aIt) {
81 Config_Prop* aProp = (*aIt);
82 myResourceMgr->setValue(QString(aProp->section().c_str()), QString(aProp->name().c_str()),
83 QString(aProp->value().c_str()));
87 void ModuleBase_Preferences::resetConfig()
89 Config_Properties aProps = Config_PropManager::getProperties();
90 Config_Properties::iterator aIt;
91 for (aIt = aProps.begin(); aIt != aProps.end(); ++aIt) {
92 Config_Prop* aProp = (*aIt);
93 aProp->setValue(aProp->defaultValue());
97 void ModuleBase_Preferences::loadCustomProps()
101 QStringList aSections = myResourceMgr->sections();
102 foreach (QString aSection, aSections)
104 QStringList aParams = myResourceMgr->parameters(aSection);
105 foreach (QString aParam, aParams)
107 Config_Prop* aProp = Config_PropManager::registerProp(aSection.toStdString(),
108 aParam.toStdString(), "", Config_Prop::Disabled);
109 aProp->setValue(myResourceMgr->stringValue(aSection, aParam).toStdString());
115 void ModuleBase_Preferences::createEditContent(ModuleBase_IPrefMgr* thePref, int thePage)
117 thePref->prefMgr()->setItemIcon(thePage, QIcon(":pictures/module.png"));
118 createCustomPage(thePref, thePage);
121 void ModuleBase_Preferences::resetResourcePreferences(SUIT_PreferenceMgr* thePref)
126 QtxResourceMgr::WorkingMode aPrev =
127 thePref->resourceMgr()->setWorkingMode(QtxResourceMgr::IgnoreUserValues);
129 thePref->resourceMgr()->setWorkingMode(aPrev);
132 void ModuleBase_Preferences::resetConfigPropPreferences(SUIT_PreferenceMgr* thePref)
135 updateResourcesByConfig();
137 // retrieve the reset resource values to the preferences items
138 Config_Properties aProps = Config_PropManager::getProperties();
139 Config_Properties::iterator aIt;
141 QStringList aSections;
142 for (aIt = aProps.begin(); aIt != aProps.end(); ++aIt) {
143 Config_Prop* aProp = (*aIt);
144 aValues.append(QString(aProp->name().c_str()));
145 if (!aSections.contains(aProp->section().c_str()))
146 aSections.append(aProp->section().c_str());
147 QtxPreferenceItem* anItem = thePref->findItem(QString(aProp->title().c_str()), true);
153 void ModuleBase_Preferences::createCustomPage(ModuleBase_IPrefMgr* thePref, int thePageId)
155 SUIT_ResourceMgr* aResMgr = ModuleBase_Preferences::resourceMgr();
156 bool isResModified = false;
158 // Make a Tab from each section
159 std::list<std::string> aSections = Config_PropManager::getSections();
160 std::list<std::string>::const_iterator it;
161 for (it = aSections.cbegin(); it != aSections.cend(); ++it) {
162 Config_Properties aProps = Config_PropManager::getProperties(*it);
163 int aTab = thePref->prefMgr()->addItem(QString((*it).c_str()), thePageId);
164 thePref->prefMgr()->setItemProperty("columns", 2, aTab);
166 Config_Properties::const_iterator aIt;
167 for (aIt = aProps.cbegin(); aIt != aProps.cend(); ++aIt) {
168 Config_Prop* aProp = (*aIt);
169 // check that the property is defined
170 QString aSection(aProp->section().c_str());
171 QString aName(aProp->name().c_str());
172 if (!aResMgr->hasValue(aSection, aName)) {
173 aResMgr->setValue(aSection, aName, QString(aProp->value().c_str()));
174 isResModified = true;
177 if (aProp->type() != Config_Prop::Disabled) {
178 SUIT_PreferenceMgr::PrefItemType aPrefType = SUIT_PreferenceMgr::Auto;
179 if (aProp->type() == Config_Prop::Directory) {
180 aPrefType = SUIT_PreferenceMgr::File;
182 aPrefType = (SUIT_PreferenceMgr::PrefItemType) aProp->type();
184 int anId = thePref->addPreference(QObject::tr(aProp->title().c_str()), aTab, aPrefType,
185 QString::fromStdString(aProp->section()),
186 QString::fromStdString(aProp->name()));
187 if(aProp->type() == Config_Prop::Directory) {
188 thePref->setItemProperty("path_type", Qtx::PT_Directory, anId);
190 if (aPrefType == SUIT_PreferenceMgr::DblSpin) {
191 if (aProp->min() != "") {
192 double aMin = QString(aProp->min().c_str()).toDouble();
193 thePref->setItemProperty("min", aMin, anId);
195 if (aProp->max() != "") {
196 double aMax = QString(aProp->max().c_str()).toDouble();
197 thePref->setItemProperty("max", aMax, anId);
200 if (aPrefType == SUIT_PreferenceMgr::IntSpin) {
201 if (aProp->min() != "") {
202 int aMin = QString(aProp->min().c_str()).toInt();
203 thePref->setItemProperty("min", aMin, anId);
205 if (aProp->max() != "") {
206 int aMax = QString(aProp->max().c_str()).toInt();
207 thePref->setItemProperty("max", aMax, anId);
216 * Implementation of preferences manager interface
218 class ModuleBase_PrefMgr: public ModuleBase_IPrefMgr
222 /// \param theMgr a preferences manager
223 ModuleBase_PrefMgr(ModuleBase_PreferencesMgr* theMgr):myMgr(theMgr) {}
225 virtual int addPreference(const QString& theLbl, int pId,
226 SUIT_PreferenceMgr::PrefItemType theType,
227 const QString& theSection, const QString& theName )
229 return myMgr->addItem(theLbl, pId, theType, theSection, theName);
232 virtual void setItemProperty( const QString& thePropName, const QVariant& theValue,
233 const int theId = -1) {
234 myMgr->setItemProperty(thePropName, theValue, theId);
237 virtual SUIT_PreferenceMgr* prefMgr() const { return myMgr; }
240 ModuleBase_PreferencesMgr* myMgr;
243 //**********************************************************
244 //**********************************************************
245 //**********************************************************
246 ModuleBase_PreferencesDlg::ModuleBase_PreferencesDlg(SUIT_ResourceMgr* theResurces,
248 : QDialog(theParent),
251 setWindowTitle(tr("Edit preferences"));
253 QVBoxLayout* main = new QVBoxLayout(this);
257 myPreferences = new ModuleBase_PreferencesMgr(theResurces, this);
258 main->addWidget(myPreferences);
260 setFocusProxy(myPreferences);
261 myPreferences->setFrameStyle(QFrame::Box | QFrame::Sunken);
263 QDialogButtonBox* aBtnBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel |
264 QDialogButtonBox::Reset,
265 Qt::Horizontal, this);
266 QPushButton* aDefaultButton = aBtnBox->button(QDialogButtonBox::Reset);
267 aDefaultButton->setText(tr("Default"));
268 connect(aDefaultButton, SIGNAL(clicked()), this, SLOT(onDefault()));
270 main->addWidget(aBtnBox);
271 connect(aBtnBox, SIGNAL(accepted()), this, SLOT(accept()));
272 connect(aBtnBox, SIGNAL(rejected()), this, SLOT(reject()));
275 myPreferences->retrieve();
276 setMinimumSize(820, 300);
279 ModuleBase_PreferencesDlg::~ModuleBase_PreferencesDlg()
283 void ModuleBase_PreferencesDlg::createEditors()
285 int aPage = myPreferences->addItem(tr("Desktop"));
286 myPreferences->setItemIcon(aPage, QIcon(":pictures/view_prefs.png"));
288 createMenuPage(aPage);
289 createViewerPage(aPage);
291 aPage = myPreferences->addItem(tr("Module"));
292 myPreferences->setItemIcon(aPage, QIcon(":pictures/module.png"));
294 ModuleBase_PrefMgr aMgr(myPreferences);
295 ModuleBase_Preferences::createEditContent(&aMgr, aPage);
298 void ModuleBase_PreferencesDlg::createViewerPage(int thePageId)
300 int viewTab = myPreferences->addItem(tr("Viewer"), thePageId);
302 QStringList gradList;
303 gradList << tr("Horizontal gradient") << tr("Vertical gradient") << tr("First diagonal gradient")
304 << tr("Second diagonal gradient") << tr("First corner gradient")
305 << tr("Second corner gradient") << tr("Third corner gradient")
306 << tr("Fourth corner gradient");
308 QList<QVariant> idList;
309 for (int i = 0; i < gradList.size(); i++)
312 int bgGroup = myPreferences->addItem(tr("Background"), viewTab);
314 QString aImgFiles("Image files (*.bmp *.gif *.pix *.xwd *.rgb *.rs)");
316 int bgId = myPreferences->addItem(tr("Viewer 3d"), bgGroup, SUIT_PreferenceMgr::Background,
317 ModuleBase_Preferences::VIEWER_SECTION, "background");
318 myPreferences->setItemProperty("gradient_names", gradList, bgId);
319 myPreferences->setItemProperty("gradient_ids", idList, bgId);
320 myPreferences->setItemProperty("texture_enabled", true, bgId);
321 myPreferences->setItemProperty("texture_center_enabled", true, bgId);
322 myPreferences->setItemProperty("texture_tile_enabled", true, bgId);
323 myPreferences->setItemProperty("texture_stretch_enabled", true, bgId);
324 myPreferences->setItemProperty("custom_enabled", false, bgId);
325 myPreferences->setItemProperty("image_formats", aImgFiles, bgId);
327 // Create other parameters group in viewer tab
328 int selectionGroup = myPreferences->addItem(tr("Default selection"), viewTab);
329 myPreferences->setItemProperty("columns", 3, selectionGroup);
330 myPreferences->addItem(tr("Faces"), selectionGroup,
331 SUIT_PreferenceMgr::Bool,
332 ModuleBase_Preferences::VIEWER_SECTION, "face-selection");
333 myPreferences->addItem(tr("Edges"), selectionGroup,
334 SUIT_PreferenceMgr::Bool,
335 ModuleBase_Preferences::VIEWER_SECTION, "edge-selection");
336 myPreferences->addItem(tr("Vertices"), selectionGroup,
337 SUIT_PreferenceMgr::Bool,
338 ModuleBase_Preferences::VIEWER_SECTION, "vertex-selection");
340 int sensitivityGroup = myPreferences->addItem(tr("Selection sensitivity"), viewTab);
341 myPreferences->setItemProperty("columns", 2, sensitivityGroup);
342 myPreferences->addItem(tr("Vertex"), sensitivityGroup, SUIT_PreferenceMgr::DblSpin,
343 ModuleBase_Preferences::VIEWER_SECTION, "point-selection-sensitivity");
344 myPreferences->addItem(tr("Edge"), sensitivityGroup, SUIT_PreferenceMgr::DblSpin,
345 ModuleBase_Preferences::VIEWER_SECTION, "edge-selection-sensitivity");
347 int highlightGroup = myPreferences->addItem(tr("Additional highlighting"), viewTab);
348 myPreferences->setItemProperty("columns", 2, highlightGroup);
349 myPreferences->addItem(tr("In 3d mode"), highlightGroup,
350 SUIT_PreferenceMgr::Bool, ModuleBase_Preferences::VIEWER_SECTION, "highlighting-3d");
351 myPreferences->addItem(tr("In 2d mode"), highlightGroup,
352 SUIT_PreferenceMgr::Bool, ModuleBase_Preferences::VIEWER_SECTION, "highlighting-2d");
354 int colorScaleGroup = myPreferences->addItem(tr("Color scale"), viewTab);
355 myPreferences->setItemProperty("columns", 4, colorScaleGroup);
356 int aItem = myPreferences->addItem(tr("X position"), colorScaleGroup,
357 SUIT_PreferenceMgr::Double, ModuleBase_Preferences::VIEWER_SECTION, "scalar_bar_x_position");
358 myPreferences->setItemProperty("min", 0, aItem);
359 myPreferences->setItemProperty("max", 1, aItem);
361 aItem = myPreferences->addItem(tr("Y position"), colorScaleGroup,
362 SUIT_PreferenceMgr::Double, ModuleBase_Preferences::VIEWER_SECTION, "scalar_bar_y_position");
363 myPreferences->setItemProperty("min", 0, aItem);
364 myPreferences->setItemProperty("max", 1, aItem);
366 aItem = myPreferences->addItem(tr("Width"), colorScaleGroup,
367 SUIT_PreferenceMgr::Double, ModuleBase_Preferences::VIEWER_SECTION, "scalar_bar_width");
368 myPreferences->setItemProperty("min", 0, aItem);
369 myPreferences->setItemProperty("max", 1, aItem);
371 aItem = myPreferences->addItem(tr("Height"), colorScaleGroup,
372 SUIT_PreferenceMgr::Double, ModuleBase_Preferences::VIEWER_SECTION, "scalar_bar_height");
373 myPreferences->setItemProperty("min", 0, aItem);
374 myPreferences->setItemProperty("max", 1, aItem);
376 aItem = myPreferences->addItem(tr("Intervals number"), colorScaleGroup,
377 SUIT_PreferenceMgr::Integer, ModuleBase_Preferences::VIEWER_SECTION, "scalar_bar_nb_intervals");
378 myPreferences->setItemProperty("min", 0, aItem);
379 myPreferences->setItemProperty("max", 100, aItem);
381 aItem = myPreferences->addItem(tr("Text height"), colorScaleGroup,
382 SUIT_PreferenceMgr::Integer, ModuleBase_Preferences::VIEWER_SECTION, "scalar_bar_text_height");
383 myPreferences->setItemProperty("min", 0, aItem);
384 myPreferences->setItemProperty("max", 100, aItem);
386 aItem = myPreferences->addItem(tr("Text color"), colorScaleGroup,
387 SUIT_PreferenceMgr::Color, ModuleBase_Preferences::VIEWER_SECTION, "scalar_bar_text_color");
390 void ModuleBase_PreferencesDlg::createMenuPage(int thePageId)
392 int aMenuTab = myPreferences->addItem(tr("Main menu"), thePageId);
394 int aSizeGroup = myPreferences->addItem(tr("Size"), aMenuTab);
395 myPreferences->setItemProperty("columns", 1, aSizeGroup);
397 int aRowsNb = myPreferences->addItem(tr("Number of rows"), aSizeGroup,
398 SUIT_PreferenceMgr::IntSpin,
399 ModuleBase_Preferences::MENU_SECTION,
401 myPreferences->setItemProperty("min", 1, aRowsNb);
402 myPreferences->setItemProperty("max", 6, aRowsNb);
404 myPreferences->addItem(tr("Show Status Bar"), aSizeGroup,
405 SUIT_PreferenceMgr::Bool, ModuleBase_Preferences::MENU_SECTION,
409 void ModuleBase_PreferencesDlg::accept()
411 myPreferences->store();
414 // Save custom properties
415 ModuleBase_Preferences::updateConfigByResources();
419 void ModuleBase_PreferencesDlg::modified(ModuleBase_Prefs& theModified) const
421 theModified = myPreferences->modified();
424 void ModuleBase_PreferencesDlg::onDefault()
426 // reset main resources. It throwns all resource manager items to the
427 // initial/default state. If there is no a default state of the item,
428 // it will be filled with an empty value. It concernerned to plugin
429 // config items, like visualization color. The main xml do not contains
430 // default values for them. So, it is important to reset the config
431 // properties after reseting the resources preferences.
432 ModuleBase_Preferences::resetResourcePreferences(myPreferences);
433 // reset plugin's resources. It fills the config resources with the default
434 // values, stores result in the resource manager and retrieve the preferences
435 // items with these values.
436 ModuleBase_Preferences::resetConfigPropPreferences(myPreferences);
439 //**********************************************************
440 //**********************************************************
441 //**********************************************************
442 void ModuleBase_PreferencesMgr::changedResources(const ResourceMap& theMap)
445 ResourceMap::ConstIterator it;
447 for (it = theMap.begin(); it != theMap.end(); ++it) {
448 ModuleBase_Pref aPref;
449 it.key()->resource(aPref.first, aPref.second);
450 myModified.append(aPref);