]> SALOME platform Git repositories - modules/gui.git/blob - src/LightApp/LightApp_PreferencesDlg.cxx
Salome HOME
Emit signal when user resets appication settings to defaults by pressing "Defaults...
[modules/gui.git] / src / LightApp / LightApp_PreferencesDlg.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_PreferencesDlg.cxx
24 // Author:    Sergey TELKOV
25 //
26 #include "LightApp_PreferencesDlg.h"
27 #include "LightApp_Preferences.h"
28
29 #include "QtxResourceMgr.h"
30
31 #include <SUIT_Session.h>
32 #include <SUIT_Application.h>
33 #include <SUIT_MessageBox.h>
34 #include <SUIT_FileDlg.h>
35
36 #include <QAbstractButton>
37 #include <QVBoxLayout>
38 #include <QFileDialog>
39
40 /*!
41   Constructor.
42 */
43 LightApp_PreferencesDlg::LightApp_PreferencesDlg( LightApp_Preferences* prefs, QWidget* parent )
44 : QtxDialog( parent, true, true, OK | Close | Apply | Help ),
45 myPrefs( prefs ), mySaved ( false )
46 {
47   setWindowTitle( tr( "CAPTION" ) );
48
49   QVBoxLayout* main = new QVBoxLayout( mainFrame() );
50   main->setMargin( 0 );
51   main->setSpacing( 5 );
52   main->addWidget( myPrefs );
53
54   setFocusProxy( myPrefs );
55   myPrefs->setFrameStyle( QFrame::Box | QFrame::Sunken );
56   myPrefs->show();
57
58   setButtonPosition( Right, Close );
59
60   setDialogFlags( AlignOnce );
61
62   connect( this, SIGNAL( dlgHelp() ),  this, SLOT( onHelp() ) );
63   connect( this, SIGNAL( dlgApply() ), this, SLOT( onApply() ) );
64
65   QAbstractButton* defBtn = userButton( insertButton( tr( "DEFAULT_BTN_TEXT" ) ) );
66   if ( defBtn )
67     connect( defBtn, SIGNAL( clicked() ), this, SLOT( onDefault() ) );
68   QAbstractButton* impBtn = userButton( insertButton( tr( "IMPORT_BTN_TEXT" ) ) );
69   if( impBtn )
70     connect( impBtn, SIGNAL( clicked() ), this, SLOT( onImportPref() ) );
71   connect( this, SIGNAL( defaultPressed() ), prefs, SIGNAL( resetToDefaults() ) );
72
73   setMinimumSize( 800, 600 );
74 }
75
76 /*!
77   Destructor.
78 */
79 LightApp_PreferencesDlg::~LightApp_PreferencesDlg()
80 {
81   if ( !myPrefs )
82     return;
83
84   mainFrame()->layout()->removeWidget( myPrefs );
85   myPrefs->setParent( 0 );
86   myPrefs->hide();
87   myPrefs = 0;
88 }
89
90 /*!Show/hide dialog.*/
91 void LightApp_PreferencesDlg::setVisible(bool visible)
92 {
93   if ( visible ) {
94     myPrefs->retrieve();
95     myPrefs->toBackup();
96   }
97
98   QtxDialog::setVisible(visible);
99 }
100
101 /*!Store preferences on accept.*/
102 void LightApp_PreferencesDlg::accept()
103 {
104   QtxDialog::accept();
105
106   myPrefs->store();
107   mySaved = true;
108 }
109
110 /*!Reject. Restore preferences from backup.*/
111 void LightApp_PreferencesDlg::reject()
112 {
113   QtxDialog::reject();
114
115   myPrefs->fromBackup();
116 }
117
118 /*!Do nothing.*/
119 void LightApp_PreferencesDlg::onHelp()
120 {
121   SUIT_Application* app = SUIT_Session::session()->activeApplication();
122   if ( app )
123     app->onHelpContextModule( "GUI", "setting_preferences_page.html" );
124 }
125
126 /*!Store preferences on apply.*/
127 void LightApp_PreferencesDlg::onApply()
128 {
129   myPrefs->store();
130
131   // Fix for Bug PAL11197: Restoring the corrected values from resource manager.
132   // (Correcting in VisuGUI.cxx and SMESHGUI.cxx in methods
133   // ::preferencesChanged( const QString& sect, const QString& name ))
134   myPrefs->retrieve();
135   //
136
137   myPrefs->toBackup();
138   mySaved = true;
139 }
140
141 /*! Restore default preferences*/
142 void LightApp_PreferencesDlg::onDefault()
143 {
144   if ( SUIT_MessageBox::Ok == SUIT_MessageBox::question( this, tr( "WARNING" ), tr( "DEFAULT_QUESTION" ),
145                                                          SUIT_MessageBox::Ok | SUIT_MessageBox::Cancel,
146                                                          SUIT_MessageBox::Ok ) )
147   {
148     if ( myPrefs && myPrefs->resourceMgr() )
149     {
150       QtxResourceMgr::WorkingMode prev = myPrefs->resourceMgr()->setWorkingMode( QtxResourceMgr::IgnoreUserValues );
151       myPrefs->retrieve();
152       myPrefs->resourceMgr()->setWorkingMode( prev );
153     }
154     emit defaultPressed();
155   }
156 }
157
158 /*! Import preferences from some file */
159 void LightApp_PreferencesDlg::onImportPref()
160 {
161   QtxResourceMgr* mgr = myPrefs->resourceMgr();
162   QStringList filtersList;
163   filtersList.append(tr("XML_FILES_FILTER"));
164   QString anInitialPath = "";
165   if ( SUIT_FileDlg::getLastVisitedPath().isEmpty() )
166     anInitialPath = QDir::currentPath();
167
168   QString aName = SUIT_FileDlg::getFileName( this, anInitialPath, filtersList, tr("IMPORT_PREFERENCES"), true, true );
169
170   if( mgr->import( aName ) )
171   {
172     myPrefs->retrieve();
173     myPrefs->toBackup();
174   }
175 }