Salome HOME
Revert "Synchronize adm files"
[modules/gui.git] / src / LightApp / LightApp_Preferences.cxx
1 // Copyright (C) 2007-2014  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& mod ) const
76 {
77   QtxPreferenceItem* item = findItem( mod, true );
78
79   if ( !item )
80     return;
81
82   item->ensureVisible();
83   item->activate();
84 }
85
86 /*!Do nothing.*/
87 void LightApp_Preferences::onHelp()
88 {
89 }
90
91 /*!Store preferences on apply.*/
92 void LightApp_Preferences::onApply()
93 {
94   store();
95 }
96
97 /*!Emit preference changed.*/
98 void LightApp_Preferences::changedResources( const ResourceMap& map )
99 {
100   for ( ResourceMap::ConstIterator it = map.begin(); 
101         it != map.end(); ++it )
102   {
103     QString sec, param;
104     it.key()->resource( sec, param );
105     QString mod = module( it.key()->id() );
106     emit preferenceChanged( mod, sec, param );
107   }
108 }
109
110 /*!Gets module name by \a id, if exist.*/
111 QString LightApp_Preferences::module( const int id ) const
112 {
113   QString mod;
114   if ( myPrefMod.contains( id ) )
115     mod = myPrefMod[id];
116   return mod;
117 }