Salome HOME
Issue #2403: Avoid activation of Apply button on Name widget edit
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetNameEdit.cpp
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
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.
7 //
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.
12 //
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
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include "ModuleBase_WidgetNameEdit.h"
22
23 #include <ModelAPI_Result.h>
24
25 #include <QLineEdit>
26
27 ModuleBase_WidgetNameEdit::ModuleBase_WidgetNameEdit(QWidget* theParent,
28                                                      const Config_WidgetAPI* theData,
29                                                      const std::string& thePlaceHolder )
30  : ModuleBase_WidgetLineEdit(theParent, theData, thePlaceHolder)
31 {
32   // Disconnect the signal in order to avoid Apply button activation automatically
33   // it will activate apply because of value isApplyEnabledByActiveWidget in
34   // XGUI_ErrorMgr::updateActions
35   disconnect(myLineEdit, SIGNAL(textChanged(const QString&)), this, SIGNAL(valuesModified()));
36 }
37
38
39 bool ModuleBase_WidgetNameEdit::storeValueCustom()
40 {
41   if(!myFeature)
42     return false;
43
44   QString aValue = myLineEdit->text();
45   std::string aName = aValue.toStdString();
46   myFeature->data()->setName(aName);
47   ResultPtr aRes = myFeature->firstResult();
48   if (aRes.get())
49     aRes->data()->setName(aName);
50   updateObject(myFeature);
51   return true;
52 }
53
54 bool ModuleBase_WidgetNameEdit::restoreValueCustom()
55 {
56   if(!myFeature)
57     return false;
58
59   bool isBlocked = myLineEdit->blockSignals(true);
60   myLineEdit->setText(QString::fromStdString(myFeature->data()->name()));
61   myLineEdit->blockSignals(isBlocked);
62
63   return true;
64 }