Salome HOME
Copyright update 2022
[modules/gui.git] / src / LightApp / LightApp_Preferences.cxx
1 // Copyright (C) 2007-2022  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 // File:      LightApp_Preferences.cxx
24 // Author:    Sergey TELKOV
25
26 #include "LightApp_Preferences.h"
27
28 /*!
29   Constructor.Initialize by resource manager and parent QWidget.
30 */
31 LightApp_Preferences::LightApp_Preferences( QtxResourceMgr* resMgr, QWidget* parent )
32 : SUIT_PreferenceMgr( resMgr, parent )
33 {
34 }
35
36 /*!
37   Destructor.
38 */
39 LightApp_Preferences::~LightApp_Preferences()
40 {
41 }
42
43 /*!
44   Adds preference.
45 */
46 int LightApp_Preferences::addPreference( const QString& label, const int pId, const int type,
47                                          const QString& section, const QString& param )
48 {
49   return addItem( label, pId, (SUIT_PreferenceMgr::PrefItemType)type, section, param );
50 }
51
52 /*!
53   Adds preference.
54 */
55 int LightApp_Preferences::addPreference( const QString& mod, const QString& label, const int pId,
56                                          const int type, const QString& section, const QString& param )
57 {
58   int id = addItem( label, pId, (SUIT_PreferenceMgr::PrefItemType)type, section, param );
59   if ( id != -1 && !mod.isEmpty() )
60     myPrefMod.insert( id, mod );
61   return id;
62 }
63
64 /*!
65   Checks: is preferences has module with name \a mod.
66 */
67 bool LightApp_Preferences::hasModule( const QString& mod ) const
68 {
69   bool res = false;
70   for ( PrefModuleMap::ConstIterator it = myPrefMod.begin(); it != myPrefMod.end() && !res; ++it )
71     res = it.value() == mod;
72   return res;
73 }
74
75 void LightApp_Preferences::activateItem( const QString& path )
76 {
77   activateItem( QStringList() << path );
78 }
79
80 void LightApp_Preferences::activateItem( const QStringList& path )
81 {
82   QtxPreferenceItem* item = root();
83   foreach( QString label, path )
84   {
85     if ( !item )
86       break;
87     item = item->findItem( label, false );
88   }
89   if ( item )
90   {
91     item->ensureVisible();
92     item->activate();
93   }
94 }
95
96 /*!Do nothing.*/
97 void LightApp_Preferences::onHelp()
98 {
99 }
100
101 /*!Store preferences on apply.*/
102 void LightApp_Preferences::onApply()
103 {
104   store();
105 }
106
107 /*!Emit preference changed.*/
108 void LightApp_Preferences::changedResources( const ResourceMap& map )
109 {
110   bool toRestart = false;
111   for ( ResourceMap::ConstIterator it = map.begin(); 
112         it != map.end(); ++it )
113   {
114     QString sec, param;
115     it.key()->resource( sec, param );
116     QString mod = module( it.key()->id() );
117     emit preferenceChanged( mod, sec, param );
118     toRestart = toRestart || it.key()->isRestartRequired();
119   }
120   if ( toRestart ) {
121     emit restartRequired();
122   }
123 }
124
125 /*!Gets module name by \a id, if exist.*/
126 QString LightApp_Preferences::module( const int id ) const
127 {
128   QString mod;
129   if ( myPrefMod.contains( id ) )
130     mod = myPrefMod[id];
131   return mod;
132 }